From 8dcb876e2af5d82e1f5ffff8f876088b031cef9c Mon Sep 17 00:00:00 2001 From: Tokarzewski Date: Thu, 18 Jun 2026 14:39:46 +0200 Subject: [PATCH] Add Mojo language support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mojo (Modular) is a Python-superset systems language. Vendor the lsh/tree-sitter-mojo grammar (forked from tree-sitter-python, MIT, ABI 15, C scanner) and wire it through the standard language path: enum, grammar wrapper, extraction spec, and the .mojo / .🔥 extensions. The grammar's node types mirror Python's, so the spec reuses the py_* arrays and overrides only the class types — "struct"/"class" both parse as class_definition, while "trait" and "__extension" get their own nodes (trait_definition / extension_definition), mapping traits to Interface. "fn"/"def" both parse as function_definition. Verified end-to-end on real Mojo corpora (NuMojo, EnergyPlusMojo): functions, methods, structs/classes, traits, decorators, calls, and imports all extract, with a resolved call/usage graph. Adds a regression case and label golden; updates the grammar manifest, third-party notices, and language count. Co-Authored-By: Claude Opus 4.8 (1M context) Signed-off-by: Tokarzewski --- README.md | 14 +- THIRD_PARTY.md | 2 +- internal/cbm/cbm.h | 1 + internal/cbm/grammar_mojo.c | 4 + internal/cbm/lang_specs.c | 19 + internal/cbm/vendored/grammars/MANIFEST.md | 1 + internal/cbm/vendored/grammars/mojo/LICENSE | 21 + internal/cbm/vendored/grammars/mojo/parser.c | 768004 +++++++++++++++ internal/cbm/vendored/grammars/mojo/scanner.c | 498 + .../grammars/mojo/tree_sitter/alloc.h | 54 + .../grammars/mojo/tree_sitter/array.h | 291 + .../grammars/mojo/tree_sitter/parser.h | 286 + scripts/new-languages.json | 15 + src/discover/language.c | 5 + tests/test_grammar_labels.c | 1 + tests/test_grammar_regression.c | 8 + 16 files changed, 769216 insertions(+), 8 deletions(-) create mode 100644 internal/cbm/grammar_mojo.c create mode 100644 internal/cbm/vendored/grammars/mojo/LICENSE create mode 100644 internal/cbm/vendored/grammars/mojo/parser.c create mode 100644 internal/cbm/vendored/grammars/mojo/scanner.c create mode 100644 internal/cbm/vendored/grammars/mojo/tree_sitter/alloc.h create mode 100644 internal/cbm/vendored/grammars/mojo/tree_sitter/array.h create mode 100644 internal/cbm/vendored/grammars/mojo/tree_sitter/parser.h diff --git a/README.md b/README.md index b48a297f0..bc91a44ed 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![License](https://img.shields.io/badge/license-MIT-green)](LICENSE) [![CI](https://img.shields.io/github/actions/workflow/status/DeusData/codebase-memory-mcp/dry-run.yml?label=CI)](https://github.com/DeusData/codebase-memory-mcp/actions/workflows/dry-run.yml) [![Tests](https://img.shields.io/badge/tests-5604_passing-brightgreen)](https://github.com/DeusData/codebase-memory-mcp) -[![Languages](https://img.shields.io/badge/languages-158-orange)](https://github.com/DeusData/codebase-memory-mcp) +[![Languages](https://img.shields.io/badge/languages-159-orange)](https://github.com/DeusData/codebase-memory-mcp) [![Hybrid LSP](https://img.shields.io/badge/Hybrid_LSP-9_languages-blue)](#hybrid-lsp) [![Agents](https://img.shields.io/badge/agents-11-purple)](https://github.com/DeusData/codebase-memory-mcp) [![Pure C](https://img.shields.io/badge/pure_C-zero_dependencies-blue)](https://github.com/DeusData/codebase-memory-mcp) @@ -16,7 +16,7 @@ **The fastest and most efficient code intelligence engine for AI coding agents.** Full-indexes an average repository in milliseconds, the Linux kernel (28M LOC, 75K files) in 3 minutes. Answers structural queries in under 1ms. Ships as a single static binary for macOS, Linux, and Windows — download, run `install`, done. -High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across all 158 languages, enhanced with [**Hybrid LSP** semantic type resolution](#hybrid-lsp) for Python, TypeScript / JavaScript / JSX / TSX, PHP, C#, Go, C, C++, Java, Kotlin, and Rust — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 14 MCP tools. Zero dependencies. Plug and play across 11 coding agents. +High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across all 159 languages, enhanced with [**Hybrid LSP** semantic type resolution](#hybrid-lsp) for Python, TypeScript / JavaScript / JSX / TSX, PHP, C#, Go, C, C++, Java, Kotlin, and Rust — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 14 MCP tools. Zero dependencies. Plug and play across 11 coding agents. > **Research** — The design and benchmarks behind this project are described in the preprint [*Codebase-Memory: Tree-Sitter-Based Knowledge Graphs for LLM Code Exploration via MCP*](https://arxiv.org/abs/2603.27277) (arXiv:2603.27277). Evaluated across 31 real-world repositories: 83% answer quality, 10× fewer tokens, 2.1× fewer tool calls vs. file-by-file exploration. @@ -32,7 +32,7 @@ High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-si - **Extreme indexing speed** — Linux kernel (28M LOC, 75K files) in 3 minutes. RAM-first pipeline: LZ4 compression, in-memory SQLite, fused Aho-Corasick pattern matching. Memory released after indexing. - **Plug and play** — single static binary for macOS (arm64/amd64), Linux (arm64/amd64), and Windows (amd64). No Docker, no runtime dependencies, no API keys. Download → `install` → restart agent → done. -- **158 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. +- **159 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. - **120x fewer tokens** — 5 structural queries: ~3,400 tokens vs ~412,000 via file-by-file search. One graph query replaces dozens of grep/read cycles. - **11 agents, one command** — `install` auto-detects Claude Code, Codex CLI, Gemini CLI, Zed, OpenCode, Antigravity, Aider, KiloCode, VS Code, OpenClaw, and Kiro — configures MCP entries, instruction files, and pre-tool hooks for each. - **Built-in graph visualization** — 3D interactive UI at `localhost:9749` (optional UI binary variant). @@ -168,7 +168,7 @@ Removes all agent configs, skills, hooks, and instructions. Does not remove the - `SEMANTICALLY_RELATED` (vocabulary-mismatch, same-language, score ≥ 0.80) ### Indexing pipeline -- **158 vendored tree-sitter grammars** compiled into the binary +- **159 vendored tree-sitter grammars** compiled into the binary - **Generic package / module resolution** — bare specifiers like `@myorg/pkg`, `github.com/foo/bar`, `use my_crate::foo` resolved via manifest scanning (`package.json`, `go.mod`, `Cargo.toml`, `pyproject.toml`, `composer.json`, `pubspec.yaml`, `pom.xml`, `build.gradle`, `mix.exs`, `*.gemspec`) - **Infrastructure-as-code indexing** — Dockerfiles, Kubernetes manifests, Kustomize overlays as graph nodes - **[Hybrid LSP semantic type resolution](#hybrid-lsp)** for Python, TypeScript / JavaScript / JSX / TSX, PHP, C#, Go, C, C++, Java, Kotlin, and Rust — a lightweight C implementation of language type-resolution algorithms, structurally inspired by and compatible with major language servers including tsserver / typescript-go, pyright, gopls, Roslyn, Eclipse JDT, and rust-analyzer (parameter binding, return-type inference, generic substitution, JSX component dispatch, JSDoc inference for plain JS files, namespace + trait + late-static-binding resolution for PHP, file-scoped namespaces + records + LINQ method syntax for C#, class-hierarchy + overload + lambda resolution for Java, extension-function + scope-function resolution for Kotlin, trait-method + UFCS resolution for Rust) @@ -508,14 +508,14 @@ codebase-memory-mcp ships a **lightweight C implementation of language type-reso **Two-layer architecture:** -1. **Tree-sitter pass** — fast, syntactic, runs for every one of the 158 languages. Extracts definitions, calls, imports. +1. **Tree-sitter pass** — fast, syntactic, runs for every one of the 159 languages. Extracts definitions, calls, imports. 2. **Hybrid LSP pass** — type-aware, runs above the tree-sitter pass per-language. Refines call edges using the import graph plus a per-file or pre-built cross-file definition registry. Languages without a Hybrid LSP pass yet fall back to textual resolution, so you always get *some* answer. The result is a knowledge graph accurate enough to drive `trace_path` across packages, inheritance hierarchies, and stdlib calls — without paying for a language server process per project. ## Language Support -158 languages, all parsed via vendored tree-sitter grammars compiled into the binary. Benchmarked against 64 real open-source repositories (78 to 49K nodes): +159 languages, all parsed via vendored tree-sitter grammars compiled into the binary. Benchmarked against 64 real open-source repositories (78 to 49K nodes): | Tier | Score | Languages | |------|-------|-----------| @@ -540,7 +540,7 @@ src/ traces/ Runtime trace ingestion ui/ Embedded HTTP server + 3D graph visualization foundation/ Platform abstractions (threads, filesystem, logging, memory) -internal/cbm/ Vendored tree-sitter grammars (158 languages) + AST extraction engine +internal/cbm/ Vendored tree-sitter grammars (159 languages) + AST extraction engine ``` ## Security diff --git a/THIRD_PARTY.md b/THIRD_PARTY.md index e5f7dc977..40f26f732 100644 --- a/THIRD_PARTY.md +++ b/THIRD_PARTY.md @@ -26,7 +26,7 @@ The core runtime headers in `internal/cbm/vendored/common/tree_sitter/` ## Tree-sitter Grammars -158 pre-generated parsers are vendored in `internal/cbm/vendored/grammars//` +159 pre-generated parsers are vendored in `internal/cbm/vendored/grammars//` (generated `parser.c` plus `scanner.c` where applicable, compiled statically). Each grammar is the work of its upstream authors and each grammar directory contains the upstream `LICENSE` file. diff --git a/internal/cbm/cbm.h b/internal/cbm/cbm.h index cc3607ee3..d6d3db44f 100644 --- a/internal/cbm/cbm.h +++ b/internal/cbm/cbm.h @@ -170,6 +170,7 @@ typedef enum { CBM_LANG_QML, // Qt QML (Qt Modeling Language — declarative UI + embedded JS) CBM_LANG_CFSCRIPT, // CFML script dialect (.cfc components — Lucee/ColdFusion) CBM_LANG_CFML, // CFML tag dialect (.cfm templates — Lucee/ColdFusion) + CBM_LANG_MOJO, // Mojo (Modular — Python-superset systems language; .mojo / .🔥) CBM_LANG_COUNT } CBMLanguage; diff --git a/internal/cbm/grammar_mojo.c b/internal/cbm/grammar_mojo.c new file mode 100644 index 000000000..772bbf720 --- /dev/null +++ b/internal/cbm/grammar_mojo.c @@ -0,0 +1,4 @@ +// Vendored tree-sitter grammar: mojo +// Each grammar compiled as separate unit (conflicting static symbols). +#include "vendored/grammars/mojo/parser.c" +#include "vendored/grammars/mojo/scanner.c" diff --git a/internal/cbm/lang_specs.c b/internal/cbm/lang_specs.c index 68d2afadd..6da5048b6 100644 --- a/internal/cbm/lang_specs.c +++ b/internal/cbm/lang_specs.c @@ -164,6 +164,7 @@ extern const TSLanguage *tree_sitter_apex(void); extern const TSLanguage *tree_sitter_soql(void); extern const TSLanguage *tree_sitter_sosl(void); extern const TSLanguage *tree_sitter_pine(void); +extern const TSLanguage *tree_sitter_mojo(void); // -- Empty sentinel -- static const char *empty_types[] = {NULL}; @@ -205,6 +206,18 @@ static const char *py_var_types[] = {"assignment", "augmented_assignment", NULL} static const char *py_throw_types[] = {"raise_statement", NULL}; static const char *py_decorator_types[] = {"decorator", NULL}; +// ==================== MOJO ==================== +// Mojo (Modular) is a Python superset; the lsh/tree-sitter-mojo grammar is +// forked from tree-sitter-python, so every node type mirrors Python exactly +// EXCEPT the class array — Mojo's "struct"/"class" both parse as +// class_definition, but "trait" and the "__extension" form get their own +// nodes. So the spec reuses the py_* arrays and overrides only the class +// types. ("fn"/"def" both parse as function_definition; compile-time +// "alias NAME = value" has no dedicated node and is recovered as an +// `assignment`, so it falls under py_var_types like ordinary `var` fields.) +static const char *mojo_class_types[] = {"class_definition", "trait_definition", + "extension_definition", NULL}; + // ==================== JAVASCRIPT ==================== static const char *js_func_types[] = {"function_declaration", "generator_function_declaration", "function_expression", "arrow_function", @@ -2005,6 +2018,12 @@ static const CBMLangSpec lang_specs[CBM_LANG_COUNT] = { empty_types, empty_types, NULL, empty_types, NULL, NULL, tree_sitter_cfml, NULL}, + // CBM_LANG_MOJO (Python-derived; reuses py_* arrays, only class types differ) + [CBM_LANG_MOJO] = {CBM_LANG_MOJO, py_func_types, mojo_class_types, empty_types, py_module_types, + py_call_types, py_import_types, py_import_from_types, py_branch_types, + py_var_types, py_var_types, py_throw_types, NULL, py_decorator_types, + py_env_funcs, py_env_members, tree_sitter_mojo, NULL}, + // CBM_LANG_GLEAM [CBM_LANG_GLEAM] = {CBM_LANG_GLEAM, gleam_func_types, gleam_class_types, gleam_field_types, gleam_module_types, gleam_call_types, gleam_import_types, empty_types, diff --git a/internal/cbm/vendored/grammars/MANIFEST.md b/internal/cbm/vendored/grammars/MANIFEST.md index 75c5b4ff8..436db7e2c 100644 --- a/internal/cbm/vendored/grammars/MANIFEST.md +++ b/internal/cbm/vendored/grammars/MANIFEST.md @@ -130,6 +130,7 @@ Guarded by the `contract_all_grammars_in_graph` graph-breadth test in | matlab | 15 | acristoffers/tree-sitter-matlab | `c2390a59016f` | VERIFIED-BOTH | ✅ | | mermaid | 14 | monaqa/tree-sitter-mermaid | `90ae195b3193` | VERIFIED-BOTH | ✅ | | meson | 15 | tree-sitter-grammars/tree-sitter-meson | `c84f3540624b` | VERIFIED-BOTH | ✅ | +| mojo | 15 | lsh/tree-sitter-mojo | `33193a99afe6` | UNVERIFIED (community; not in nvim-treesitter/Helix) | ✅ | | nasm | 14 | naclsn/tree-sitter-nasm | `d1b3638d017f` | VERIFIED-BOTH | ✅ | | nickel | 15 | nickel-lang/tree-sitter-nickel | `b5b6cc3bc7b9` | VERIFIED-BOTH | ✅ | | nix | 13 | nix-community/tree-sitter-nix | `eabf96807ea4` | VERIFIED-BOTH | ✅ | diff --git a/internal/cbm/vendored/grammars/mojo/LICENSE b/internal/cbm/vendored/grammars/mojo/LICENSE new file mode 100644 index 000000000..ff8ed93cb --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Max Brunsfeld + +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/internal/cbm/vendored/grammars/mojo/parser.c b/internal/cbm/vendored/grammars/mojo/parser.c new file mode 100644 index 000000000..1897ff9cb --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/parser.c @@ -0,0 +1,768004 @@ +/* Automatically @generated by tree-sitter v0.25.10 */ + +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 12758 +#define LARGE_STATE_COUNT 3884 +#define SYMBOL_COUNT 348 +#define ALIAS_COUNT 2 +#define TOKEN_COUNT 138 +#define EXTERNAL_TOKEN_COUNT 16 +#define FIELD_COUNT 36 +#define MAX_ALIAS_SEQUENCE_LENGTH 20 +#define MAX_RESERVED_WORD_SET_SIZE 46 +#define PRODUCTION_ID_COUNT 999 +#define SUPERTYPE_COUNT 5 + +enum ts_symbol_identifiers { + sym_identifier = 1, + anon_sym_SEMI = 2, + anon_sym_import = 3, + anon_sym_DOT = 4, + anon_sym_from = 5, + anon_sym___future__ = 6, + anon_sym_LPAREN = 7, + anon_sym_RPAREN = 8, + anon_sym_COMMA = 9, + anon_sym_as = 10, + anon_sym_STAR = 11, + anon_sym_print = 12, + anon_sym_GT_GT = 13, + anon_sym_comptime = 14, + anon_sym_assert = 15, + anon_sym___comptime_assert = 16, + anon_sym_COLON_EQ = 17, + anon_sym_return = 18, + anon_sym_del = 19, + anon_sym_raise = 20, + anon_sym_pass = 21, + anon_sym_break = 22, + anon_sym_continue = 23, + anon_sym___extension = 24, + anon_sym_COLON = 25, + anon_sym___mlir_region = 26, + anon_sym_if = 27, + anon_sym_elif = 28, + anon_sym_else = 29, + anon_sym_match = 30, + anon_sym_case = 31, + anon_sym_async = 32, + anon_sym_for = 33, + anon_sym_in = 34, + anon_sym_while = 35, + anon_sym_try = 36, + anon_sym_except = 37, + anon_sym_finally = 38, + anon_sym_with = 39, + anon_sym_def = 40, + anon_sym_fn = 41, + anon_sym_LBRACK = 42, + anon_sym_RBRACK = 43, + anon_sym_DASH_GT = 44, + anon_sym_LBRACE = 45, + anon_sym_RBRACE = 46, + anon_sym_raises = 47, + anon_sym_capturing = 48, + anon_sym_escaping = 49, + anon_sym_thin = 50, + anon_sym_abi = 51, + anon_sym__ = 52, + anon_sym_STAR_STAR = 53, + anon_sym_global = 54, + anon_sym_nonlocal = 55, + anon_sym_exec = 56, + anon_sym_type = 57, + anon_sym_EQ = 58, + anon_sym_class = 59, + anon_sym_struct = 60, + anon_sym_mut = 61, + anon_sym_out = 62, + anon_sym_SLASH_SLASH = 63, + anon_sym_trait = 64, + anon_sym_inferred = 65, + anon_sym_except_STAR = 66, + anon_sym_AT = 67, + anon_sym_DASH = 68, + anon_sym_PIPE = 69, + anon_sym_PLUS = 70, + anon_sym_ref = 71, + anon_sym_borrowed = 72, + anon_sym_inout = 73, + anon_sym_owned = 74, + anon_sym_read = 75, + anon_sym_var = 76, + anon_sym_deinit = 77, + anon_sym_unified = 78, + anon_sym_where = 79, + anon_sym_self = 80, + anon_sym_CARET = 81, + anon_sym_not = 82, + anon_sym_and = 83, + anon_sym_or = 84, + anon_sym_SLASH = 85, + anon_sym_PERCENT = 86, + anon_sym_AMP = 87, + anon_sym_LT_LT = 88, + anon_sym_TILDE = 89, + anon_sym_is = 90, + anon_sym_LT = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_BANG_EQ = 94, + anon_sym_GT_EQ = 95, + anon_sym_GT = 96, + anon_sym_LT_GT = 97, + anon_sym_lambda = 98, + anon_sym_PLUS_EQ = 99, + anon_sym_DASH_EQ = 100, + anon_sym_STAR_EQ = 101, + anon_sym_SLASH_EQ = 102, + anon_sym_AT_EQ = 103, + anon_sym_SLASH_SLASH_EQ = 104, + anon_sym_PERCENT_EQ = 105, + anon_sym_STAR_STAR_EQ = 106, + anon_sym_GT_GT_EQ = 107, + anon_sym_LT_LT_EQ = 108, + anon_sym_AMP_EQ = 109, + anon_sym_CARET_EQ = 110, + anon_sym_PIPE_EQ = 111, + anon_sym_yield = 112, + sym_ellipsis = 113, + anon_sym___mlir_type = 114, + sym_escape_sequence = 115, + anon_sym_BSLASH = 116, + aux_sym_format_specifier_token1 = 117, + sym_type_conversion = 118, + sym_integer = 119, + sym_float = 120, + anon_sym_await = 121, + sym_true = 122, + sym_false = 123, + sym_none = 124, + sym_comment = 125, + sym_line_continuation = 126, + sym__newline = 127, + sym__indent = 128, + sym__dedent = 129, + sym_string_start = 130, + sym__string_content = 131, + sym_escape_interpolation = 132, + sym_string_end = 133, + sym__mlir_backtick = 134, + sym__mlir_ident = 135, + sym__mlir_number = 136, + sym_mlir_punctuation = 137, + sym_module = 138, + sym__statement = 139, + sym__simple_statements = 140, + sym_import_statement = 141, + sym_import_prefix = 142, + sym_relative_import = 143, + sym_future_import_statement = 144, + sym_import_from_statement = 145, + sym__import_list = 146, + sym_aliased_import = 147, + sym_wildcard_import = 148, + sym_print_statement = 149, + sym_chevron = 150, + sym_assert_statement = 151, + sym_comptime_assert_statement = 152, + sym_expression_statement = 153, + sym_tuple_expression = 154, + sym_named_expression = 155, + sym__named_expression_lhs = 156, + sym_return_statement = 157, + sym_delete_statement = 158, + sym_raise_statement = 159, + sym_pass_statement = 160, + sym_break_statement = 161, + sym_continue_statement = 162, + sym_extension_definition = 163, + sym_mlir_region = 164, + sym_comptime_statement = 165, + sym_if_statement = 166, + sym_elif_clause = 167, + sym_else_clause = 168, + sym_match_statement = 169, + sym__match_block = 170, + sym_case_clause = 171, + sym_for_statement = 172, + sym_while_statement = 173, + sym_try_statement = 174, + sym_except_clause = 175, + sym_finally_clause = 176, + sym_with_statement = 177, + sym_with_clause = 178, + sym_with_item = 179, + sym_function_definition = 180, + sym_result_convention = 181, + aux_sym__function_effects = 182, + sym_abi_specifier = 183, + sym__raises_type = 184, + sym_capture_list = 185, + sym_wildcard_origin = 186, + sym_parameters = 187, + sym_lambda_parameters = 188, + sym_list_splat = 189, + sym_dictionary_splat = 190, + sym_global_statement = 191, + sym_nonlocal_statement = 192, + sym_exec_statement = 193, + sym_type_alias_statement = 194, + sym_parameterized_alias_statement = 195, + sym_class_definition = 196, + sym_superclass_list = 197, + sym_type_parameter = 198, + sym__type_parameter_default = 199, + sym_infer_separator = 200, + sym_trait_definition = 201, + sym_trait_list = 202, + sym_parenthesized_list_splat = 203, + sym_argument_list = 204, + sym_parameter_list = 205, + sym_decorated_definition = 206, + sym_except_group_clause = 207, + sym_decorator = 208, + sym_block = 209, + sym_expression_list = 210, + sym_dotted_name = 211, + sym_case_pattern = 212, + sym__simple_pattern = 213, + sym__as_pattern = 214, + sym_union_pattern = 215, + sym__list_pattern = 216, + sym__tuple_pattern = 217, + sym_dict_pattern = 218, + sym__key_value_pattern = 219, + sym_keyword_pattern = 220, + sym_splat_pattern = 221, + sym_class_pattern = 222, + sym_complex_pattern = 223, + sym__parameters = 224, + sym__patterns = 225, + sym_parameter = 226, + sym_pattern = 227, + sym_tuple_pattern = 228, + sym_list_pattern = 229, + sym__ref_convention = 230, + sym_argument_convention = 231, + sym_unified_clause = 232, + sym_where_clause = 233, + sym_self_parameter = 234, + sym_typed_parameter = 235, + sym_default_parameter = 236, + sym_typed_default_parameter = 237, + sym_list_splat_pattern = 238, + sym_dictionary_splat_pattern = 239, + sym_as_pattern = 240, + sym__expression_within_for_in_clause = 241, + sym_expression = 242, + sym_primary_expression = 243, + sym_comptime_expression = 244, + sym_transfer_expression = 245, + sym_not_operator = 246, + sym_boolean_operator = 247, + sym_binary_operator = 248, + sym_unary_operator = 249, + sym__not_in = 250, + sym__is_not = 251, + sym_comparison_operator = 252, + sym_lambda = 253, + sym_lambda_within_for_in_clause = 254, + sym_assignment = 255, + sym_augmented_assignment = 256, + sym_pattern_list = 257, + sym__right_hand_side = 258, + sym_yield = 259, + sym_attribute = 260, + sym_subscript = 261, + sym_slice = 262, + sym_call = 263, + sym_type = 264, + sym_called_type = 265, + sym_function_type = 266, + sym_splat_type = 267, + sym_generic_type = 268, + sym_union_type = 269, + sym_intersection_type = 270, + sym__intersection_operand = 271, + sym_constrained_type = 272, + sym_member_type = 273, + sym_slice_keyword_argument = 274, + sym_keyword_argument = 275, + sym_mlir_fragment = 276, + sym_mlir_type = 277, + sym_list = 278, + sym_set = 279, + sym_tuple = 280, + sym_dictionary = 281, + sym_pair = 282, + sym_struct_literal = 283, + sym_struct_literal_field = 284, + sym_list_comprehension = 285, + sym_dictionary_comprehension = 286, + sym_set_comprehension = 287, + sym_generator_expression = 288, + sym__comprehension_clauses = 289, + sym_parenthesized_expression = 290, + sym__collection_elements = 291, + sym_for_in_clause = 292, + sym_if_clause = 293, + sym_conditional_expression = 294, + sym_concatenated_string = 295, + sym_string = 296, + sym_string_content = 297, + sym_interpolation = 298, + sym__f_expression = 299, + sym__not_escape_sequence = 300, + sym_format_specifier = 301, + sym_await = 302, + sym_positional_separator = 303, + sym_keyword_separator = 304, + aux_sym_module_repeat1 = 305, + aux_sym__simple_statements_repeat1 = 306, + aux_sym_import_prefix_repeat1 = 307, + aux_sym__import_list_repeat1 = 308, + aux_sym_print_statement_repeat1 = 309, + aux_sym_assert_statement_repeat1 = 310, + aux_sym_if_statement_repeat1 = 311, + aux_sym_match_statement_repeat1 = 312, + aux_sym__match_block_repeat1 = 313, + aux_sym_case_clause_repeat1 = 314, + aux_sym_try_statement_repeat1 = 315, + aux_sym_try_statement_repeat2 = 316, + aux_sym_with_clause_repeat1 = 317, + aux_sym_function_definition_repeat1 = 318, + aux_sym_result_convention_repeat1 = 319, + aux_sym_capture_list_repeat1 = 320, + aux_sym_global_statement_repeat1 = 321, + aux_sym_superclass_list_repeat1 = 322, + aux_sym_type_parameter_repeat1 = 323, + aux_sym_argument_list_repeat1 = 324, + aux_sym_parameter_list_repeat1 = 325, + aux_sym_decorated_definition_repeat1 = 326, + aux_sym_dotted_name_repeat1 = 327, + aux_sym_union_pattern_repeat1 = 328, + aux_sym_dict_pattern_repeat1 = 329, + aux_sym__parameters_repeat1 = 330, + aux_sym__patterns_repeat1 = 331, + aux_sym_unified_clause_repeat1 = 332, + aux_sym_comparison_operator_repeat1 = 333, + aux_sym_subscript_repeat1 = 334, + aux_sym_called_type_repeat1 = 335, + aux_sym_function_type_repeat1 = 336, + aux_sym_intersection_type_repeat1 = 337, + aux_sym_mlir_fragment_repeat1 = 338, + aux_sym_dictionary_repeat1 = 339, + aux_sym_struct_literal_repeat1 = 340, + aux_sym__comprehension_clauses_repeat1 = 341, + aux_sym__collection_elements_repeat1 = 342, + aux_sym_for_in_clause_repeat1 = 343, + aux_sym_concatenated_string_repeat1 = 344, + aux_sym_string_repeat1 = 345, + aux_sym_string_content_repeat1 = 346, + aux_sym_format_specifier_repeat1 = 347, + alias_sym_as_pattern_target = 348, + alias_sym_format_expression = 349, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [anon_sym_SEMI] = ";", + [anon_sym_import] = "import", + [anon_sym_DOT] = ".", + [anon_sym_from] = "from", + [anon_sym___future__] = "__future__", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_COMMA] = ",", + [anon_sym_as] = "as", + [anon_sym_STAR] = "*", + [anon_sym_print] = "print", + [anon_sym_GT_GT] = ">>", + [anon_sym_comptime] = "comptime", + [anon_sym_assert] = "assert", + [anon_sym___comptime_assert] = "__comptime_assert", + [anon_sym_COLON_EQ] = ":=", + [anon_sym_return] = "return", + [anon_sym_del] = "del", + [anon_sym_raise] = "raise", + [anon_sym_pass] = "pass", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym___extension] = "__extension", + [anon_sym_COLON] = ":", + [anon_sym___mlir_region] = "__mlir_region", + [anon_sym_if] = "if", + [anon_sym_elif] = "elif", + [anon_sym_else] = "else", + [anon_sym_match] = "match", + [anon_sym_case] = "case", + [anon_sym_async] = "async", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [anon_sym_try] = "try", + [anon_sym_except] = "except", + [anon_sym_finally] = "finally", + [anon_sym_with] = "with", + [anon_sym_def] = "def", + [anon_sym_fn] = "fn", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_DASH_GT] = "->", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_raises] = "raises", + [anon_sym_capturing] = "capturing", + [anon_sym_escaping] = "escaping", + [anon_sym_thin] = "thin", + [anon_sym_abi] = "abi", + [anon_sym__] = "_", + [anon_sym_STAR_STAR] = "**", + [anon_sym_global] = "global", + [anon_sym_nonlocal] = "nonlocal", + [anon_sym_exec] = "exec", + [anon_sym_type] = "type", + [anon_sym_EQ] = "=", + [anon_sym_class] = "class", + [anon_sym_struct] = "struct", + [anon_sym_mut] = "mut", + [anon_sym_out] = "out", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_trait] = "trait", + [anon_sym_inferred] = "inferred", + [anon_sym_except_STAR] = "except*", + [anon_sym_AT] = "@", + [anon_sym_DASH] = "-", + [anon_sym_PIPE] = "|", + [anon_sym_PLUS] = "+", + [anon_sym_ref] = "ref", + [anon_sym_borrowed] = "borrowed", + [anon_sym_inout] = "inout", + [anon_sym_owned] = "owned", + [anon_sym_read] = "read", + [anon_sym_var] = "var", + [anon_sym_deinit] = "deinit", + [anon_sym_unified] = "unified", + [anon_sym_where] = "where", + [anon_sym_self] = "self", + [anon_sym_CARET] = "^", + [anon_sym_not] = "not", + [anon_sym_and] = "and", + [anon_sym_or] = "or", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_AMP] = "&", + [anon_sym_LT_LT] = "<<", + [anon_sym_TILDE] = "~", + [anon_sym_is] = "is", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_GT] = ">", + [anon_sym_LT_GT] = "<>", + [anon_sym_lambda] = "lambda", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_AT_EQ] = "@=", + [anon_sym_SLASH_SLASH_EQ] = "//=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_yield] = "yield", + [sym_ellipsis] = "ellipsis", + [anon_sym___mlir_type] = "__mlir_type", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_BSLASH] = "\\", + [aux_sym_format_specifier_token1] = "format_specifier_token1", + [sym_type_conversion] = "type_conversion", + [sym_integer] = "integer", + [sym_float] = "float", + [anon_sym_await] = "await", + [sym_true] = "true", + [sym_false] = "false", + [sym_none] = "none", + [sym_comment] = "comment", + [sym_line_continuation] = "line_continuation", + [sym__newline] = "_newline", + [sym__indent] = "_indent", + [sym__dedent] = "_dedent", + [sym_string_start] = "string_start", + [sym__string_content] = "_string_content", + [sym_escape_interpolation] = "escape_interpolation", + [sym_string_end] = "string_end", + [sym__mlir_backtick] = "_mlir_backtick", + [sym__mlir_ident] = "type", + [sym__mlir_number] = "integer", + [sym_mlir_punctuation] = "mlir_punctuation", + [sym_module] = "module", + [sym__statement] = "_statement", + [sym__simple_statements] = "_simple_statements", + [sym_import_statement] = "import_statement", + [sym_import_prefix] = "import_prefix", + [sym_relative_import] = "relative_import", + [sym_future_import_statement] = "future_import_statement", + [sym_import_from_statement] = "import_from_statement", + [sym__import_list] = "_import_list", + [sym_aliased_import] = "aliased_import", + [sym_wildcard_import] = "wildcard_import", + [sym_print_statement] = "print_statement", + [sym_chevron] = "chevron", + [sym_assert_statement] = "assert_statement", + [sym_comptime_assert_statement] = "comptime_assert_statement", + [sym_expression_statement] = "expression_statement", + [sym_tuple_expression] = "tuple_expression", + [sym_named_expression] = "named_expression", + [sym__named_expression_lhs] = "_named_expression_lhs", + [sym_return_statement] = "return_statement", + [sym_delete_statement] = "delete_statement", + [sym_raise_statement] = "raise_statement", + [sym_pass_statement] = "pass_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_extension_definition] = "extension_definition", + [sym_mlir_region] = "mlir_region", + [sym_comptime_statement] = "comptime_statement", + [sym_if_statement] = "if_statement", + [sym_elif_clause] = "elif_clause", + [sym_else_clause] = "else_clause", + [sym_match_statement] = "match_statement", + [sym__match_block] = "block", + [sym_case_clause] = "case_clause", + [sym_for_statement] = "for_statement", + [sym_while_statement] = "while_statement", + [sym_try_statement] = "try_statement", + [sym_except_clause] = "except_clause", + [sym_finally_clause] = "finally_clause", + [sym_with_statement] = "with_statement", + [sym_with_clause] = "with_clause", + [sym_with_item] = "with_item", + [sym_function_definition] = "function_definition", + [sym_result_convention] = "result_convention", + [aux_sym__function_effects] = "_function_effects", + [sym_abi_specifier] = "abi_specifier", + [sym__raises_type] = "type", + [sym_capture_list] = "capture_list", + [sym_wildcard_origin] = "wildcard_origin", + [sym_parameters] = "parameters", + [sym_lambda_parameters] = "lambda_parameters", + [sym_list_splat] = "list_splat", + [sym_dictionary_splat] = "dictionary_splat", + [sym_global_statement] = "global_statement", + [sym_nonlocal_statement] = "nonlocal_statement", + [sym_exec_statement] = "exec_statement", + [sym_type_alias_statement] = "type_alias_statement", + [sym_parameterized_alias_statement] = "parameterized_alias_statement", + [sym_class_definition] = "class_definition", + [sym_superclass_list] = "argument_list", + [sym_type_parameter] = "type_parameter", + [sym__type_parameter_default] = "_type_parameter_default", + [sym_infer_separator] = "infer_separator", + [sym_trait_definition] = "trait_definition", + [sym_trait_list] = "trait_list", + [sym_parenthesized_list_splat] = "parenthesized_list_splat", + [sym_argument_list] = "argument_list", + [sym_parameter_list] = "parameter_list", + [sym_decorated_definition] = "decorated_definition", + [sym_except_group_clause] = "except_group_clause", + [sym_decorator] = "decorator", + [sym_block] = "block", + [sym_expression_list] = "expression_list", + [sym_dotted_name] = "dotted_name", + [sym_case_pattern] = "case_pattern", + [sym__simple_pattern] = "_simple_pattern", + [sym__as_pattern] = "as_pattern", + [sym_union_pattern] = "union_pattern", + [sym__list_pattern] = "list_pattern", + [sym__tuple_pattern] = "tuple_pattern", + [sym_dict_pattern] = "dict_pattern", + [sym__key_value_pattern] = "_key_value_pattern", + [sym_keyword_pattern] = "keyword_pattern", + [sym_splat_pattern] = "splat_pattern", + [sym_class_pattern] = "class_pattern", + [sym_complex_pattern] = "complex_pattern", + [sym__parameters] = "_parameters", + [sym__patterns] = "_patterns", + [sym_parameter] = "parameter", + [sym_pattern] = "pattern", + [sym_tuple_pattern] = "tuple_pattern", + [sym_list_pattern] = "list_pattern", + [sym__ref_convention] = "_ref_convention", + [sym_argument_convention] = "argument_convention", + [sym_unified_clause] = "unified_clause", + [sym_where_clause] = "where_clause", + [sym_self_parameter] = "self_parameter", + [sym_typed_parameter] = "typed_parameter", + [sym_default_parameter] = "default_parameter", + [sym_typed_default_parameter] = "typed_default_parameter", + [sym_list_splat_pattern] = "list_splat_pattern", + [sym_dictionary_splat_pattern] = "dictionary_splat_pattern", + [sym_as_pattern] = "as_pattern", + [sym__expression_within_for_in_clause] = "_expression_within_for_in_clause", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_comptime_expression] = "comptime_expression", + [sym_transfer_expression] = "transfer_expression", + [sym_not_operator] = "not_operator", + [sym_boolean_operator] = "boolean_operator", + [sym_binary_operator] = "binary_operator", + [sym_unary_operator] = "unary_operator", + [sym__not_in] = "not in", + [sym__is_not] = "is not", + [sym_comparison_operator] = "comparison_operator", + [sym_lambda] = "lambda", + [sym_lambda_within_for_in_clause] = "lambda", + [sym_assignment] = "assignment", + [sym_augmented_assignment] = "augmented_assignment", + [sym_pattern_list] = "pattern_list", + [sym__right_hand_side] = "_right_hand_side", + [sym_yield] = "yield", + [sym_attribute] = "attribute", + [sym_subscript] = "subscript", + [sym_slice] = "slice", + [sym_call] = "call", + [sym_type] = "type", + [sym_called_type] = "called_type", + [sym_function_type] = "function_type", + [sym_splat_type] = "splat_type", + [sym_generic_type] = "generic_type", + [sym_union_type] = "union_type", + [sym_intersection_type] = "intersection_type", + [sym__intersection_operand] = "_intersection_operand", + [sym_constrained_type] = "constrained_type", + [sym_member_type] = "member_type", + [sym_slice_keyword_argument] = "keyword_argument", + [sym_keyword_argument] = "keyword_argument", + [sym_mlir_fragment] = "mlir_fragment", + [sym_mlir_type] = "mlir_type", + [sym_list] = "list", + [sym_set] = "set", + [sym_tuple] = "tuple", + [sym_dictionary] = "dictionary", + [sym_pair] = "pair", + [sym_struct_literal] = "struct_literal", + [sym_struct_literal_field] = "struct_literal_field", + [sym_list_comprehension] = "list_comprehension", + [sym_dictionary_comprehension] = "dictionary_comprehension", + [sym_set_comprehension] = "set_comprehension", + [sym_generator_expression] = "generator_expression", + [sym__comprehension_clauses] = "_comprehension_clauses", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym__collection_elements] = "_collection_elements", + [sym_for_in_clause] = "for_in_clause", + [sym_if_clause] = "if_clause", + [sym_conditional_expression] = "conditional_expression", + [sym_concatenated_string] = "concatenated_string", + [sym_string] = "string", + [sym_string_content] = "string_content", + [sym_interpolation] = "interpolation", + [sym__f_expression] = "_f_expression", + [sym__not_escape_sequence] = "_not_escape_sequence", + [sym_format_specifier] = "format_specifier", + [sym_await] = "await", + [sym_positional_separator] = "positional_separator", + [sym_keyword_separator] = "keyword_separator", + [aux_sym_module_repeat1] = "module_repeat1", + [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", + [aux_sym_import_prefix_repeat1] = "import_prefix_repeat1", + [aux_sym__import_list_repeat1] = "_import_list_repeat1", + [aux_sym_print_statement_repeat1] = "print_statement_repeat1", + [aux_sym_assert_statement_repeat1] = "assert_statement_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_match_statement_repeat1] = "match_statement_repeat1", + [aux_sym__match_block_repeat1] = "_match_block_repeat1", + [aux_sym_case_clause_repeat1] = "case_clause_repeat1", + [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_try_statement_repeat2] = "try_statement_repeat2", + [aux_sym_with_clause_repeat1] = "with_clause_repeat1", + [aux_sym_function_definition_repeat1] = "function_definition_repeat1", + [aux_sym_result_convention_repeat1] = "result_convention_repeat1", + [aux_sym_capture_list_repeat1] = "capture_list_repeat1", + [aux_sym_global_statement_repeat1] = "global_statement_repeat1", + [aux_sym_superclass_list_repeat1] = "superclass_list_repeat1", + [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", + [aux_sym_decorated_definition_repeat1] = "decorated_definition_repeat1", + [aux_sym_dotted_name_repeat1] = "dotted_name_repeat1", + [aux_sym_union_pattern_repeat1] = "union_pattern_repeat1", + [aux_sym_dict_pattern_repeat1] = "dict_pattern_repeat1", + [aux_sym__parameters_repeat1] = "_parameters_repeat1", + [aux_sym__patterns_repeat1] = "_patterns_repeat1", + [aux_sym_unified_clause_repeat1] = "unified_clause_repeat1", + [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", + [aux_sym_subscript_repeat1] = "subscript_repeat1", + [aux_sym_called_type_repeat1] = "called_type_repeat1", + [aux_sym_function_type_repeat1] = "function_type_repeat1", + [aux_sym_intersection_type_repeat1] = "intersection_type_repeat1", + [aux_sym_mlir_fragment_repeat1] = "mlir_fragment_repeat1", + [aux_sym_dictionary_repeat1] = "dictionary_repeat1", + [aux_sym_struct_literal_repeat1] = "struct_literal_repeat1", + [aux_sym__comprehension_clauses_repeat1] = "_comprehension_clauses_repeat1", + [aux_sym__collection_elements_repeat1] = "_collection_elements_repeat1", + [aux_sym_for_in_clause_repeat1] = "for_in_clause_repeat1", + [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_string_content_repeat1] = "string_content_repeat1", + [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", + [alias_sym_as_pattern_target] = "as_pattern_target", + [alias_sym_format_expression] = "format_expression", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_import] = anon_sym_import, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_from] = anon_sym_from, + [anon_sym___future__] = anon_sym___future__, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_as] = anon_sym_as, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_print] = anon_sym_print, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_comptime] = anon_sym_comptime, + [anon_sym_assert] = anon_sym_assert, + [anon_sym___comptime_assert] = anon_sym___comptime_assert, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_return] = anon_sym_return, + [anon_sym_del] = anon_sym_del, + [anon_sym_raise] = anon_sym_raise, + [anon_sym_pass] = anon_sym_pass, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym___extension] = anon_sym___extension, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym___mlir_region] = anon_sym___mlir_region, + [anon_sym_if] = anon_sym_if, + [anon_sym_elif] = anon_sym_elif, + [anon_sym_else] = anon_sym_else, + [anon_sym_match] = anon_sym_match, + [anon_sym_case] = anon_sym_case, + [anon_sym_async] = anon_sym_async, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [anon_sym_try] = anon_sym_try, + [anon_sym_except] = anon_sym_except, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_with] = anon_sym_with, + [anon_sym_def] = anon_sym_def, + [anon_sym_fn] = anon_sym_fn, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_raises] = anon_sym_raises, + [anon_sym_capturing] = anon_sym_capturing, + [anon_sym_escaping] = anon_sym_escaping, + [anon_sym_thin] = anon_sym_thin, + [anon_sym_abi] = anon_sym_abi, + [anon_sym__] = anon_sym__, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_global] = anon_sym_global, + [anon_sym_nonlocal] = anon_sym_nonlocal, + [anon_sym_exec] = anon_sym_exec, + [anon_sym_type] = anon_sym_type, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_class] = anon_sym_class, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_mut] = anon_sym_mut, + [anon_sym_out] = anon_sym_out, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_trait] = anon_sym_trait, + [anon_sym_inferred] = anon_sym_inferred, + [anon_sym_except_STAR] = anon_sym_except_STAR, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_ref] = anon_sym_ref, + [anon_sym_borrowed] = anon_sym_borrowed, + [anon_sym_inout] = anon_sym_inout, + [anon_sym_owned] = anon_sym_owned, + [anon_sym_read] = anon_sym_read, + [anon_sym_var] = anon_sym_var, + [anon_sym_deinit] = anon_sym_deinit, + [anon_sym_unified] = anon_sym_unified, + [anon_sym_where] = anon_sym_where, + [anon_sym_self] = anon_sym_self, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_not] = anon_sym_not, + [anon_sym_and] = anon_sym_and, + [anon_sym_or] = anon_sym_or, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_is] = anon_sym_is, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_lambda] = anon_sym_lambda, + [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_AT_EQ] = anon_sym_AT_EQ, + [anon_sym_SLASH_SLASH_EQ] = anon_sym_SLASH_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_yield] = anon_sym_yield, + [sym_ellipsis] = sym_ellipsis, + [anon_sym___mlir_type] = anon_sym___mlir_type, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, + [sym_type_conversion] = sym_type_conversion, + [sym_integer] = sym_integer, + [sym_float] = sym_float, + [anon_sym_await] = anon_sym_await, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_none] = sym_none, + [sym_comment] = sym_comment, + [sym_line_continuation] = sym_line_continuation, + [sym__newline] = sym__newline, + [sym__indent] = sym__indent, + [sym__dedent] = sym__dedent, + [sym_string_start] = sym_string_start, + [sym__string_content] = sym__string_content, + [sym_escape_interpolation] = sym_escape_interpolation, + [sym_string_end] = sym_string_end, + [sym__mlir_backtick] = sym__mlir_backtick, + [sym__mlir_ident] = sym_type, + [sym__mlir_number] = sym_integer, + [sym_mlir_punctuation] = sym_mlir_punctuation, + [sym_module] = sym_module, + [sym__statement] = sym__statement, + [sym__simple_statements] = sym__simple_statements, + [sym_import_statement] = sym_import_statement, + [sym_import_prefix] = sym_import_prefix, + [sym_relative_import] = sym_relative_import, + [sym_future_import_statement] = sym_future_import_statement, + [sym_import_from_statement] = sym_import_from_statement, + [sym__import_list] = sym__import_list, + [sym_aliased_import] = sym_aliased_import, + [sym_wildcard_import] = sym_wildcard_import, + [sym_print_statement] = sym_print_statement, + [sym_chevron] = sym_chevron, + [sym_assert_statement] = sym_assert_statement, + [sym_comptime_assert_statement] = sym_comptime_assert_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_tuple_expression] = sym_tuple_expression, + [sym_named_expression] = sym_named_expression, + [sym__named_expression_lhs] = sym__named_expression_lhs, + [sym_return_statement] = sym_return_statement, + [sym_delete_statement] = sym_delete_statement, + [sym_raise_statement] = sym_raise_statement, + [sym_pass_statement] = sym_pass_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_extension_definition] = sym_extension_definition, + [sym_mlir_region] = sym_mlir_region, + [sym_comptime_statement] = sym_comptime_statement, + [sym_if_statement] = sym_if_statement, + [sym_elif_clause] = sym_elif_clause, + [sym_else_clause] = sym_else_clause, + [sym_match_statement] = sym_match_statement, + [sym__match_block] = sym_block, + [sym_case_clause] = sym_case_clause, + [sym_for_statement] = sym_for_statement, + [sym_while_statement] = sym_while_statement, + [sym_try_statement] = sym_try_statement, + [sym_except_clause] = sym_except_clause, + [sym_finally_clause] = sym_finally_clause, + [sym_with_statement] = sym_with_statement, + [sym_with_clause] = sym_with_clause, + [sym_with_item] = sym_with_item, + [sym_function_definition] = sym_function_definition, + [sym_result_convention] = sym_result_convention, + [aux_sym__function_effects] = aux_sym__function_effects, + [sym_abi_specifier] = sym_abi_specifier, + [sym__raises_type] = sym_type, + [sym_capture_list] = sym_capture_list, + [sym_wildcard_origin] = sym_wildcard_origin, + [sym_parameters] = sym_parameters, + [sym_lambda_parameters] = sym_lambda_parameters, + [sym_list_splat] = sym_list_splat, + [sym_dictionary_splat] = sym_dictionary_splat, + [sym_global_statement] = sym_global_statement, + [sym_nonlocal_statement] = sym_nonlocal_statement, + [sym_exec_statement] = sym_exec_statement, + [sym_type_alias_statement] = sym_type_alias_statement, + [sym_parameterized_alias_statement] = sym_parameterized_alias_statement, + [sym_class_definition] = sym_class_definition, + [sym_superclass_list] = sym_argument_list, + [sym_type_parameter] = sym_type_parameter, + [sym__type_parameter_default] = sym__type_parameter_default, + [sym_infer_separator] = sym_infer_separator, + [sym_trait_definition] = sym_trait_definition, + [sym_trait_list] = sym_trait_list, + [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, + [sym_argument_list] = sym_argument_list, + [sym_parameter_list] = sym_parameter_list, + [sym_decorated_definition] = sym_decorated_definition, + [sym_except_group_clause] = sym_except_group_clause, + [sym_decorator] = sym_decorator, + [sym_block] = sym_block, + [sym_expression_list] = sym_expression_list, + [sym_dotted_name] = sym_dotted_name, + [sym_case_pattern] = sym_case_pattern, + [sym__simple_pattern] = sym__simple_pattern, + [sym__as_pattern] = sym_as_pattern, + [sym_union_pattern] = sym_union_pattern, + [sym__list_pattern] = sym_list_pattern, + [sym__tuple_pattern] = sym_tuple_pattern, + [sym_dict_pattern] = sym_dict_pattern, + [sym__key_value_pattern] = sym__key_value_pattern, + [sym_keyword_pattern] = sym_keyword_pattern, + [sym_splat_pattern] = sym_splat_pattern, + [sym_class_pattern] = sym_class_pattern, + [sym_complex_pattern] = sym_complex_pattern, + [sym__parameters] = sym__parameters, + [sym__patterns] = sym__patterns, + [sym_parameter] = sym_parameter, + [sym_pattern] = sym_pattern, + [sym_tuple_pattern] = sym_tuple_pattern, + [sym_list_pattern] = sym_list_pattern, + [sym__ref_convention] = sym__ref_convention, + [sym_argument_convention] = sym_argument_convention, + [sym_unified_clause] = sym_unified_clause, + [sym_where_clause] = sym_where_clause, + [sym_self_parameter] = sym_self_parameter, + [sym_typed_parameter] = sym_typed_parameter, + [sym_default_parameter] = sym_default_parameter, + [sym_typed_default_parameter] = sym_typed_default_parameter, + [sym_list_splat_pattern] = sym_list_splat_pattern, + [sym_dictionary_splat_pattern] = sym_dictionary_splat_pattern, + [sym_as_pattern] = sym_as_pattern, + [sym__expression_within_for_in_clause] = sym__expression_within_for_in_clause, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_comptime_expression] = sym_comptime_expression, + [sym_transfer_expression] = sym_transfer_expression, + [sym_not_operator] = sym_not_operator, + [sym_boolean_operator] = sym_boolean_operator, + [sym_binary_operator] = sym_binary_operator, + [sym_unary_operator] = sym_unary_operator, + [sym__not_in] = sym__not_in, + [sym__is_not] = sym__is_not, + [sym_comparison_operator] = sym_comparison_operator, + [sym_lambda] = sym_lambda, + [sym_lambda_within_for_in_clause] = sym_lambda, + [sym_assignment] = sym_assignment, + [sym_augmented_assignment] = sym_augmented_assignment, + [sym_pattern_list] = sym_pattern_list, + [sym__right_hand_side] = sym__right_hand_side, + [sym_yield] = sym_yield, + [sym_attribute] = sym_attribute, + [sym_subscript] = sym_subscript, + [sym_slice] = sym_slice, + [sym_call] = sym_call, + [sym_type] = sym_type, + [sym_called_type] = sym_called_type, + [sym_function_type] = sym_function_type, + [sym_splat_type] = sym_splat_type, + [sym_generic_type] = sym_generic_type, + [sym_union_type] = sym_union_type, + [sym_intersection_type] = sym_intersection_type, + [sym__intersection_operand] = sym__intersection_operand, + [sym_constrained_type] = sym_constrained_type, + [sym_member_type] = sym_member_type, + [sym_slice_keyword_argument] = sym_keyword_argument, + [sym_keyword_argument] = sym_keyword_argument, + [sym_mlir_fragment] = sym_mlir_fragment, + [sym_mlir_type] = sym_mlir_type, + [sym_list] = sym_list, + [sym_set] = sym_set, + [sym_tuple] = sym_tuple, + [sym_dictionary] = sym_dictionary, + [sym_pair] = sym_pair, + [sym_struct_literal] = sym_struct_literal, + [sym_struct_literal_field] = sym_struct_literal_field, + [sym_list_comprehension] = sym_list_comprehension, + [sym_dictionary_comprehension] = sym_dictionary_comprehension, + [sym_set_comprehension] = sym_set_comprehension, + [sym_generator_expression] = sym_generator_expression, + [sym__comprehension_clauses] = sym__comprehension_clauses, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym__collection_elements] = sym__collection_elements, + [sym_for_in_clause] = sym_for_in_clause, + [sym_if_clause] = sym_if_clause, + [sym_conditional_expression] = sym_conditional_expression, + [sym_concatenated_string] = sym_concatenated_string, + [sym_string] = sym_string, + [sym_string_content] = sym_string_content, + [sym_interpolation] = sym_interpolation, + [sym__f_expression] = sym__f_expression, + [sym__not_escape_sequence] = sym__not_escape_sequence, + [sym_format_specifier] = sym_format_specifier, + [sym_await] = sym_await, + [sym_positional_separator] = sym_positional_separator, + [sym_keyword_separator] = sym_keyword_separator, + [aux_sym_module_repeat1] = aux_sym_module_repeat1, + [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, + [aux_sym_import_prefix_repeat1] = aux_sym_import_prefix_repeat1, + [aux_sym__import_list_repeat1] = aux_sym__import_list_repeat1, + [aux_sym_print_statement_repeat1] = aux_sym_print_statement_repeat1, + [aux_sym_assert_statement_repeat1] = aux_sym_assert_statement_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_match_statement_repeat1] = aux_sym_match_statement_repeat1, + [aux_sym__match_block_repeat1] = aux_sym__match_block_repeat1, + [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, + [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_try_statement_repeat2] = aux_sym_try_statement_repeat2, + [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, + [aux_sym_function_definition_repeat1] = aux_sym_function_definition_repeat1, + [aux_sym_result_convention_repeat1] = aux_sym_result_convention_repeat1, + [aux_sym_capture_list_repeat1] = aux_sym_capture_list_repeat1, + [aux_sym_global_statement_repeat1] = aux_sym_global_statement_repeat1, + [aux_sym_superclass_list_repeat1] = aux_sym_superclass_list_repeat1, + [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, + [aux_sym_decorated_definition_repeat1] = aux_sym_decorated_definition_repeat1, + [aux_sym_dotted_name_repeat1] = aux_sym_dotted_name_repeat1, + [aux_sym_union_pattern_repeat1] = aux_sym_union_pattern_repeat1, + [aux_sym_dict_pattern_repeat1] = aux_sym_dict_pattern_repeat1, + [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, + [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, + [aux_sym_unified_clause_repeat1] = aux_sym_unified_clause_repeat1, + [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, + [aux_sym_subscript_repeat1] = aux_sym_subscript_repeat1, + [aux_sym_called_type_repeat1] = aux_sym_called_type_repeat1, + [aux_sym_function_type_repeat1] = aux_sym_function_type_repeat1, + [aux_sym_intersection_type_repeat1] = aux_sym_intersection_type_repeat1, + [aux_sym_mlir_fragment_repeat1] = aux_sym_mlir_fragment_repeat1, + [aux_sym_dictionary_repeat1] = aux_sym_dictionary_repeat1, + [aux_sym_struct_literal_repeat1] = aux_sym_struct_literal_repeat1, + [aux_sym__comprehension_clauses_repeat1] = aux_sym__comprehension_clauses_repeat1, + [aux_sym__collection_elements_repeat1] = aux_sym__collection_elements_repeat1, + [aux_sym_for_in_clause_repeat1] = aux_sym_for_in_clause_repeat1, + [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, + [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, + [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, + [alias_sym_format_expression] = alias_sym_format_expression, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_from] = { + .visible = true, + .named = false, + }, + [anon_sym___future__] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_print] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_comptime] = { + .visible = true, + .named = false, + }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, + [anon_sym___comptime_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_del] = { + .visible = true, + .named = false, + }, + [anon_sym_raise] = { + .visible = true, + .named = false, + }, + [anon_sym_pass] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym___extension] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym___mlir_region] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_elif] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_except] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_def] = { + .visible = true, + .named = false, + }, + [anon_sym_fn] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_raises] = { + .visible = true, + .named = false, + }, + [anon_sym_capturing] = { + .visible = true, + .named = false, + }, + [anon_sym_escaping] = { + .visible = true, + .named = false, + }, + [anon_sym_thin] = { + .visible = true, + .named = false, + }, + [anon_sym_abi] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, + [anon_sym_nonlocal] = { + .visible = true, + .named = false, + }, + [anon_sym_exec] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_mut] = { + .visible = true, + .named = false, + }, + [anon_sym_out] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_trait] = { + .visible = true, + .named = false, + }, + [anon_sym_inferred] = { + .visible = true, + .named = false, + }, + [anon_sym_except_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_ref] = { + .visible = true, + .named = false, + }, + [anon_sym_borrowed] = { + .visible = true, + .named = false, + }, + [anon_sym_inout] = { + .visible = true, + .named = false, + }, + [anon_sym_owned] = { + .visible = true, + .named = false, + }, + [anon_sym_read] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_deinit] = { + .visible = true, + .named = false, + }, + [anon_sym_unified] = { + .visible = true, + .named = false, + }, + [anon_sym_where] = { + .visible = true, + .named = false, + }, + [anon_sym_self] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_is] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_lambda] = { + .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_AT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_yield] = { + .visible = true, + .named = false, + }, + [sym_ellipsis] = { + .visible = true, + .named = true, + }, + [anon_sym___mlir_type] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [aux_sym_format_specifier_token1] = { + .visible = false, + .named = false, + }, + [sym_type_conversion] = { + .visible = true, + .named = true, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [anon_sym_await] = { + .visible = true, + .named = false, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_none] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym_line_continuation] = { + .visible = true, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [sym__indent] = { + .visible = false, + .named = true, + }, + [sym__dedent] = { + .visible = false, + .named = true, + }, + [sym_string_start] = { + .visible = true, + .named = true, + }, + [sym__string_content] = { + .visible = false, + .named = true, + }, + [sym_escape_interpolation] = { + .visible = true, + .named = true, + }, + [sym_string_end] = { + .visible = true, + .named = true, + }, + [sym__mlir_backtick] = { + .visible = false, + .named = true, + }, + [sym__mlir_ident] = { + .visible = true, + .named = true, + }, + [sym__mlir_number] = { + .visible = true, + .named = true, + }, + [sym_mlir_punctuation] = { + .visible = true, + .named = true, + }, + [sym_module] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym__simple_statements] = { + .visible = false, + .named = true, + }, + [sym_import_statement] = { + .visible = true, + .named = true, + }, + [sym_import_prefix] = { + .visible = true, + .named = true, + }, + [sym_relative_import] = { + .visible = true, + .named = true, + }, + [sym_future_import_statement] = { + .visible = true, + .named = true, + }, + [sym_import_from_statement] = { + .visible = true, + .named = true, + }, + [sym__import_list] = { + .visible = false, + .named = true, + }, + [sym_aliased_import] = { + .visible = true, + .named = true, + }, + [sym_wildcard_import] = { + .visible = true, + .named = true, + }, + [sym_print_statement] = { + .visible = true, + .named = true, + }, + [sym_chevron] = { + .visible = true, + .named = true, + }, + [sym_assert_statement] = { + .visible = true, + .named = true, + }, + [sym_comptime_assert_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_expression] = { + .visible = true, + .named = true, + }, + [sym_named_expression] = { + .visible = true, + .named = true, + }, + [sym__named_expression_lhs] = { + .visible = false, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_delete_statement] = { + .visible = true, + .named = true, + }, + [sym_raise_statement] = { + .visible = true, + .named = true, + }, + [sym_pass_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_extension_definition] = { + .visible = true, + .named = true, + }, + [sym_mlir_region] = { + .visible = true, + .named = true, + }, + [sym_comptime_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_elif_clause] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_match_statement] = { + .visible = true, + .named = true, + }, + [sym__match_block] = { + .visible = true, + .named = true, + }, + [sym_case_clause] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_except_clause] = { + .visible = true, + .named = true, + }, + [sym_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym_with_clause] = { + .visible = true, + .named = true, + }, + [sym_with_item] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_result_convention] = { + .visible = true, + .named = true, + }, + [aux_sym__function_effects] = { + .visible = false, + .named = false, + }, + [sym_abi_specifier] = { + .visible = true, + .named = true, + }, + [sym__raises_type] = { + .visible = true, + .named = true, + }, + [sym_capture_list] = { + .visible = true, + .named = true, + }, + [sym_wildcard_origin] = { + .visible = true, + .named = true, + }, + [sym_parameters] = { + .visible = true, + .named = true, + }, + [sym_lambda_parameters] = { + .visible = true, + .named = true, + }, + [sym_list_splat] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat] = { + .visible = true, + .named = true, + }, + [sym_global_statement] = { + .visible = true, + .named = true, + }, + [sym_nonlocal_statement] = { + .visible = true, + .named = true, + }, + [sym_exec_statement] = { + .visible = true, + .named = true, + }, + [sym_type_alias_statement] = { + .visible = true, + .named = true, + }, + [sym_parameterized_alias_statement] = { + .visible = true, + .named = true, + }, + [sym_class_definition] = { + .visible = true, + .named = true, + }, + [sym_superclass_list] = { + .visible = true, + .named = true, + }, + [sym_type_parameter] = { + .visible = true, + .named = true, + }, + [sym__type_parameter_default] = { + .visible = false, + .named = true, + }, + [sym_infer_separator] = { + .visible = true, + .named = true, + }, + [sym_trait_definition] = { + .visible = true, + .named = true, + }, + [sym_trait_list] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_list_splat] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_decorated_definition] = { + .visible = true, + .named = true, + }, + [sym_except_group_clause] = { + .visible = true, + .named = true, + }, + [sym_decorator] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_expression_list] = { + .visible = true, + .named = true, + }, + [sym_dotted_name] = { + .visible = true, + .named = true, + }, + [sym_case_pattern] = { + .visible = true, + .named = true, + }, + [sym__simple_pattern] = { + .visible = false, + .named = true, + }, + [sym__as_pattern] = { + .visible = true, + .named = true, + }, + [sym_union_pattern] = { + .visible = true, + .named = true, + }, + [sym__list_pattern] = { + .visible = true, + .named = true, + }, + [sym__tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_dict_pattern] = { + .visible = true, + .named = true, + }, + [sym__key_value_pattern] = { + .visible = false, + .named = true, + }, + [sym_keyword_pattern] = { + .visible = true, + .named = true, + }, + [sym_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_class_pattern] = { + .visible = true, + .named = true, + }, + [sym_complex_pattern] = { + .visible = true, + .named = true, + }, + [sym__parameters] = { + .visible = false, + .named = true, + }, + [sym__patterns] = { + .visible = false, + .named = true, + }, + [sym_parameter] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_list_pattern] = { + .visible = true, + .named = true, + }, + [sym__ref_convention] = { + .visible = false, + .named = true, + }, + [sym_argument_convention] = { + .visible = true, + .named = true, + }, + [sym_unified_clause] = { + .visible = true, + .named = true, + }, + [sym_where_clause] = { + .visible = true, + .named = true, + }, + [sym_self_parameter] = { + .visible = true, + .named = true, + }, + [sym_typed_parameter] = { + .visible = true, + .named = true, + }, + [sym_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_typed_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_list_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_as_pattern] = { + .visible = true, + .named = true, + }, + [sym__expression_within_for_in_clause] = { + .visible = false, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_comptime_expression] = { + .visible = true, + .named = true, + }, + [sym_transfer_expression] = { + .visible = true, + .named = true, + }, + [sym_not_operator] = { + .visible = true, + .named = true, + }, + [sym_boolean_operator] = { + .visible = true, + .named = true, + }, + [sym_binary_operator] = { + .visible = true, + .named = true, + }, + [sym_unary_operator] = { + .visible = true, + .named = true, + }, + [sym__not_in] = { + .visible = true, + .named = false, + }, + [sym__is_not] = { + .visible = true, + .named = false, + }, + [sym_comparison_operator] = { + .visible = true, + .named = true, + }, + [sym_lambda] = { + .visible = true, + .named = true, + }, + [sym_lambda_within_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym_augmented_assignment] = { + .visible = true, + .named = true, + }, + [sym_pattern_list] = { + .visible = true, + .named = true, + }, + [sym__right_hand_side] = { + .visible = false, + .named = true, + }, + [sym_yield] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_subscript] = { + .visible = true, + .named = true, + }, + [sym_slice] = { + .visible = true, + .named = true, + }, + [sym_call] = { + .visible = true, + .named = true, + }, + [sym_type] = { + .visible = true, + .named = true, + }, + [sym_called_type] = { + .visible = true, + .named = true, + }, + [sym_function_type] = { + .visible = true, + .named = true, + }, + [sym_splat_type] = { + .visible = true, + .named = true, + }, + [sym_generic_type] = { + .visible = true, + .named = true, + }, + [sym_union_type] = { + .visible = true, + .named = true, + }, + [sym_intersection_type] = { + .visible = true, + .named = true, + }, + [sym__intersection_operand] = { + .visible = false, + .named = true, + }, + [sym_constrained_type] = { + .visible = true, + .named = true, + }, + [sym_member_type] = { + .visible = true, + .named = true, + }, + [sym_slice_keyword_argument] = { + .visible = true, + .named = true, + }, + [sym_keyword_argument] = { + .visible = true, + .named = true, + }, + [sym_mlir_fragment] = { + .visible = true, + .named = true, + }, + [sym_mlir_type] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym_set] = { + .visible = true, + .named = true, + }, + [sym_tuple] = { + .visible = true, + .named = true, + }, + [sym_dictionary] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_struct_literal] = { + .visible = true, + .named = true, + }, + [sym_struct_literal_field] = { + .visible = true, + .named = true, + }, + [sym_list_comprehension] = { + .visible = true, + .named = true, + }, + [sym_dictionary_comprehension] = { + .visible = true, + .named = true, + }, + [sym_set_comprehension] = { + .visible = true, + .named = true, + }, + [sym_generator_expression] = { + .visible = true, + .named = true, + }, + [sym__comprehension_clauses] = { + .visible = false, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym__collection_elements] = { + .visible = false, + .named = true, + }, + [sym_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_if_clause] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_concatenated_string] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_string_content] = { + .visible = true, + .named = true, + }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym__f_expression] = { + .visible = false, + .named = true, + }, + [sym__not_escape_sequence] = { + .visible = false, + .named = true, + }, + [sym_format_specifier] = { + .visible = true, + .named = true, + }, + [sym_await] = { + .visible = true, + .named = true, + }, + [sym_positional_separator] = { + .visible = true, + .named = true, + }, + [sym_keyword_separator] = { + .visible = true, + .named = true, + }, + [aux_sym_module_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__simple_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_import_prefix_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__import_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_print_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_assert_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__match_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_try_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_try_statement_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_with_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_result_convention_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_capture_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_global_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_superclass_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_decorated_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dotted_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_union_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dict_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__patterns_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_unified_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_comparison_operator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subscript_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_called_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_intersection_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_mlir_fragment_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dictionary_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_struct_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__comprehension_clauses_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__collection_elements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_in_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_concatenated_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_content_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_format_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_as_pattern_target] = { + .visible = true, + .named = true, + }, + [alias_sym_format_expression] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alternative = 1, + field_argument = 2, + field_arguments = 3, + field_attribute = 4, + field_body = 5, + field_cause = 6, + field_code = 7, + field_comptime = 8, + field_condition = 9, + field_consequence = 10, + field_default = 11, + field_definition = 12, + field_expression = 13, + field_format_specifier = 14, + field_function = 15, + field_guard = 16, + field_key = 17, + field_left = 18, + field_module_name = 19, + field_name = 20, + field_object = 21, + field_operator = 22, + field_operators = 23, + field_parameter = 24, + field_parameters = 25, + field_raises_type = 26, + field_return_type = 27, + field_right = 28, + field_subject = 29, + field_subscript = 30, + field_superclasses = 31, + field_supertraits = 32, + field_type = 33, + field_type_conversion = 34, + field_type_parameters = 35, + field_value = 36, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_attribute] = "attribute", + [field_body] = "body", + [field_cause] = "cause", + [field_code] = "code", + [field_comptime] = "comptime", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_default] = "default", + [field_definition] = "definition", + [field_expression] = "expression", + [field_format_specifier] = "format_specifier", + [field_function] = "function", + [field_guard] = "guard", + [field_key] = "key", + [field_left] = "left", + [field_module_name] = "module_name", + [field_name] = "name", + [field_object] = "object", + [field_operator] = "operator", + [field_operators] = "operators", + [field_parameter] = "parameter", + [field_parameters] = "parameters", + [field_raises_type] = "raises_type", + [field_return_type] = "return_type", + [field_right] = "right", + [field_subject] = "subject", + [field_subscript] = "subscript", + [field_superclasses] = "superclasses", + [field_supertraits] = "supertraits", + [field_type] = "type", + [field_type_conversion] = "type_conversion", + [field_type_parameters] = "type_parameters", + [field_value] = "value", +}; + +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [3] = {.index = 0, .length = 1}, + [4] = {.index = 1, .length = 1}, + [6] = {.index = 2, .length = 1}, + [7] = {.index = 3, .length = 1}, + [8] = {.index = 4, .length = 1}, + [9] = {.index = 5, .length = 2}, + [10] = {.index = 7, .length = 2}, + [11] = {.index = 9, .length = 1}, + [12] = {.index = 10, .length = 1}, + [13] = {.index = 11, .length = 2}, + [14] = {.index = 13, .length = 1}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 16, .length = 1}, + [17] = {.index = 17, .length = 1}, + [19] = {.index = 18, .length = 2}, + [20] = {.index = 20, .length = 2}, + [21] = {.index = 22, .length = 2}, + [22] = {.index = 24, .length = 3}, + [23] = {.index = 27, .length = 1}, + [24] = {.index = 28, .length = 2}, + [25] = {.index = 30, .length = 1}, + [26] = {.index = 31, .length = 2}, + [27] = {.index = 33, .length = 2}, + [28] = {.index = 35, .length = 2}, + [29] = {.index = 37, .length = 1}, + [30] = {.index = 38, .length = 1}, + [31] = {.index = 39, .length = 2}, + [32] = {.index = 41, .length = 2}, + [33] = {.index = 43, .length = 1}, + [34] = {.index = 44, .length = 2}, + [35] = {.index = 46, .length = 1}, + [37] = {.index = 47, .length = 1}, + [38] = {.index = 48, .length = 2}, + [39] = {.index = 50, .length = 2}, + [40] = {.index = 52, .length = 2}, + [41] = {.index = 54, .length = 1}, + [42] = {.index = 55, .length = 2}, + [43] = {.index = 57, .length = 2}, + [44] = {.index = 59, .length = 1}, + [45] = {.index = 60, .length = 3}, + [46] = {.index = 63, .length = 2}, + [47] = {.index = 65, .length = 2}, + [48] = {.index = 17, .length = 1}, + [49] = {.index = 67, .length = 1}, + [50] = {.index = 18, .length = 2}, + [51] = {.index = 68, .length = 2}, + [52] = {.index = 70, .length = 1}, + [53] = {.index = 71, .length = 2}, + [54] = {.index = 73, .length = 2}, + [55] = {.index = 73, .length = 2}, + [57] = {.index = 75, .length = 2}, + [58] = {.index = 77, .length = 2}, + [59] = {.index = 79, .length = 3}, + [60] = {.index = 82, .length = 3}, + [61] = {.index = 85, .length = 3}, + [62] = {.index = 88, .length = 1}, + [63] = {.index = 89, .length = 3}, + [64] = {.index = 92, .length = 3}, + [65] = {.index = 95, .length = 3}, + [66] = {.index = 98, .length = 3}, + [67] = {.index = 101, .length = 4}, + [68] = {.index = 105, .length = 1}, + [69] = {.index = 106, .length = 3}, + [70] = {.index = 109, .length = 3}, + [71] = {.index = 112, .length = 2}, + [72] = {.index = 114, .length = 2}, + [73] = {.index = 116, .length = 1}, + [74] = {.index = 117, .length = 2}, + [75] = {.index = 119, .length = 1}, + [76] = {.index = 120, .length = 1}, + [77] = {.index = 121, .length = 1}, + [78] = {.index = 122, .length = 3}, + [79] = {.index = 125, .length = 3}, + [80] = {.index = 128, .length = 1}, + [81] = {.index = 129, .length = 3}, + [82] = {.index = 18, .length = 2}, + [83] = {.index = 18, .length = 2}, + [84] = {.index = 132, .length = 1}, + [85] = {.index = 132, .length = 1}, + [86] = {.index = 133, .length = 3}, + [87] = {.index = 136, .length = 2}, + [88] = {.index = 133, .length = 3}, + [89] = {.index = 138, .length = 2}, + [90] = {.index = 140, .length = 2}, + [91] = {.index = 142, .length = 3}, + [92] = {.index = 145, .length = 1}, + [93] = {.index = 146, .length = 2}, + [94] = {.index = 148, .length = 2}, + [95] = {.index = 150, .length = 4}, + [96] = {.index = 148, .length = 2}, + [97] = {.index = 154, .length = 3}, + [98] = {.index = 157, .length = 4}, + [99] = {.index = 161, .length = 4}, + [100] = {.index = 165, .length = 2}, + [101] = {.index = 167, .length = 4}, + [102] = {.index = 171, .length = 4}, + [103] = {.index = 175, .length = 1}, + [104] = {.index = 176, .length = 4}, + [105] = {.index = 180, .length = 2}, + [106] = {.index = 182, .length = 3}, + [107] = {.index = 185, .length = 3}, + [108] = {.index = 188, .length = 4}, + [110] = {.index = 192, .length = 3}, + [111] = {.index = 195, .length = 4}, + [112] = {.index = 199, .length = 4}, + [113] = {.index = 203, .length = 1}, + [114] = {.index = 204, .length = 1}, + [115] = {.index = 205, .length = 2}, + [116] = {.index = 207, .length = 1}, + [117] = {.index = 208, .length = 2}, + [118] = {.index = 210, .length = 2}, + [119] = {.index = 212, .length = 2}, + [120] = {.index = 214, .length = 2}, + [121] = {.index = 216, .length = 4}, + [122] = {.index = 220, .length = 4}, + [123] = {.index = 224, .length = 4}, + [124] = {.index = 228, .length = 4}, + [125] = {.index = 232, .length = 3}, + [126] = {.index = 235, .length = 3}, + [127] = {.index = 238, .length = 2}, + [128] = {.index = 240, .length = 3}, + [129] = {.index = 128, .length = 1}, + [130] = {.index = 243, .length = 1}, + [131] = {.index = 243, .length = 1}, + [132] = {.index = 244, .length = 2}, + [133] = {.index = 246, .length = 4}, + [134] = {.index = 250, .length = 5}, + [135] = {.index = 255, .length = 3}, + [136] = {.index = 258, .length = 4}, + [137] = {.index = 262, .length = 3}, + [138] = {.index = 265, .length = 4}, + [139] = {.index = 269, .length = 4}, + [140] = {.index = 273, .length = 4}, + [141] = {.index = 277, .length = 4}, + [143] = {.index = 281, .length = 4}, + [144] = {.index = 285, .length = 4}, + [145] = {.index = 289, .length = 3}, + [146] = {.index = 292, .length = 5}, + [147] = {.index = 297, .length = 4}, + [148] = {.index = 301, .length = 4}, + [149] = {.index = 305, .length = 5}, + [150] = {.index = 310, .length = 4}, + [151] = {.index = 314, .length = 5}, + [152] = {.index = 319, .length = 1}, + [153] = {.index = 320, .length = 2}, + [154] = {.index = 322, .length = 2}, + [155] = {.index = 324, .length = 2}, + [156] = {.index = 326, .length = 2}, + [157] = {.index = 328, .length = 2}, + [158] = {.index = 330, .length = 3}, + [159] = {.index = 333, .length = 2}, + [160] = {.index = 335, .length = 2}, + [161] = {.index = 337, .length = 3}, + [162] = {.index = 340, .length = 3}, + [163] = {.index = 343, .length = 5}, + [164] = {.index = 348, .length = 3}, + [165] = {.index = 351, .length = 3}, + [166] = {.index = 354, .length = 2}, + [167] = {.index = 356, .length = 3}, + [168] = {.index = 359, .length = 3}, + [169] = {.index = 359, .length = 3}, + [170] = {.index = 362, .length = 2}, + [171] = {.index = 364, .length = 1}, + [172] = {.index = 365, .length = 4}, + [173] = {.index = 369, .length = 4}, + [174] = {.index = 373, .length = 3}, + [175] = {.index = 376, .length = 4}, + [176] = {.index = 380, .length = 4}, + [177] = {.index = 384, .length = 3}, + [178] = {.index = 387, .length = 5}, + [179] = {.index = 392, .length = 4}, + [180] = {.index = 396, .length = 4}, + [181] = {.index = 400, .length = 5}, + [182] = {.index = 405, .length = 4}, + [183] = {.index = 409, .length = 5}, + [184] = {.index = 414, .length = 5}, + [185] = {.index = 419, .length = 4}, + [186] = {.index = 423, .length = 5}, + [187] = {.index = 428, .length = 4}, + [188] = {.index = 432, .length = 4}, + [189] = {.index = 436, .length = 5}, + [190] = {.index = 441, .length = 5}, + [191] = {.index = 446, .length = 4}, + [192] = {.index = 450, .length = 3}, + [193] = {.index = 453, .length = 5}, + [194] = {.index = 458, .length = 4}, + [195] = {.index = 462, .length = 5}, + [196] = {.index = 467, .length = 5}, + [197] = {.index = 472, .length = 4}, + [198] = {.index = 476, .length = 6}, + [199] = {.index = 482, .length = 5}, + [200] = {.index = 487, .length = 5}, + [201] = {.index = 492, .length = 1}, + [202] = {.index = 493, .length = 2}, + [203] = {.index = 495, .length = 2}, + [204] = {.index = 497, .length = 2}, + [205] = {.index = 499, .length = 3}, + [206] = {.index = 502, .length = 2}, + [207] = {.index = 504, .length = 3}, + [208] = {.index = 507, .length = 3}, + [209] = {.index = 510, .length = 3}, + [210] = {.index = 513, .length = 2}, + [211] = {.index = 515, .length = 3}, + [212] = {.index = 518, .length = 3}, + [213] = {.index = 521, .length = 3}, + [214] = {.index = 524, .length = 3}, + [215] = {.index = 527, .length = 3}, + [216] = {.index = 530, .length = 4}, + [217] = {.index = 534, .length = 3}, + [218] = {.index = 537, .length = 2}, + [219] = {.index = 539, .length = 3}, + [220] = {.index = 542, .length = 4}, + [221] = {.index = 546, .length = 4}, + [222] = {.index = 550, .length = 2}, + [223] = {.index = 552, .length = 1}, + [224] = {.index = 553, .length = 2}, + [225] = {.index = 555, .length = 2}, + [226] = {.index = 557, .length = 5}, + [227] = {.index = 562, .length = 4}, + [228] = {.index = 566, .length = 4}, + [229] = {.index = 570, .length = 4}, + [230] = {.index = 574, .length = 5}, + [231] = {.index = 579, .length = 4}, + [232] = {.index = 583, .length = 4}, + [233] = {.index = 587, .length = 5}, + [234] = {.index = 592, .length = 5}, + [235] = {.index = 597, .length = 4}, + [236] = {.index = 601, .length = 3}, + [237] = {.index = 604, .length = 5}, + [238] = {.index = 609, .length = 4}, + [239] = {.index = 613, .length = 5}, + [240] = {.index = 618, .length = 5}, + [241] = {.index = 623, .length = 4}, + [242] = {.index = 627, .length = 6}, + [243] = {.index = 633, .length = 5}, + [244] = {.index = 638, .length = 5}, + [246] = {.index = 643, .length = 5}, + [247] = {.index = 648, .length = 5}, + [248] = {.index = 653, .length = 4}, + [249] = {.index = 657, .length = 5}, + [250] = {.index = 662, .length = 4}, + [251] = {.index = 666, .length = 5}, + [252] = {.index = 671, .length = 6}, + [253] = {.index = 677, .length = 5}, + [254] = {.index = 682, .length = 5}, + [255] = {.index = 687, .length = 4}, + [256] = {.index = 691, .length = 5}, + [257] = {.index = 696, .length = 5}, + [258] = {.index = 701, .length = 4}, + [259] = {.index = 705, .length = 5}, + [260] = {.index = 710, .length = 6}, + [261] = {.index = 716, .length = 5}, + [262] = {.index = 721, .length = 5}, + [263] = {.index = 726, .length = 6}, + [264] = {.index = 732, .length = 6}, + [265] = {.index = 738, .length = 5}, + [266] = {.index = 743, .length = 4}, + [267] = {.index = 747, .length = 6}, + [268] = {.index = 753, .length = 5}, + [269] = {.index = 758, .length = 2}, + [270] = {.index = 760, .length = 2}, + [271] = {.index = 762, .length = 3}, + [272] = {.index = 765, .length = 3}, + [273] = {.index = 768, .length = 3}, + [274] = {.index = 771, .length = 2}, + [275] = {.index = 773, .length = 3}, + [276] = {.index = 776, .length = 3}, + [277] = {.index = 779, .length = 3}, + [278] = {.index = 782, .length = 4}, + [279] = {.index = 786, .length = 2}, + [280] = {.index = 788, .length = 3}, + [281] = {.index = 791, .length = 3}, + [282] = {.index = 794, .length = 3}, + [283] = {.index = 797, .length = 4}, + [284] = {.index = 801, .length = 3}, + [285] = {.index = 804, .length = 4}, + [286] = {.index = 808, .length = 4}, + [287] = {.index = 812, .length = 4}, + [288] = {.index = 816, .length = 4}, + [289] = {.index = 820, .length = 2}, + [290] = {.index = 822, .length = 2}, + [291] = {.index = 824, .length = 3}, + [292] = {.index = 827, .length = 1}, + [293] = {.index = 828, .length = 5}, + [294] = {.index = 833, .length = 5}, + [295] = {.index = 838, .length = 5}, + [296] = {.index = 843, .length = 4}, + [297] = {.index = 847, .length = 5}, + [298] = {.index = 852, .length = 4}, + [299] = {.index = 856, .length = 5}, + [300] = {.index = 861, .length = 6}, + [301] = {.index = 867, .length = 5}, + [302] = {.index = 872, .length = 5}, + [303] = {.index = 877, .length = 4}, + [304] = {.index = 881, .length = 5}, + [305] = {.index = 886, .length = 5}, + [306] = {.index = 891, .length = 4}, + [307] = {.index = 895, .length = 5}, + [308] = {.index = 900, .length = 6}, + [309] = {.index = 906, .length = 5}, + [310] = {.index = 911, .length = 5}, + [311] = {.index = 916, .length = 6}, + [312] = {.index = 922, .length = 6}, + [313] = {.index = 928, .length = 5}, + [314] = {.index = 933, .length = 4}, + [315] = {.index = 937, .length = 6}, + [316] = {.index = 943, .length = 5}, + [317] = {.index = 948, .length = 6}, + [318] = {.index = 954, .length = 5}, + [319] = {.index = 959, .length = 6}, + [320] = {.index = 965, .length = 6}, + [321] = {.index = 971, .length = 6}, + [322] = {.index = 977, .length = 5}, + [323] = {.index = 982, .length = 5}, + [324] = {.index = 987, .length = 4}, + [325] = {.index = 991, .length = 6}, + [326] = {.index = 997, .length = 5}, + [327] = {.index = 1002, .length = 6}, + [328] = {.index = 1008, .length = 5}, + [329] = {.index = 1013, .length = 4}, + [330] = {.index = 1017, .length = 5}, + [331] = {.index = 1022, .length = 6}, + [332] = {.index = 1028, .length = 5}, + [333] = {.index = 1033, .length = 5}, + [334] = {.index = 1038, .length = 6}, + [335] = {.index = 1044, .length = 5}, + [336] = {.index = 1049, .length = 6}, + [337] = {.index = 1055, .length = 5}, + [338] = {.index = 1060, .length = 6}, + [339] = {.index = 1066, .length = 7}, + [340] = {.index = 1073, .length = 6}, + [341] = {.index = 1079, .length = 6}, + [342] = {.index = 1085, .length = 5}, + [343] = {.index = 1090, .length = 6}, + [344] = {.index = 1096, .length = 6}, + [345] = {.index = 1102, .length = 5}, + [346] = {.index = 1107, .length = 2}, + [347] = {.index = 1109, .length = 3}, + [348] = {.index = 1112, .length = 3}, + [349] = {.index = 1115, .length = 3}, + [350] = {.index = 1118, .length = 4}, + [351] = {.index = 1122, .length = 3}, + [352] = {.index = 1125, .length = 2}, + [353] = {.index = 1127, .length = 3}, + [354] = {.index = 1130, .length = 3}, + [355] = {.index = 1133, .length = 4}, + [356] = {.index = 1137, .length = 4}, + [357] = {.index = 1141, .length = 3}, + [358] = {.index = 1144, .length = 3}, + [359] = {.index = 1147, .length = 4}, + [360] = {.index = 1151, .length = 4}, + [361] = {.index = 1155, .length = 4}, + [362] = {.index = 1159, .length = 3}, + [363] = {.index = 1162, .length = 4}, + [364] = {.index = 1166, .length = 4}, + [365] = {.index = 1170, .length = 4}, + [366] = {.index = 1174, .length = 5}, + [367] = {.index = 1179, .length = 3}, + [368] = {.index = 1182, .length = 2}, + [369] = {.index = 1184, .length = 2}, + [370] = {.index = 1186, .length = 6}, + [371] = {.index = 1192, .length = 5}, + [372] = {.index = 1197, .length = 6}, + [373] = {.index = 1203, .length = 6}, + [374] = {.index = 1209, .length = 6}, + [375] = {.index = 1215, .length = 5}, + [376] = {.index = 1220, .length = 5}, + [377] = {.index = 1225, .length = 4}, + [378] = {.index = 1229, .length = 6}, + [379] = {.index = 1235, .length = 5}, + [380] = {.index = 1240, .length = 6}, + [381] = {.index = 1246, .length = 5}, + [382] = {.index = 1251, .length = 4}, + [383] = {.index = 1255, .length = 5}, + [384] = {.index = 1260, .length = 6}, + [385] = {.index = 1266, .length = 5}, + [386] = {.index = 1271, .length = 5}, + [387] = {.index = 1276, .length = 6}, + [388] = {.index = 1282, .length = 5}, + [389] = {.index = 1287, .length = 6}, + [390] = {.index = 1293, .length = 5}, + [391] = {.index = 1298, .length = 6}, + [392] = {.index = 1304, .length = 7}, + [393] = {.index = 1311, .length = 6}, + [394] = {.index = 1317, .length = 6}, + [395] = {.index = 1323, .length = 5}, + [396] = {.index = 1328, .length = 6}, + [397] = {.index = 1334, .length = 6}, + [398] = {.index = 1340, .length = 5}, + [399] = {.index = 1345, .length = 6}, + [400] = {.index = 1351, .length = 6}, + [401] = {.index = 1357, .length = 5}, + [402] = {.index = 1362, .length = 7}, + [403] = {.index = 1369, .length = 6}, + [404] = {.index = 1375, .length = 6}, + [405] = {.index = 1381, .length = 7}, + [406] = {.index = 1388, .length = 6}, + [407] = {.index = 1394, .length = 7}, + [408] = {.index = 1401, .length = 7}, + [409] = {.index = 1408, .length = 6}, + [410] = {.index = 1414, .length = 7}, + [411] = {.index = 1421, .length = 7}, + [412] = {.index = 1428, .length = 5}, + [413] = {.index = 1433, .length = 6}, + [414] = {.index = 1439, .length = 6}, + [415] = {.index = 1445, .length = 5}, + [416] = {.index = 1450, .length = 5}, + [417] = {.index = 1455, .length = 4}, + [418] = {.index = 1459, .length = 6}, + [419] = {.index = 1465, .length = 5}, + [420] = {.index = 1470, .length = 6}, + [421] = {.index = 1476, .length = 5}, + [422] = {.index = 1481, .length = 6}, + [423] = {.index = 1487, .length = 6}, + [424] = {.index = 1493, .length = 5}, + [425] = {.index = 1498, .length = 7}, + [426] = {.index = 1505, .length = 6}, + [427] = {.index = 1511, .length = 7}, + [428] = {.index = 1518, .length = 6}, + [429] = {.index = 1524, .length = 5}, + [430] = {.index = 1529, .length = 6}, + [431] = {.index = 1535, .length = 7}, + [432] = {.index = 1542, .length = 6}, + [433] = {.index = 1548, .length = 6}, + [434] = {.index = 1554, .length = 3}, + [435] = {.index = 1557, .length = 2}, + [436] = {.index = 1559, .length = 3}, + [437] = {.index = 1562, .length = 3}, + [438] = {.index = 1565, .length = 4}, + [439] = {.index = 1569, .length = 4}, + [440] = {.index = 1573, .length = 3}, + [441] = {.index = 1576, .length = 4}, + [442] = {.index = 1580, .length = 3}, + [443] = {.index = 1583, .length = 4}, + [444] = {.index = 1587, .length = 3}, + [445] = {.index = 1590, .length = 4}, + [446] = {.index = 1594, .length = 4}, + [447] = {.index = 1598, .length = 4}, + [448] = {.index = 1602, .length = 5}, + [449] = {.index = 1607, .length = 4}, + [450] = {.index = 1611, .length = 3}, + [451] = {.index = 1614, .length = 4}, + [452] = {.index = 1618, .length = 4}, + [453] = {.index = 1622, .length = 5}, + [454] = {.index = 1627, .length = 5}, + [455] = {.index = 1632, .length = 3}, + [456] = {.index = 1635, .length = 6}, + [457] = {.index = 1641, .length = 6}, + [458] = {.index = 1647, .length = 5}, + [459] = {.index = 1652, .length = 7}, + [460] = {.index = 1659, .length = 6}, + [461] = {.index = 1665, .length = 6}, + [462] = {.index = 1671, .length = 7}, + [463] = {.index = 1678, .length = 6}, + [464] = {.index = 1684, .length = 7}, + [465] = {.index = 1691, .length = 7}, + [466] = {.index = 1698, .length = 6}, + [467] = {.index = 1704, .length = 7}, + [468] = {.index = 1711, .length = 7}, + [469] = {.index = 1718, .length = 5}, + [470] = {.index = 1723, .length = 6}, + [471] = {.index = 1729, .length = 6}, + [472] = {.index = 1735, .length = 5}, + [473] = {.index = 1740, .length = 5}, + [474] = {.index = 1745, .length = 4}, + [475] = {.index = 1749, .length = 6}, + [476] = {.index = 1755, .length = 5}, + [477] = {.index = 1760, .length = 6}, + [478] = {.index = 1766, .length = 5}, + [479] = {.index = 1771, .length = 6}, + [480] = {.index = 1777, .length = 6}, + [481] = {.index = 1783, .length = 5}, + [482] = {.index = 1788, .length = 7}, + [483] = {.index = 1795, .length = 6}, + [484] = {.index = 1801, .length = 7}, + [485] = {.index = 1808, .length = 6}, + [486] = {.index = 1814, .length = 5}, + [487] = {.index = 1819, .length = 6}, + [488] = {.index = 1825, .length = 7}, + [489] = {.index = 1832, .length = 6}, + [490] = {.index = 1838, .length = 6}, + [491] = {.index = 1844, .length = 6}, + [492] = {.index = 1850, .length = 7}, + [493] = {.index = 1857, .length = 6}, + [494] = {.index = 1863, .length = 6}, + [495] = {.index = 1869, .length = 7}, + [496] = {.index = 1876, .length = 7}, + [497] = {.index = 1883, .length = 6}, + [498] = {.index = 1889, .length = 5}, + [499] = {.index = 1894, .length = 7}, + [500] = {.index = 1901, .length = 6}, + [501] = {.index = 1907, .length = 7}, + [502] = {.index = 1914, .length = 7}, + [503] = {.index = 1921, .length = 6}, + [504] = {.index = 1927, .length = 8}, + [505] = {.index = 1935, .length = 7}, + [506] = {.index = 1942, .length = 7}, + [507] = {.index = 1949, .length = 7}, + [508] = {.index = 1956, .length = 7}, + [509] = {.index = 1963, .length = 6}, + [510] = {.index = 1969, .length = 8}, + [511] = {.index = 1977, .length = 7}, + [512] = {.index = 1984, .length = 7}, + [513] = {.index = 1991, .length = 8}, + [514] = {.index = 1999, .length = 7}, + [515] = {.index = 2006, .length = 8}, + [516] = {.index = 2014, .length = 6}, + [517] = {.index = 2020, .length = 5}, + [518] = {.index = 2025, .length = 6}, + [519] = {.index = 2031, .length = 6}, + [520] = {.index = 2037, .length = 5}, + [521] = {.index = 2042, .length = 6}, + [522] = {.index = 2048, .length = 7}, + [523] = {.index = 2055, .length = 7}, + [524] = {.index = 2062, .length = 6}, + [525] = {.index = 2068, .length = 6}, + [526] = {.index = 2074, .length = 5}, + [527] = {.index = 2079, .length = 7}, + [528] = {.index = 2086, .length = 6}, + [529] = {.index = 2092, .length = 7}, + [530] = {.index = 2099, .length = 6}, + [531] = {.index = 2105, .length = 3}, + [532] = {.index = 2108, .length = 4}, + [533] = {.index = 2112, .length = 3}, + [534] = {.index = 2115, .length = 4}, + [535] = {.index = 2119, .length = 4}, + [536] = {.index = 2123, .length = 4}, + [537] = {.index = 2127, .length = 3}, + [538] = {.index = 2130, .length = 4}, + [539] = {.index = 2134, .length = 4}, + [540] = {.index = 2138, .length = 5}, + [541] = {.index = 2143, .length = 5}, + [542] = {.index = 2148, .length = 4}, + [543] = {.index = 2152, .length = 5}, + [544] = {.index = 2157, .length = 4}, + [545] = {.index = 2161, .length = 5}, + [546] = {.index = 2166, .length = 6}, + [547] = {.index = 2172, .length = 7}, + [548] = {.index = 2179, .length = 6}, + [549] = {.index = 2185, .length = 6}, + [550] = {.index = 2191, .length = 7}, + [551] = {.index = 2198, .length = 7}, + [552] = {.index = 2205, .length = 6}, + [553] = {.index = 2211, .length = 5}, + [554] = {.index = 2216, .length = 7}, + [555] = {.index = 2223, .length = 6}, + [556] = {.index = 2229, .length = 7}, + [557] = {.index = 2236, .length = 7}, + [558] = {.index = 2243, .length = 6}, + [559] = {.index = 2249, .length = 8}, + [560] = {.index = 2257, .length = 7}, + [561] = {.index = 2264, .length = 7}, + [562] = {.index = 2271, .length = 7}, + [563] = {.index = 2278, .length = 7}, + [564] = {.index = 2285, .length = 6}, + [565] = {.index = 2291, .length = 8}, + [566] = {.index = 2299, .length = 7}, + [567] = {.index = 2306, .length = 7}, + [568] = {.index = 2313, .length = 8}, + [569] = {.index = 2321, .length = 7}, + [570] = {.index = 2328, .length = 8}, + [571] = {.index = 2336, .length = 6}, + [572] = {.index = 2342, .length = 5}, + [573] = {.index = 2347, .length = 6}, + [574] = {.index = 2353, .length = 6}, + [575] = {.index = 2359, .length = 5}, + [576] = {.index = 2364, .length = 6}, + [577] = {.index = 2370, .length = 7}, + [578] = {.index = 2377, .length = 7}, + [579] = {.index = 2384, .length = 6}, + [580] = {.index = 2390, .length = 6}, + [581] = {.index = 2396, .length = 5}, + [582] = {.index = 2401, .length = 7}, + [583] = {.index = 2408, .length = 6}, + [584] = {.index = 2414, .length = 7}, + [585] = {.index = 2421, .length = 6}, + [586] = {.index = 2427, .length = 7}, + [587] = {.index = 2434, .length = 6}, + [588] = {.index = 2440, .length = 7}, + [589] = {.index = 2447, .length = 6}, + [590] = {.index = 2453, .length = 7}, + [591] = {.index = 2460, .length = 8}, + [592] = {.index = 2468, .length = 7}, + [593] = {.index = 2475, .length = 7}, + [594] = {.index = 2482, .length = 6}, + [595] = {.index = 2488, .length = 7}, + [596] = {.index = 2495, .length = 7}, + [597] = {.index = 2502, .length = 6}, + [598] = {.index = 2508, .length = 7}, + [599] = {.index = 2515, .length = 8}, + [600] = {.index = 2523, .length = 7}, + [601] = {.index = 2530, .length = 7}, + [602] = {.index = 2537, .length = 8}, + [603] = {.index = 2545, .length = 8}, + [604] = {.index = 2553, .length = 7}, + [605] = {.index = 2560, .length = 6}, + [606] = {.index = 2566, .length = 8}, + [607] = {.index = 2574, .length = 7}, + [608] = {.index = 2581, .length = 7}, + [609] = {.index = 2588, .length = 8}, + [610] = {.index = 2596, .length = 7}, + [611] = {.index = 2603, .length = 7}, + [612] = {.index = 2610, .length = 8}, + [613] = {.index = 2618, .length = 8}, + [614] = {.index = 2626, .length = 7}, + [615] = {.index = 2633, .length = 6}, + [616] = {.index = 2639, .length = 8}, + [617] = {.index = 2647, .length = 7}, + [618] = {.index = 2654, .length = 8}, + [619] = {.index = 2662, .length = 8}, + [620] = {.index = 2670, .length = 7}, + [621] = {.index = 2677, .length = 9}, + [622] = {.index = 2686, .length = 8}, + [623] = {.index = 2694, .length = 8}, + [624] = {.index = 2702, .length = 6}, + [625] = {.index = 2708, .length = 7}, + [626] = {.index = 2715, .length = 6}, + [627] = {.index = 2721, .length = 7}, + [628] = {.index = 2728, .length = 7}, + [629] = {.index = 2735, .length = 6}, + [630] = {.index = 2741, .length = 4}, + [631] = {.index = 2745, .length = 4}, + [632] = {.index = 2749, .length = 5}, + [633] = {.index = 2754, .length = 4}, + [634] = {.index = 2758, .length = 5}, + [635] = {.index = 2763, .length = 5}, + [636] = {.index = 2768, .length = 7}, + [637] = {.index = 2775, .length = 6}, + [638] = {.index = 2781, .length = 7}, + [639] = {.index = 2788, .length = 6}, + [640] = {.index = 2794, .length = 7}, + [641] = {.index = 2801, .length = 8}, + [642] = {.index = 2809, .length = 7}, + [643] = {.index = 2816, .length = 7}, + [644] = {.index = 2823, .length = 6}, + [645] = {.index = 2829, .length = 7}, + [646] = {.index = 2836, .length = 7}, + [647] = {.index = 2843, .length = 6}, + [648] = {.index = 2849, .length = 7}, + [649] = {.index = 2856, .length = 8}, + [650] = {.index = 2864, .length = 7}, + [651] = {.index = 2871, .length = 7}, + [652] = {.index = 2878, .length = 8}, + [653] = {.index = 2886, .length = 8}, + [654] = {.index = 2894, .length = 7}, + [655] = {.index = 2901, .length = 6}, + [656] = {.index = 2907, .length = 8}, + [657] = {.index = 2915, .length = 7}, + [658] = {.index = 2922, .length = 7}, + [659] = {.index = 2929, .length = 8}, + [660] = {.index = 2937, .length = 7}, + [661] = {.index = 2944, .length = 7}, + [662] = {.index = 2951, .length = 8}, + [663] = {.index = 2959, .length = 8}, + [664] = {.index = 2967, .length = 7}, + [665] = {.index = 2974, .length = 6}, + [666] = {.index = 2980, .length = 8}, + [667] = {.index = 2988, .length = 7}, + [668] = {.index = 2995, .length = 8}, + [669] = {.index = 3003, .length = 8}, + [670] = {.index = 3011, .length = 7}, + [671] = {.index = 3018, .length = 9}, + [672] = {.index = 3027, .length = 8}, + [673] = {.index = 3035, .length = 8}, + [674] = {.index = 3043, .length = 6}, + [675] = {.index = 3049, .length = 7}, + [676] = {.index = 3056, .length = 6}, + [677] = {.index = 3062, .length = 7}, + [678] = {.index = 3069, .length = 7}, + [679] = {.index = 3076, .length = 6}, + [680] = {.index = 3082, .length = 7}, + [681] = {.index = 3089, .length = 7}, + [682] = {.index = 3096, .length = 6}, + [683] = {.index = 3102, .length = 8}, + [684] = {.index = 3110, .length = 7}, + [685] = {.index = 3117, .length = 8}, + [686] = {.index = 3125, .length = 7}, + [687] = {.index = 3132, .length = 6}, + [688] = {.index = 3138, .length = 7}, + [689] = {.index = 3145, .length = 8}, + [690] = {.index = 3153, .length = 7}, + [691] = {.index = 3160, .length = 7}, + [692] = {.index = 3167, .length = 8}, + [693] = {.index = 3175, .length = 7}, + [694] = {.index = 3182, .length = 8}, + [695] = {.index = 3190, .length = 7}, + [696] = {.index = 3197, .length = 8}, + [697] = {.index = 3205, .length = 9}, + [698] = {.index = 3214, .length = 8}, + [699] = {.index = 3222, .length = 8}, + [700] = {.index = 3230, .length = 7}, + [701] = {.index = 3237, .length = 8}, + [702] = {.index = 3245, .length = 8}, + [703] = {.index = 3253, .length = 7}, + [704] = {.index = 3260, .length = 8}, + [705] = {.index = 3268, .length = 7}, + [706] = {.index = 3275, .length = 8}, + [707] = {.index = 3283, .length = 7}, + [708] = {.index = 3290, .length = 8}, + [709] = {.index = 3298, .length = 9}, + [710] = {.index = 3307, .length = 8}, + [711] = {.index = 3315, .length = 8}, + [712] = {.index = 3323, .length = 7}, + [713] = {.index = 3330, .length = 8}, + [714] = {.index = 3338, .length = 8}, + [715] = {.index = 3346, .length = 7}, + [716] = {.index = 3353, .length = 8}, + [717] = {.index = 3361, .length = 9}, + [718] = {.index = 3370, .length = 8}, + [719] = {.index = 3378, .length = 8}, + [720] = {.index = 3386, .length = 9}, + [721] = {.index = 3395, .length = 9}, + [722] = {.index = 3404, .length = 8}, + [723] = {.index = 3412, .length = 7}, + [724] = {.index = 3419, .length = 9}, + [725] = {.index = 3428, .length = 8}, + [726] = {.index = 3436, .length = 7}, + [727] = {.index = 3443, .length = 5}, + [728] = {.index = 3448, .length = 7}, + [729] = {.index = 3455, .length = 7}, + [730] = {.index = 3462, .length = 6}, + [731] = {.index = 3468, .length = 8}, + [732] = {.index = 3476, .length = 7}, + [733] = {.index = 3483, .length = 8}, + [734] = {.index = 3491, .length = 7}, + [735] = {.index = 3498, .length = 6}, + [736] = {.index = 3504, .length = 7}, + [737] = {.index = 3511, .length = 8}, + [738] = {.index = 3519, .length = 7}, + [739] = {.index = 3526, .length = 7}, + [740] = {.index = 3533, .length = 8}, + [741] = {.index = 3541, .length = 7}, + [742] = {.index = 3548, .length = 8}, + [743] = {.index = 3556, .length = 7}, + [744] = {.index = 3563, .length = 8}, + [745] = {.index = 3571, .length = 9}, + [746] = {.index = 3580, .length = 8}, + [747] = {.index = 3588, .length = 8}, + [748] = {.index = 3596, .length = 7}, + [749] = {.index = 3603, .length = 8}, + [750] = {.index = 3611, .length = 8}, + [751] = {.index = 3619, .length = 7}, + [752] = {.index = 3626, .length = 8}, + [753] = {.index = 3634, .length = 7}, + [754] = {.index = 3641, .length = 8}, + [755] = {.index = 3649, .length = 7}, + [756] = {.index = 3656, .length = 8}, + [757] = {.index = 3664, .length = 9}, + [758] = {.index = 3673, .length = 8}, + [759] = {.index = 3681, .length = 8}, + [760] = {.index = 3689, .length = 7}, + [761] = {.index = 3696, .length = 8}, + [762] = {.index = 3704, .length = 8}, + [763] = {.index = 3712, .length = 7}, + [764] = {.index = 3719, .length = 8}, + [765] = {.index = 3727, .length = 9}, + [766] = {.index = 3736, .length = 8}, + [767] = {.index = 3744, .length = 8}, + [768] = {.index = 3752, .length = 9}, + [769] = {.index = 3761, .length = 9}, + [770] = {.index = 3770, .length = 8}, + [771] = {.index = 3778, .length = 7}, + [772] = {.index = 3785, .length = 9}, + [773] = {.index = 3794, .length = 8}, + [774] = {.index = 3802, .length = 7}, + [775] = {.index = 3809, .length = 7}, + [776] = {.index = 3816, .length = 8}, + [777] = {.index = 3824, .length = 8}, + [778] = {.index = 3832, .length = 7}, + [779] = {.index = 3839, .length = 7}, + [780] = {.index = 3846, .length = 6}, + [781] = {.index = 3852, .length = 8}, + [782] = {.index = 3860, .length = 7}, + [783] = {.index = 3867, .length = 8}, + [784] = {.index = 3875, .length = 7}, + [785] = {.index = 3882, .length = 8}, + [786] = {.index = 3890, .length = 8}, + [787] = {.index = 3898, .length = 7}, + [788] = {.index = 3905, .length = 9}, + [789] = {.index = 3914, .length = 8}, + [790] = {.index = 3922, .length = 9}, + [791] = {.index = 3931, .length = 8}, + [792] = {.index = 3939, .length = 7}, + [793] = {.index = 3946, .length = 8}, + [794] = {.index = 3954, .length = 9}, + [795] = {.index = 3963, .length = 8}, + [796] = {.index = 3971, .length = 8}, + [797] = {.index = 3979, .length = 8}, + [798] = {.index = 3987, .length = 8}, + [799] = {.index = 3995, .length = 7}, + [800] = {.index = 4002, .length = 9}, + [801] = {.index = 4011, .length = 8}, + [802] = {.index = 4019, .length = 9}, + [803] = {.index = 4028, .length = 8}, + [804] = {.index = 4036, .length = 7}, + [805] = {.index = 4043, .length = 8}, + [806] = {.index = 4051, .length = 9}, + [807] = {.index = 4060, .length = 8}, + [808] = {.index = 4068, .length = 8}, + [809] = {.index = 4076, .length = 9}, + [810] = {.index = 4085, .length = 8}, + [811] = {.index = 4093, .length = 9}, + [812] = {.index = 4102, .length = 8}, + [813] = {.index = 4110, .length = 9}, + [814] = {.index = 4119, .length = 10}, + [815] = {.index = 4129, .length = 9}, + [816] = {.index = 4138, .length = 9}, + [817] = {.index = 4147, .length = 8}, + [818] = {.index = 4155, .length = 9}, + [819] = {.index = 4164, .length = 9}, + [820] = {.index = 4173, .length = 8}, + [821] = {.index = 4181, .length = 7}, + [822] = {.index = 4188, .length = 8}, + [823] = {.index = 4196, .length = 8}, + [824] = {.index = 4204, .length = 7}, + [825] = {.index = 4211, .length = 7}, + [826] = {.index = 4218, .length = 6}, + [827] = {.index = 4224, .length = 8}, + [828] = {.index = 4232, .length = 7}, + [829] = {.index = 4239, .length = 8}, + [830] = {.index = 4247, .length = 7}, + [831] = {.index = 4254, .length = 8}, + [832] = {.index = 4262, .length = 8}, + [833] = {.index = 4270, .length = 7}, + [834] = {.index = 4277, .length = 9}, + [835] = {.index = 4286, .length = 8}, + [836] = {.index = 4294, .length = 9}, + [837] = {.index = 4303, .length = 8}, + [838] = {.index = 4311, .length = 7}, + [839] = {.index = 4318, .length = 8}, + [840] = {.index = 4326, .length = 9}, + [841] = {.index = 4335, .length = 8}, + [842] = {.index = 4343, .length = 8}, + [843] = {.index = 4351, .length = 8}, + [844] = {.index = 4359, .length = 8}, + [845] = {.index = 4367, .length = 7}, + [846] = {.index = 4374, .length = 9}, + [847] = {.index = 4383, .length = 8}, + [848] = {.index = 4391, .length = 9}, + [849] = {.index = 4400, .length = 8}, + [850] = {.index = 4408, .length = 7}, + [851] = {.index = 4415, .length = 8}, + [852] = {.index = 4423, .length = 9}, + [853] = {.index = 4432, .length = 8}, + [854] = {.index = 4440, .length = 8}, + [855] = {.index = 4448, .length = 9}, + [856] = {.index = 4457, .length = 8}, + [857] = {.index = 4465, .length = 9}, + [858] = {.index = 4474, .length = 8}, + [859] = {.index = 4482, .length = 9}, + [860] = {.index = 4491, .length = 10}, + [861] = {.index = 4501, .length = 9}, + [862] = {.index = 4510, .length = 9}, + [863] = {.index = 4519, .length = 8}, + [864] = {.index = 4527, .length = 9}, + [865] = {.index = 4536, .length = 9}, + [866] = {.index = 4545, .length = 8}, + [867] = {.index = 4553, .length = 8}, + [868] = {.index = 4561, .length = 7}, + [869] = {.index = 4568, .length = 8}, + [870] = {.index = 4576, .length = 8}, + [871] = {.index = 4584, .length = 7}, + [872] = {.index = 4591, .length = 8}, + [873] = {.index = 4599, .length = 9}, + [874] = {.index = 4608, .length = 9}, + [875] = {.index = 4617, .length = 8}, + [876] = {.index = 4625, .length = 8}, + [877] = {.index = 4633, .length = 7}, + [878] = {.index = 4640, .length = 9}, + [879] = {.index = 4649, .length = 8}, + [880] = {.index = 4657, .length = 9}, + [881] = {.index = 4666, .length = 8}, + [882] = {.index = 4674, .length = 8}, + [883] = {.index = 4682, .length = 9}, + [884] = {.index = 4691, .length = 9}, + [885] = {.index = 4700, .length = 8}, + [886] = {.index = 4708, .length = 8}, + [887] = {.index = 4716, .length = 7}, + [888] = {.index = 4723, .length = 9}, + [889] = {.index = 4732, .length = 8}, + [890] = {.index = 4740, .length = 9}, + [891] = {.index = 4749, .length = 8}, + [892] = {.index = 4757, .length = 9}, + [893] = {.index = 4766, .length = 9}, + [894] = {.index = 4775, .length = 8}, + [895] = {.index = 4783, .length = 10}, + [896] = {.index = 4793, .length = 9}, + [897] = {.index = 4802, .length = 10}, + [898] = {.index = 4812, .length = 9}, + [899] = {.index = 4821, .length = 8}, + [900] = {.index = 4829, .length = 9}, + [901] = {.index = 4838, .length = 10}, + [902] = {.index = 4848, .length = 9}, + [903] = {.index = 4857, .length = 9}, + [904] = {.index = 4866, .length = 8}, + [905] = {.index = 4874, .length = 7}, + [906] = {.index = 4881, .length = 8}, + [907] = {.index = 4889, .length = 8}, + [908] = {.index = 4897, .length = 7}, + [909] = {.index = 4904, .length = 8}, + [910] = {.index = 4912, .length = 9}, + [911] = {.index = 4921, .length = 9}, + [912] = {.index = 4930, .length = 8}, + [913] = {.index = 4938, .length = 8}, + [914] = {.index = 4946, .length = 7}, + [915] = {.index = 4953, .length = 9}, + [916] = {.index = 4962, .length = 8}, + [917] = {.index = 4970, .length = 9}, + [918] = {.index = 4979, .length = 8}, + [919] = {.index = 4987, .length = 8}, + [920] = {.index = 4995, .length = 9}, + [921] = {.index = 5004, .length = 9}, + [922] = {.index = 5013, .length = 8}, + [923] = {.index = 5021, .length = 8}, + [924] = {.index = 5029, .length = 7}, + [925] = {.index = 5036, .length = 9}, + [926] = {.index = 5045, .length = 8}, + [927] = {.index = 5053, .length = 9}, + [928] = {.index = 5062, .length = 8}, + [929] = {.index = 5070, .length = 9}, + [930] = {.index = 5079, .length = 9}, + [931] = {.index = 5088, .length = 8}, + [932] = {.index = 5096, .length = 10}, + [933] = {.index = 5106, .length = 9}, + [934] = {.index = 5115, .length = 10}, + [935] = {.index = 5125, .length = 9}, + [936] = {.index = 5134, .length = 8}, + [937] = {.index = 5142, .length = 9}, + [938] = {.index = 5151, .length = 10}, + [939] = {.index = 5161, .length = 9}, + [940] = {.index = 5170, .length = 9}, + [941] = {.index = 5179, .length = 8}, + [942] = {.index = 5187, .length = 9}, + [943] = {.index = 5196, .length = 8}, + [944] = {.index = 5204, .length = 9}, + [945] = {.index = 5213, .length = 9}, + [946] = {.index = 5222, .length = 8}, + [947] = {.index = 5230, .length = 9}, + [948] = {.index = 5239, .length = 8}, + [949] = {.index = 5247, .length = 9}, + [950] = {.index = 5256, .length = 9}, + [951] = {.index = 5265, .length = 8}, + [952] = {.index = 5273, .length = 9}, + [953] = {.index = 5282, .length = 10}, + [954] = {.index = 5292, .length = 10}, + [955] = {.index = 5302, .length = 9}, + [956] = {.index = 5311, .length = 9}, + [957] = {.index = 5320, .length = 8}, + [958] = {.index = 5328, .length = 10}, + [959] = {.index = 5338, .length = 9}, + [960] = {.index = 5347, .length = 10}, + [961] = {.index = 5357, .length = 9}, + [962] = {.index = 5366, .length = 8}, + [963] = {.index = 5374, .length = 9}, + [964] = {.index = 5383, .length = 8}, + [965] = {.index = 5391, .length = 9}, + [966] = {.index = 5400, .length = 9}, + [967] = {.index = 5409, .length = 8}, + [968] = {.index = 5417, .length = 9}, + [969] = {.index = 5426, .length = 8}, + [970] = {.index = 5434, .length = 9}, + [971] = {.index = 5443, .length = 9}, + [972] = {.index = 5452, .length = 8}, + [973] = {.index = 5460, .length = 9}, + [974] = {.index = 5469, .length = 10}, + [975] = {.index = 5479, .length = 10}, + [976] = {.index = 5489, .length = 9}, + [977] = {.index = 5498, .length = 9}, + [978] = {.index = 5507, .length = 8}, + [979] = {.index = 5515, .length = 10}, + [980] = {.index = 5525, .length = 9}, + [981] = {.index = 5534, .length = 10}, + [982] = {.index = 5544, .length = 9}, + [983] = {.index = 5553, .length = 9}, + [984] = {.index = 5562, .length = 9}, + [985] = {.index = 5571, .length = 10}, + [986] = {.index = 5581, .length = 9}, + [987] = {.index = 5590, .length = 10}, + [988] = {.index = 5600, .length = 10}, + [989] = {.index = 5610, .length = 9}, + [990] = {.index = 5619, .length = 9}, + [991] = {.index = 5628, .length = 9}, + [992] = {.index = 5637, .length = 10}, + [993] = {.index = 5647, .length = 9}, + [994] = {.index = 5656, .length = 10}, + [995] = {.index = 5666, .length = 10}, + [996] = {.index = 5676, .length = 9}, + [997] = {.index = 5685, .length = 10}, + [998] = {.index = 5695, .length = 10}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_name, 0}, + [1] = + {field_name, 1, .inherited = true}, + [2] = + {field_argument, 1}, + [3] = + {field_value, 0}, + [4] = + {field_code, 1}, + [5] = + {field_argument, 1}, + {field_operator, 0}, + [7] = + {field_arguments, 1}, + {field_function, 0}, + [9] = + {field_operators, 1, .inherited = true}, + [10] = + {field_definition, 1}, + [11] = + {field_name, 0}, + {field_name, 1, .inherited = true}, + [13] = + {field_argument, 2, .inherited = true}, + [14] = + {field_argument, 1}, + {field_argument, 2, .inherited = true}, + [16] = + {field_cause, 2}, + [17] = + {field_body, 2}, + [18] = + {field_name, 0}, + {field_value, 2}, + [20] = + {field_left, 0}, + {field_type, 2}, + [22] = + {field_left, 0}, + {field_right, 2}, + [24] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [27] = + {field_comptime, 2}, + [28] = + {field_attribute, 2}, + {field_object, 0}, + [30] = + {field_operators, 0}, + [31] = + {field_arguments, 2}, + {field_function, 0}, + [33] = + {field_operators, 0, .inherited = true}, + {field_operators, 1, .inherited = true}, + [35] = + {field_definition, 1}, + {field_definition, 2}, + [37] = + {field_expression, 1}, + [38] = + {field_name, 1}, + [39] = + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + [41] = + {field_comptime, 2}, + {field_name, 0}, + [43] = + {field_name, 3, .inherited = true}, + [44] = + {field_module_name, 1}, + {field_name, 3, .inherited = true}, + [46] = + {field_module_name, 1}, + [47] = + {field_body, 1}, + [48] = + {field_argument, 0, .inherited = true}, + {field_argument, 1, .inherited = true}, + [50] = + {field_left, 1}, + {field_type, 3}, + [52] = + {field_left, 1}, + {field_right, 3}, + [54] = + {field_cause, 3}, + [55] = + {field_body, 3}, + {field_name, 1}, + [57] = + {field_condition, 1}, + {field_consequence, 3}, + [59] = + {field_subject, 1}, + [60] = + {field_alternative, 3, .inherited = true}, + {field_body, 3}, + {field_subject, 1}, + [63] = + {field_subject, 0, .inherited = true}, + {field_subject, 1, .inherited = true}, + [65] = + {field_body, 3}, + {field_condition, 1}, + [67] = + {field_body, 3}, + [68] = + {field_key, 0}, + {field_value, 2}, + [70] = + {field_type, 2}, + [71] = + {field_body, 3}, + {field_parameters, 1}, + [73] = + {field_subscript, 2}, + {field_value, 0}, + [75] = + {field_expression, 1}, + {field_type_conversion, 2}, + [77] = + {field_expression, 1}, + {field_format_specifier, 2}, + [79] = + {field_name, 1}, + {field_type_parameters, 2}, + {field_value, 4}, + [82] = + {field_body, 3}, + {field_body, 4}, + {field_name, 1}, + [85] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 2}, + [88] = + {field_alternative, 0}, + [89] = + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 3}, + [92] = + {field_alternative, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + [95] = + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [98] = + {field_alternative, 4, .inherited = true}, + {field_body, 4}, + {field_subject, 1}, + [101] = + {field_alternative, 4, .inherited = true}, + {field_body, 4}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [105] = + {field_body, 4}, + [106] = + {field_alternative, 4}, + {field_body, 3}, + {field_condition, 1}, + [109] = + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [112] = + {field_body, 2}, + {field_body, 3}, + [114] = + {field_body, 3}, + {field_body, 4}, + [116] = + {field_raises_type, 1}, + [117] = + {field_raises_type, 0, .inherited = true}, + {field_raises_type, 1, .inherited = true}, + [119] = + {field_raises_type, 3, .inherited = true}, + [120] = + {field_parameter, 2}, + [121] = + {field_type_parameters, 1}, + [122] = + {field_body, 4}, + {field_name, 1}, + {field_superclasses, 2}, + [125] = + {field_body, 4}, + {field_name, 1}, + {field_type_parameters, 2}, + [128] = + {field_type, 3}, + [129] = + {field_left, 0}, + {field_right, 4}, + {field_type, 2}, + [132] = + {field_subscript, 1}, + [133] = + {field_subscript, 2}, + {field_subscript, 3, .inherited = true}, + {field_value, 0}, + [136] = + {field_subscript, 0, .inherited = true}, + {field_subscript, 1, .inherited = true}, + [138] = + {field_expression, 1}, + {field_type_conversion, 3}, + [140] = + {field_expression, 1}, + {field_format_specifier, 3}, + [142] = + {field_expression, 1}, + {field_format_specifier, 3}, + {field_type_conversion, 2}, + [145] = + {field_name, 4, .inherited = true}, + [146] = + {field_module_name, 1}, + {field_name, 4, .inherited = true}, + [148] = + {field_default, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [150] = + {field_default, 0, .inherited = true}, + {field_default, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [154] = + {field_left, 1}, + {field_right, 5}, + {field_type, 3}, + [157] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_parameters, 2}, + [161] = + {field_alternative, 4, .inherited = true}, + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + [165] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [167] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [171] = + {field_alternative, 5, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [175] = + {field_alternative, 1, .inherited = true}, + [176] = + {field_alternative, 5, .inherited = true}, + {field_body, 5}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [180] = + {field_body, 4}, + {field_body, 5}, + [182] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 3}, + [185] = + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [188] = + {field_alternative, 5}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [192] = + {field_body, 5}, + {field_name, 1}, + {field_parameters, 2}, + [195] = + {field_body, 5}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [199] = + {field_body, 5}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [203] = + {field_return_type, 4}, + [204] = + {field_parameter, 3}, + [205] = + {field_parameter, 2}, + {field_raises_type, 4, .inherited = true}, + [207] = + {field_parameter, 1}, + [208] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + [210] = + {field_parameter, 0, .inherited = true}, + {field_parameter, 1, .inherited = true}, + [212] = + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 1}, + [214] = + {field_parameter, 3}, + {field_type_parameters, 1}, + [216] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_superclasses, 2}, + [220] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_type_parameters, 2}, + [224] = + {field_body, 5}, + {field_name, 1}, + {field_superclasses, 3}, + {field_type_parameters, 2}, + [228] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_supertraits, 2}, + [232] = + {field_name, 0}, + {field_type, 2}, + {field_value, 4}, + [235] = + {field_expression, 1}, + {field_format_specifier, 4}, + {field_type_conversion, 3}, + [238] = + {field_left, 2}, + {field_right, 4}, + [240] = + {field_left, 1}, + {field_right, 3}, + {field_right, 4}, + [243] = + {field_default, 3}, + [244] = + {field_default, 3, .inherited = true}, + {field_type, 3, .inherited = true}, + [246] = + {field_name, 1}, + {field_type, 4}, + {field_type_parameters, 2}, + {field_value, 6}, + [250] = + {field_alternative, 5, .inherited = true}, + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [255] = + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [258] = + {field_body, 5}, + {field_body, 6}, + {field_name, 2}, + {field_parameters, 3}, + [262] = + {field_body, 6}, + {field_name, 2}, + {field_parameters, 3}, + [265] = + {field_body, 6}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [269] = + {field_body, 6}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [273] = + {field_alternative, 6}, + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [277] = + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [281] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [285] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + [289] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + [292] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [297] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [301] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [305] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [310] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [314] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [319] = + {field_return_type, 5}, + [320] = + {field_raises_type, 3, .inherited = true}, + {field_return_type, 5}, + [322] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + [324] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + [326] = + {field_parameter, 2}, + {field_return_type, 5}, + [328] = + {field_parameter, 2}, + {field_raises_type, 5, .inherited = true}, + [330] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 5, .inherited = true}, + [333] = + {field_return_type, 5}, + {field_type_parameters, 1}, + [335] = + {field_parameter, 4}, + {field_type_parameters, 1}, + [337] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 1}, + [340] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_type_parameters, 1}, + [343] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_superclasses, 3}, + {field_type_parameters, 2}, + [348] = + {field_name, 1}, + {field_type, 3}, + {field_value, 5}, + [351] = + {field_left, 2}, + {field_right, 4}, + {field_right, 5}, + [354] = + {field_left, 3}, + {field_right, 5}, + [356] = + {field_default, 4, .inherited = true}, + {field_type, 3}, + {field_type, 4, .inherited = true}, + [359] = + {field_default, 3}, + {field_default, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + [362] = + {field_key, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [364] = + {field_consequence, 3}, + [365] = + {field_alternative, 7}, + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [369] = + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [373] = + {field_body, 7}, + {field_left, 3}, + {field_right, 5}, + [376] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [380] = + {field_body, 6}, + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + [384] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + [387] = + {field_body, 6}, + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [392] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [396] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [400] = + {field_body, 6}, + {field_body, 7}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [405] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [409] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [414] = + {field_alternative, 7}, + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [419] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 5}, + [423] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [428] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [432] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + [436] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 5}, + [441] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [446] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [450] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + [453] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [458] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [462] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [467] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [472] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [476] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [482] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [487] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [492] = + {field_return_type, 6}, + [493] = + {field_raises_type, 3, .inherited = true}, + {field_return_type, 6}, + [495] = + {field_parameter, 3}, + {field_return_type, 6}, + [497] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + [499] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + [502] = + {field_parameter, 2}, + {field_return_type, 6}, + [504] = + {field_parameter, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [507] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_return_type, 6}, + [510] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + [513] = + {field_return_type, 6}, + {field_type_parameters, 1}, + [515] = + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + {field_type_parameters, 1}, + [518] = + {field_parameter, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 1}, + [521] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_type_parameters, 1}, + [524] = + {field_parameter, 3}, + {field_return_type, 6}, + {field_type_parameters, 1}, + [527] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 1}, + [530] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 1}, + [534] = + {field_left, 3}, + {field_right, 5}, + {field_right, 6}, + [537] = + {field_default, 5}, + {field_type, 3}, + [539] = + {field_default, 3}, + {field_default, 5, .inherited = true}, + {field_type, 5, .inherited = true}, + [542] = + {field_key, 1, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_value, 1, .inherited = true}, + {field_value, 2, .inherited = true}, + [546] = + {field_key, 0, .inherited = true}, + {field_key, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [550] = + {field_key, 2, .inherited = true}, + {field_value, 2, .inherited = true}, + [552] = + {field_consequence, 4}, + [553] = + {field_consequence, 3}, + {field_consequence, 4}, + [555] = + {field_consequence, 4}, + {field_guard, 2}, + [557] = + {field_alternative, 8}, + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [562] = + {field_alternative, 8}, + {field_body, 7}, + {field_left, 3}, + {field_right, 5}, + [566] = + {field_body, 7}, + {field_body, 8}, + {field_left, 3}, + {field_right, 5}, + [570] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 6}, + [574] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [579] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [583] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + [587] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [592] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [597] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [601] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + [604] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [609] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [613] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [618] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [623] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [627] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [633] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [638] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [643] = + {field_body, 8}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [648] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 5}, + [653] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 5}, + [657] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [662] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 6}, + [666] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 6}, + [671] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 5}, + [677] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 5}, + [682] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + [687] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + [691] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [696] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [701] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [705] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [710] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [716] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [721] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [726] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [732] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [738] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [743] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [747] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [753] = + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [758] = + {field_raises_type, 3, .inherited = true}, + {field_return_type, 7}, + [760] = + {field_parameter, 3}, + {field_return_type, 7}, + [762] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [765] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 7}, + [768] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + [771] = + {field_parameter, 2}, + {field_return_type, 7}, + [773] = + {field_parameter, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [776] = + {field_parameter, 2}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [779] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_return_type, 7}, + [782] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [786] = + {field_return_type, 7}, + {field_type_parameters, 1}, + [788] = + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 1}, + [791] = + {field_parameter, 4}, + {field_return_type, 7}, + {field_type_parameters, 1}, + [794] = + {field_parameter, 4}, + {field_raises_type, 7, .inherited = true}, + {field_type_parameters, 1}, + [797] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_type_parameters, 1}, + [801] = + {field_parameter, 3}, + {field_return_type, 7}, + {field_type_parameters, 1}, + [804] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 1}, + [808] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 1}, + [812] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_type_parameters, 1}, + [816] = + {field_default, 5}, + {field_default, 6, .inherited = true}, + {field_type, 3}, + {field_type, 6, .inherited = true}, + [820] = + {field_consequence, 4}, + {field_consequence, 5}, + [822] = + {field_consequence, 5}, + {field_guard, 3}, + [824] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_guard, 2}, + [827] = + {field_consequence, 5}, + [828] = + {field_alternative, 9}, + {field_body, 7}, + {field_body, 8}, + {field_left, 3}, + {field_right, 5}, + [833] = + {field_body, 9}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [838] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 6}, + [843] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 6}, + [847] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [852] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 7}, + [856] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [861] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [867] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [872] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + [877] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + [881] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [886] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [891] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [895] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [900] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [906] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [911] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [916] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [922] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [928] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [933] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [937] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [943] = + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [948] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [954] = + {field_body, 9}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [959] = + {field_body, 9}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [965] = + {field_body, 9}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [971] = + {field_body, 9}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [977] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 5}, + [982] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 6}, + [987] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 6}, + [991] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 6}, + [997] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 6}, + [1002] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 5}, + [1008] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 7}, + [1013] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 7}, + [1017] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1022] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [1028] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [1033] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + [1038] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1044] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1049] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [1055] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1060] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1066] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1073] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1079] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_type_parameters, 2}, + [1085] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [1090] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1096] = + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [1102] = + {field_body, 9}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [1107] = + {field_parameter, 3}, + {field_return_type, 8}, + [1109] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1112] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + [1115] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 8}, + [1118] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + [1122] = + {field_parameter, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [1125] = + {field_parameter, 2}, + {field_return_type, 8}, + [1127] = + {field_parameter, 2}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1130] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_return_type, 8}, + [1133] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1137] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + [1141] = + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1144] = + {field_parameter, 4}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1147] = + {field_parameter, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1151] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1155] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 1}, + [1159] = + {field_parameter, 3}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1162] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1166] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1170] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1174] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 1}, + [1179] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_guard, 3}, + [1182] = + {field_consequence, 5}, + {field_consequence, 6}, + [1184] = + {field_consequence, 6}, + {field_guard, 4}, + [1186] = + {field_body, 9}, + {field_body, 10}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [1192] = + {field_body, 10}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [1197] = + {field_body, 10}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [1203] = + {field_body, 10}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [1209] = + {field_body, 10}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [1215] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 6}, + [1220] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 7}, + [1225] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 7}, + [1229] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1235] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1240] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [1246] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [1251] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 8}, + [1255] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1260] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [1266] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [1271] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + [1276] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1282] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1287] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [1293] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1298] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1304] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1311] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1317] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 3}, + [1323] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [1328] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1334] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [1340] = + {field_body, 10}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [1345] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 8}, + [1351] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [1357] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [1362] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [1369] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [1375] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [1381] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [1388] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [1394] = + {field_body, 10}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [1401] = + {field_body, 9}, + {field_body, 10}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [1408] = + {field_body, 10}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [1414] = + {field_body, 10}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [1421] = + {field_body, 10}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [1428] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 6}, + [1433] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 6}, + [1439] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 7}, + [1445] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 7}, + [1450] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 7}, + [1455] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 7}, + [1459] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1465] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1470] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + [1476] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [1481] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1487] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1493] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1498] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1505] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1511] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 6}, + {field_type_parameters, 2}, + [1518] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [1524] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [1529] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [1535] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1542] = + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [1548] = + {field_body, 9}, + {field_body, 10}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_type_parameters, 2}, + [1554] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [1557] = + {field_parameter, 3}, + {field_return_type, 9}, + [1559] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + [1562] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 9}, + [1565] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + [1569] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + [1573] = + {field_parameter, 2}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [1576] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [1580] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_return_type, 9}, + [1583] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + [1587] = + {field_parameter, 4}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1590] = + {field_parameter, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1594] = + {field_parameter, 4}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1598] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1602] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1607] = + {field_parameter, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1611] = + {field_parameter, 3}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1614] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1618] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1622] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1627] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 1}, + [1632] = + {field_consequence, 6}, + {field_consequence, 7}, + {field_guard, 4}, + [1635] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + [1641] = + {field_body, 10}, + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [1647] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [1652] = + {field_body, 10}, + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [1659] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [1665] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [1671] = + {field_body, 10}, + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [1678] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [1684] = + {field_body, 11}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [1691] = + {field_body, 10}, + {field_body, 11}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [1698] = + {field_body, 11}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [1704] = + {field_body, 11}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [1711] = + {field_body, 11}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [1718] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 7}, + [1723] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [1729] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [1735] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [1740] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 8}, + [1745] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 8}, + [1749] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1755] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [1760] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + [1766] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [1771] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1777] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1783] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1788] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1795] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1801] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 3}, + [1808] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [1814] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [1819] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [1825] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1832] = + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [1838] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_type_parameters, 3}, + [1844] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 9}, + [1850] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 8}, + [1857] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 8}, + [1863] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [1869] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + [1876] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [1883] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [1889] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [1894] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [1901] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [1907] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 6}, + [1914] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [1921] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [1927] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [1935] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [1942] = + {field_body, 11}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [1949] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [1956] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [1963] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [1969] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [1977] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [1984] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [1991] = + {field_body, 10}, + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [1999] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2006] = + {field_body, 11}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2014] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 3, .inherited = true}, + {field_return_type, 7}, + [2020] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 7}, + [2025] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + [2031] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [2037] = + {field_body, 11}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [2042] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [2048] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [2055] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2062] = + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2068] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2074] = + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2079] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2086] = + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2092] = + {field_body, 10}, + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 7}, + {field_type_parameters, 2}, + [2099] = + {field_body, 11}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 2}, + [2105] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + [2108] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + [2112] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 10}, + [2115] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + [2119] = + {field_parameter, 2}, + {field_parameter, 3, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + [2123] = + {field_parameter, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2127] = + {field_parameter, 4}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2130] = + {field_parameter, 4}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2134] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2138] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2143] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2148] = + {field_parameter, 3}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2152] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2157] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2161] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 1}, + [2166] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + [2172] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + [2179] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + [2185] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [2191] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [2198] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [2205] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [2211] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [2216] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [2223] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [2229] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 7}, + [2236] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [2243] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [2249] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [2257] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [2264] = + {field_body, 12}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [2271] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 4}, + [2278] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [2285] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [2291] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [2299] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [2306] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [2313] = + {field_body, 11}, + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [2321] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [2328] = + {field_body, 12}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [2336] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [2342] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 8}, + [2347] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + [2353] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [2359] = + {field_body, 12}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [2364] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [2370] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [2377] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2384] = + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2390] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2396] = + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2401] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2408] = + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2414] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 3}, + [2421] = + {field_body, 12}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [2427] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 9}, + [2434] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 9}, + [2440] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 8}, + [2447] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 10}, + [2453] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + [2460] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + [2468] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + [2475] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + [2482] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + [2488] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [2495] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [2502] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [2508] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [2515] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 6}, + [2523] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 6}, + [2530] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [2537] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [2545] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [2553] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [2560] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [2566] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [2574] = + {field_body, 12}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [2581] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [2588] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2596] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [2603] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [2610] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [2618] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [2626] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [2633] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [2639] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [2647] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [2654] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2662] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2670] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2677] = + {field_body, 11}, + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2686] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2694] = + {field_body, 12}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [2702] = + {field_body, 11}, + {field_body, 12}, + {field_name, 1}, + {field_parameters, 2}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + [2708] = + {field_body, 11}, + {field_body, 12}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 4, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2715] = + {field_body, 11}, + {field_body, 12}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2721] = + {field_body, 11}, + {field_body, 12}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 8}, + {field_type_parameters, 2}, + [2728] = + {field_body, 11}, + {field_body, 12}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 2}, + [2735] = + {field_body, 12}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 2}, + [2741] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + [2745] = + {field_parameter, 4}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 1}, + [2749] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 1}, + [2754] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 1}, + [2758] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 1}, + [2763] = + {field_parameter, 3}, + {field_parameter, 4, .inherited = true}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 1}, + [2768] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + [2775] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + [2781] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + [2788] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + [2794] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [2801] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [2809] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [2816] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + [2823] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + [2829] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + [2836] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [2843] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [2849] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [2856] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 7}, + [2864] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 7}, + [2871] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [2878] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [2886] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [2894] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [2901] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [2907] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [2915] = + {field_body, 13}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [2922] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [2929] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 4}, + [2937] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 4}, + [2944] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [2951] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [2959] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [2967] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [2974] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [2980] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [2988] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [2995] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 11}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3003] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3011] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3018] = + {field_body, 12}, + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3027] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3035] = + {field_body, 13}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3043] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + [3049] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [3056] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [3062] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [3069] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3076] = + {field_body, 13}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3082] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 9}, + [3089] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 10}, + [3096] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 10}, + [3102] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + [3110] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + [3117] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 9}, + [3125] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + [3132] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 11}, + [3138] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [3145] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [3153] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [3160] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + [3167] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3175] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3182] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 6}, + [3190] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3197] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3205] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3214] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3222] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 6}, + [3230] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_type_parameters, 6}, + [3237] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3245] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [3253] = + {field_body, 13}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [3260] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3268] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3275] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 9}, + {field_type_parameters, 3}, + [3283] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [3290] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [3298] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3307] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3315] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_type_parameters, 3}, + [3323] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_type_parameters, 3}, + [3330] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [3338] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [3346] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [3353] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3361] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3370] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3378] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3386] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3395] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3404] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3412] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3419] = + {field_body, 12}, + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3428] = + {field_body, 13}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [3436] = + {field_body, 12}, + {field_body, 13}, + {field_name, 1}, + {field_parameters, 3}, + {field_raises_type, 5, .inherited = true}, + {field_return_type, 9}, + {field_type_parameters, 2}, + [3443] = + {field_parameter, 4}, + {field_parameter, 5, .inherited = true}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 1}, + [3448] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + [3455] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + [3462] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + [3468] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [3476] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [3483] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [3491] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [3498] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + [3504] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + [3511] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + [3519] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + [3526] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + [3533] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [3541] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [3548] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 7}, + [3556] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [3563] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [3571] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [3580] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [3588] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 7}, + [3596] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 7}, + [3603] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [3611] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [3619] = + {field_body, 14}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [3626] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [3634] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [3641] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 4}, + [3649] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [3656] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [3664] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [3673] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [3681] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 4}, + [3689] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_type_parameters, 4}, + [3696] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [3704] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [3712] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [3719] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3727] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 11}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3736] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 11}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3744] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3752] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3761] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3770] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3778] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3785] = + {field_body, 13}, + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3794] = + {field_body, 14}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [3802] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_parameters, 4}, + {field_raises_type, 6, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3809] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 10}, + [3816] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 10}, + [3824] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + [3832] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + [3839] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 11}, + [3846] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 11}, + [3852] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [3860] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [3867] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + [3875] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [3882] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3890] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3898] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3905] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3914] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3922] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 6}, + [3931] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [3939] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [3946] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [3954] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3963] = + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [3971] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 6}, + [3979] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [3987] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [3995] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4002] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4011] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4019] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 10}, + {field_type_parameters, 3}, + [4028] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4036] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4043] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4051] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4060] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4068] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + [4076] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4085] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4093] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 10}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4102] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4110] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4119] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4129] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4138] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4147] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4155] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4164] = + {field_body, 13}, + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4173] = + {field_body, 14}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4181] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + [4188] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [4196] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [4204] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [4211] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + [4218] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + [4224] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + [4232] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + [4239] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + [4247] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + [4254] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [4262] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4270] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4277] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4286] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4294] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 7}, + [4303] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4311] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4318] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4326] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4335] = + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4343] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 7}, + [4351] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [4359] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4367] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4374] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4383] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4391] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 4}, + [4400] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [4408] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [4415] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [4423] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4432] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4440] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + [4448] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4457] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4465] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 11}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4474] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4482] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4491] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4501] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4510] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4519] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4527] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4536] = + {field_body, 14}, + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4545] = + {field_body, 15}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [4553] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 7, .inherited = true}, + {field_return_type, 11}, + [4561] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_return_type, 11}, + [4568] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + [4576] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [4584] = + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [4591] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [4599] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [4608] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4617] = + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4625] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4633] = + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4640] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4649] = + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [4657] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 6}, + [4666] = + {field_body, 15}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 6}, + [4674] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4682] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4691] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4700] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4708] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4716] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4723] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4732] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [4740] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + [4749] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + [4757] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4766] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4775] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4783] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4793] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4802] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 11}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4812] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4821] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4829] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4838] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4848] = + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4857] = + {field_body, 14}, + {field_body, 15}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [4866] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [4874] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + [4881] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + [4889] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + [4897] = + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + [4904] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4912] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4921] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4930] = + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4938] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4946] = + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4953] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4962] = + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [4970] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 7}, + [4979] = + {field_body, 16}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 7}, + [4987] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [4995] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [5004] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5013] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5021] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5029] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5036] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5045] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5053] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + [5062] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + [5070] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5079] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5088] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5096] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5106] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5115] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5125] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5134] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5142] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5151] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5161] = + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5170] = + {field_body, 15}, + {field_body, 16}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5179] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 6}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + [5187] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [5196] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [5204] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 6}, + [5213] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 6}, + [5222] = + {field_body, 16}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 6}, + [5230] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 8, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [5239] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [5247] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + [5256] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + [5265] = + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + [5273] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5282] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5292] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5302] = + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5311] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5320] = + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5328] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5338] = + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5347] = + {field_body, 15}, + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 12}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5357] = + {field_body, 16}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5366] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + [5374] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [5383] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [5391] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 7}, + [5400] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 7}, + [5409] = + {field_body, 17}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 7}, + [5417] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5426] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5434] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + [5443] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + [5452] = + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + [5460] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5469] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5479] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5489] = + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5498] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5507] = + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5515] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5525] = + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5534] = + {field_body, 16}, + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5544] = + {field_body, 17}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 15}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5553] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 5}, + {field_parameters, 3}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 6}, + [5562] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 7}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + [5571] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 9, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5581] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5590] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 13}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5600] = + {field_body, 16}, + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5610] = + {field_body, 17}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5619] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 7}, + [5628] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + [5637] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5647] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5656] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5666] = + {field_body, 17}, + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 15}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5676] = + {field_body, 18}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 15}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, + [5685] = + {field_body, 17}, + {field_body, 18}, + {field_name, 2}, + {field_name, 6}, + {field_parameters, 4}, + {field_parameters, 8}, + {field_raises_type, 10, .inherited = true}, + {field_return_type, 14}, + {field_type_parameters, 3}, + {field_type_parameters, 7}, + [5695] = + {field_body, 18}, + {field_body, 19}, + {field_name, 3}, + {field_name, 7}, + {field_parameters, 5}, + {field_parameters, 9}, + {field_raises_type, 11, .inherited = true}, + {field_return_type, 15}, + {field_type_parameters, 4}, + {field_type_parameters, 8}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [2] = { + [0] = sym_list_splat, + }, + [5] = { + [1] = sym_identifier, + }, + [18] = { + [2] = sym_type, + }, + [23] = { + [2] = alias_sym_as_pattern_target, + }, + [36] = { + [1] = sym_parenthesized_expression, + }, + [42] = { + [3] = sym_block, + }, + [43] = { + [3] = sym_block, + }, + [47] = { + [3] = sym_block, + }, + [48] = { + [2] = sym_block, + }, + [49] = { + [3] = sym_block, + }, + [50] = { + [0] = sym_identifier, + }, + [54] = { + [2] = sym_identifier, + }, + [56] = { + [0] = alias_sym_format_expression, + }, + [61] = { + [4] = sym_block, + }, + [63] = { + [3] = sym_block, + }, + [64] = { + [3] = sym_block, + }, + [68] = { + [4] = sym_block, + }, + [69] = { + [3] = sym_block, + }, + [78] = { + [4] = sym_block, + }, + [79] = { + [4] = sym_block, + }, + [82] = { + [0] = sym_identifier, + [2] = sym_identifier, + }, + [83] = { + [2] = sym_identifier, + }, + [84] = { + [1] = sym_identifier, + }, + [86] = { + [2] = sym_identifier, + }, + [94] = { + [1] = sym_identifier, + }, + [99] = { + [3] = sym_block, + }, + [106] = { + [5] = sym_block, + }, + [107] = { + [5] = sym_block, + }, + [109] = { + [2] = sym_block, + }, + [110] = { + [5] = sym_block, + }, + [111] = { + [5] = sym_block, + }, + [112] = { + [5] = sym_block, + }, + [123] = { + [5] = sym_block, + }, + [129] = { + [1] = sym_identifier, + }, + [130] = { + [1] = sym_identifier, + }, + [135] = { + [6] = sym_block, + }, + [137] = { + [6] = sym_block, + }, + [138] = { + [6] = sym_block, + }, + [139] = { + [6] = sym_block, + }, + [140] = { + [5] = sym_block, + }, + [142] = { + [3] = sym_block, + }, + [143] = { + [6] = sym_block, + }, + [145] = { + [6] = sym_block, + }, + [147] = { + [6] = sym_block, + }, + [148] = { + [6] = sym_block, + }, + [150] = { + [6] = sym_block, + }, + [151] = { + [6] = sym_block, + }, + [167] = { + [1] = sym_identifier, + }, + [168] = { + [1] = sym_identifier, + }, + [171] = { + [3] = sym_block, + }, + [172] = { + [6] = sym_block, + }, + [174] = { + [7] = sym_block, + }, + [175] = { + [7] = sym_block, + }, + [177] = { + [7] = sym_block, + }, + [179] = { + [7] = sym_block, + }, + [180] = { + [7] = sym_block, + }, + [182] = { + [7] = sym_block, + }, + [183] = { + [7] = sym_block, + }, + [185] = { + [7] = sym_block, + }, + [187] = { + [7] = sym_block, + }, + [189] = { + [7] = sym_block, + }, + [191] = { + [7] = sym_block, + }, + [192] = { + [7] = sym_block, + }, + [194] = { + [7] = sym_block, + }, + [195] = { + [7] = sym_block, + }, + [197] = { + [7] = sym_block, + }, + [199] = { + [7] = sym_block, + }, + [200] = { + [7] = sym_block, + }, + [218] = { + [1] = sym_identifier, + }, + [223] = { + [4] = sym_block, + }, + [225] = { + [4] = sym_block, + }, + [227] = { + [7] = sym_block, + }, + [229] = { + [8] = sym_block, + }, + [231] = { + [8] = sym_block, + }, + [233] = { + [8] = sym_block, + }, + [235] = { + [8] = sym_block, + }, + [236] = { + [8] = sym_block, + }, + [238] = { + [8] = sym_block, + }, + [239] = { + [8] = sym_block, + }, + [241] = { + [8] = sym_block, + }, + [243] = { + [8] = sym_block, + }, + [244] = { + [8] = sym_block, + }, + [245] = { + [5] = sym_block, + }, + [246] = { + [8] = sym_block, + }, + [248] = { + [8] = sym_block, + }, + [250] = { + [8] = sym_block, + }, + [251] = { + [8] = sym_block, + }, + [253] = { + [8] = sym_block, + }, + [256] = { + [8] = sym_block, + }, + [258] = { + [8] = sym_block, + }, + [259] = { + [8] = sym_block, + }, + [261] = { + [8] = sym_block, + }, + [263] = { + [8] = sym_block, + }, + [265] = { + [8] = sym_block, + }, + [266] = { + [8] = sym_block, + }, + [268] = { + [8] = sym_block, + }, + [288] = { + [1] = sym_identifier, + }, + [290] = { + [5] = sym_block, + }, + [292] = { + [5] = sym_block, + }, + [294] = { + [9] = sym_block, + }, + [296] = { + [9] = sym_block, + }, + [298] = { + [9] = sym_block, + }, + [299] = { + [9] = sym_block, + }, + [301] = { + [9] = sym_block, + }, + [304] = { + [9] = sym_block, + }, + [306] = { + [9] = sym_block, + }, + [307] = { + [9] = sym_block, + }, + [309] = { + [9] = sym_block, + }, + [311] = { + [9] = sym_block, + }, + [313] = { + [9] = sym_block, + }, + [314] = { + [9] = sym_block, + }, + [316] = { + [9] = sym_block, + }, + [318] = { + [9] = sym_block, + }, + [319] = { + [9] = sym_block, + }, + [320] = { + [9] = sym_block, + }, + [321] = { + [9] = sym_block, + }, + [324] = { + [9] = sym_block, + }, + [326] = { + [9] = sym_block, + }, + [328] = { + [9] = sym_block, + }, + [329] = { + [9] = sym_block, + }, + [330] = { + [9] = sym_block, + }, + [332] = { + [9] = sym_block, + }, + [335] = { + [9] = sym_block, + }, + [337] = { + [9] = sym_block, + }, + [338] = { + [9] = sym_block, + }, + [340] = { + [9] = sym_block, + }, + [343] = { + [9] = sym_block, + }, + [345] = { + [9] = sym_block, + }, + [369] = { + [6] = sym_block, + }, + [371] = { + [10] = sym_block, + }, + [372] = { + [10] = sym_block, + }, + [373] = { + [10] = sym_block, + }, + [374] = { + [10] = sym_block, + }, + [377] = { + [10] = sym_block, + }, + [379] = { + [10] = sym_block, + }, + [381] = { + [10] = sym_block, + }, + [382] = { + [10] = sym_block, + }, + [383] = { + [10] = sym_block, + }, + [385] = { + [10] = sym_block, + }, + [388] = { + [10] = sym_block, + }, + [390] = { + [10] = sym_block, + }, + [391] = { + [10] = sym_block, + }, + [393] = { + [10] = sym_block, + }, + [396] = { + [10] = sym_block, + }, + [398] = { + [10] = sym_block, + }, + [399] = { + [10] = sym_block, + }, + [401] = { + [10] = sym_block, + }, + [403] = { + [10] = sym_block, + }, + [404] = { + [10] = sym_block, + }, + [406] = { + [10] = sym_block, + }, + [407] = { + [10] = sym_block, + }, + [409] = { + [10] = sym_block, + }, + [410] = { + [10] = sym_block, + }, + [411] = { + [10] = sym_block, + }, + [415] = { + [10] = sym_block, + }, + [417] = { + [10] = sym_block, + }, + [419] = { + [10] = sym_block, + }, + [421] = { + [10] = sym_block, + }, + [424] = { + [10] = sym_block, + }, + [426] = { + [10] = sym_block, + }, + [428] = { + [10] = sym_block, + }, + [429] = { + [10] = sym_block, + }, + [430] = { + [10] = sym_block, + }, + [432] = { + [10] = sym_block, + }, + [456] = { + [11] = sym_block, + }, + [458] = { + [11] = sym_block, + }, + [460] = { + [11] = sym_block, + }, + [461] = { + [11] = sym_block, + }, + [463] = { + [11] = sym_block, + }, + [464] = { + [11] = sym_block, + }, + [466] = { + [11] = sym_block, + }, + [467] = { + [11] = sym_block, + }, + [468] = { + [11] = sym_block, + }, + [472] = { + [11] = sym_block, + }, + [474] = { + [11] = sym_block, + }, + [476] = { + [11] = sym_block, + }, + [478] = { + [11] = sym_block, + }, + [481] = { + [11] = sym_block, + }, + [483] = { + [11] = sym_block, + }, + [485] = { + [11] = sym_block, + }, + [486] = { + [11] = sym_block, + }, + [487] = { + [11] = sym_block, + }, + [489] = { + [11] = sym_block, + }, + [491] = { + [11] = sym_block, + }, + [493] = { + [11] = sym_block, + }, + [495] = { + [11] = sym_block, + }, + [497] = { + [11] = sym_block, + }, + [498] = { + [11] = sym_block, + }, + [500] = { + [11] = sym_block, + }, + [501] = { + [11] = sym_block, + }, + [503] = { + [11] = sym_block, + }, + [505] = { + [11] = sym_block, + }, + [506] = { + [11] = sym_block, + }, + [507] = { + [11] = sym_block, + }, + [509] = { + [11] = sym_block, + }, + [511] = { + [11] = sym_block, + }, + [512] = { + [11] = sym_block, + }, + [514] = { + [11] = sym_block, + }, + [515] = { + [11] = sym_block, + }, + [520] = { + [11] = sym_block, + }, + [524] = { + [11] = sym_block, + }, + [526] = { + [11] = sym_block, + }, + [528] = { + [11] = sym_block, + }, + [530] = { + [11] = sym_block, + }, + [546] = { + [12] = sym_block, + }, + [548] = { + [12] = sym_block, + }, + [550] = { + [12] = sym_block, + }, + [552] = { + [12] = sym_block, + }, + [553] = { + [12] = sym_block, + }, + [555] = { + [12] = sym_block, + }, + [556] = { + [12] = sym_block, + }, + [558] = { + [12] = sym_block, + }, + [560] = { + [12] = sym_block, + }, + [561] = { + [12] = sym_block, + }, + [562] = { + [12] = sym_block, + }, + [564] = { + [12] = sym_block, + }, + [566] = { + [12] = sym_block, + }, + [567] = { + [12] = sym_block, + }, + [569] = { + [12] = sym_block, + }, + [570] = { + [12] = sym_block, + }, + [575] = { + [12] = sym_block, + }, + [579] = { + [12] = sym_block, + }, + [581] = { + [12] = sym_block, + }, + [583] = { + [12] = sym_block, + }, + [585] = { + [12] = sym_block, + }, + [587] = { + [12] = sym_block, + }, + [589] = { + [12] = sym_block, + }, + [590] = { + [12] = sym_block, + }, + [592] = { + [12] = sym_block, + }, + [595] = { + [12] = sym_block, + }, + [597] = { + [12] = sym_block, + }, + [598] = { + [12] = sym_block, + }, + [600] = { + [12] = sym_block, + }, + [602] = { + [12] = sym_block, + }, + [604] = { + [12] = sym_block, + }, + [605] = { + [12] = sym_block, + }, + [607] = { + [12] = sym_block, + }, + [608] = { + [12] = sym_block, + }, + [610] = { + [12] = sym_block, + }, + [612] = { + [12] = sym_block, + }, + [614] = { + [12] = sym_block, + }, + [615] = { + [12] = sym_block, + }, + [617] = { + [12] = sym_block, + }, + [618] = { + [12] = sym_block, + }, + [620] = { + [12] = sym_block, + }, + [622] = { + [12] = sym_block, + }, + [623] = { + [12] = sym_block, + }, + [629] = { + [12] = sym_block, + }, + [637] = { + [13] = sym_block, + }, + [639] = { + [13] = sym_block, + }, + [640] = { + [13] = sym_block, + }, + [642] = { + [13] = sym_block, + }, + [645] = { + [13] = sym_block, + }, + [647] = { + [13] = sym_block, + }, + [648] = { + [13] = sym_block, + }, + [650] = { + [13] = sym_block, + }, + [652] = { + [13] = sym_block, + }, + [654] = { + [13] = sym_block, + }, + [655] = { + [13] = sym_block, + }, + [657] = { + [13] = sym_block, + }, + [658] = { + [13] = sym_block, + }, + [660] = { + [13] = sym_block, + }, + [662] = { + [13] = sym_block, + }, + [664] = { + [13] = sym_block, + }, + [665] = { + [13] = sym_block, + }, + [667] = { + [13] = sym_block, + }, + [668] = { + [13] = sym_block, + }, + [670] = { + [13] = sym_block, + }, + [672] = { + [13] = sym_block, + }, + [673] = { + [13] = sym_block, + }, + [679] = { + [13] = sym_block, + }, + [682] = { + [13] = sym_block, + }, + [684] = { + [13] = sym_block, + }, + [686] = { + [13] = sym_block, + }, + [687] = { + [13] = sym_block, + }, + [688] = { + [13] = sym_block, + }, + [690] = { + [13] = sym_block, + }, + [693] = { + [13] = sym_block, + }, + [695] = { + [13] = sym_block, + }, + [696] = { + [13] = sym_block, + }, + [698] = { + [13] = sym_block, + }, + [701] = { + [13] = sym_block, + }, + [703] = { + [13] = sym_block, + }, + [705] = { + [13] = sym_block, + }, + [707] = { + [13] = sym_block, + }, + [708] = { + [13] = sym_block, + }, + [710] = { + [13] = sym_block, + }, + [713] = { + [13] = sym_block, + }, + [715] = { + [13] = sym_block, + }, + [716] = { + [13] = sym_block, + }, + [718] = { + [13] = sym_block, + }, + [720] = { + [13] = sym_block, + }, + [722] = { + [13] = sym_block, + }, + [723] = { + [13] = sym_block, + }, + [725] = { + [13] = sym_block, + }, + [730] = { + [14] = sym_block, + }, + [732] = { + [14] = sym_block, + }, + [734] = { + [14] = sym_block, + }, + [735] = { + [14] = sym_block, + }, + [736] = { + [14] = sym_block, + }, + [738] = { + [14] = sym_block, + }, + [741] = { + [14] = sym_block, + }, + [743] = { + [14] = sym_block, + }, + [744] = { + [14] = sym_block, + }, + [746] = { + [14] = sym_block, + }, + [749] = { + [14] = sym_block, + }, + [751] = { + [14] = sym_block, + }, + [753] = { + [14] = sym_block, + }, + [755] = { + [14] = sym_block, + }, + [756] = { + [14] = sym_block, + }, + [758] = { + [14] = sym_block, + }, + [761] = { + [14] = sym_block, + }, + [763] = { + [14] = sym_block, + }, + [764] = { + [14] = sym_block, + }, + [766] = { + [14] = sym_block, + }, + [768] = { + [14] = sym_block, + }, + [770] = { + [14] = sym_block, + }, + [771] = { + [14] = sym_block, + }, + [773] = { + [14] = sym_block, + }, + [778] = { + [14] = sym_block, + }, + [780] = { + [14] = sym_block, + }, + [782] = { + [14] = sym_block, + }, + [784] = { + [14] = sym_block, + }, + [787] = { + [14] = sym_block, + }, + [789] = { + [14] = sym_block, + }, + [791] = { + [14] = sym_block, + }, + [792] = { + [14] = sym_block, + }, + [793] = { + [14] = sym_block, + }, + [795] = { + [14] = sym_block, + }, + [799] = { + [14] = sym_block, + }, + [801] = { + [14] = sym_block, + }, + [803] = { + [14] = sym_block, + }, + [804] = { + [14] = sym_block, + }, + [805] = { + [14] = sym_block, + }, + [807] = { + [14] = sym_block, + }, + [810] = { + [14] = sym_block, + }, + [812] = { + [14] = sym_block, + }, + [813] = { + [14] = sym_block, + }, + [815] = { + [14] = sym_block, + }, + [818] = { + [14] = sym_block, + }, + [820] = { + [14] = sym_block, + }, + [824] = { + [15] = sym_block, + }, + [826] = { + [15] = sym_block, + }, + [828] = { + [15] = sym_block, + }, + [830] = { + [15] = sym_block, + }, + [833] = { + [15] = sym_block, + }, + [835] = { + [15] = sym_block, + }, + [837] = { + [15] = sym_block, + }, + [838] = { + [15] = sym_block, + }, + [839] = { + [15] = sym_block, + }, + [841] = { + [15] = sym_block, + }, + [845] = { + [15] = sym_block, + }, + [847] = { + [15] = sym_block, + }, + [849] = { + [15] = sym_block, + }, + [850] = { + [15] = sym_block, + }, + [851] = { + [15] = sym_block, + }, + [853] = { + [15] = sym_block, + }, + [856] = { + [15] = sym_block, + }, + [858] = { + [15] = sym_block, + }, + [859] = { + [15] = sym_block, + }, + [861] = { + [15] = sym_block, + }, + [864] = { + [15] = sym_block, + }, + [866] = { + [15] = sym_block, + }, + [871] = { + [15] = sym_block, + }, + [875] = { + [15] = sym_block, + }, + [877] = { + [15] = sym_block, + }, + [879] = { + [15] = sym_block, + }, + [881] = { + [15] = sym_block, + }, + [885] = { + [15] = sym_block, + }, + [887] = { + [15] = sym_block, + }, + [889] = { + [15] = sym_block, + }, + [891] = { + [15] = sym_block, + }, + [894] = { + [15] = sym_block, + }, + [896] = { + [15] = sym_block, + }, + [898] = { + [15] = sym_block, + }, + [899] = { + [15] = sym_block, + }, + [900] = { + [15] = sym_block, + }, + [902] = { + [15] = sym_block, + }, + [908] = { + [16] = sym_block, + }, + [912] = { + [16] = sym_block, + }, + [914] = { + [16] = sym_block, + }, + [916] = { + [16] = sym_block, + }, + [918] = { + [16] = sym_block, + }, + [922] = { + [16] = sym_block, + }, + [924] = { + [16] = sym_block, + }, + [926] = { + [16] = sym_block, + }, + [928] = { + [16] = sym_block, + }, + [931] = { + [16] = sym_block, + }, + [933] = { + [16] = sym_block, + }, + [935] = { + [16] = sym_block, + }, + [936] = { + [16] = sym_block, + }, + [937] = { + [16] = sym_block, + }, + [939] = { + [16] = sym_block, + }, + [946] = { + [16] = sym_block, + }, + [951] = { + [16] = sym_block, + }, + [955] = { + [16] = sym_block, + }, + [957] = { + [16] = sym_block, + }, + [959] = { + [16] = sym_block, + }, + [961] = { + [16] = sym_block, + }, + [967] = { + [17] = sym_block, + }, + [972] = { + [17] = sym_block, + }, + [976] = { + [17] = sym_block, + }, + [978] = { + [17] = sym_block, + }, + [980] = { + [17] = sym_block, + }, + [982] = { + [17] = sym_block, + }, + [989] = { + [17] = sym_block, + }, + [996] = { + [18] = sym_block, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__simple_statements, 2, + sym__simple_statements, + sym_block, + sym_parenthesized_list_splat, 2, + sym_parenthesized_list_splat, + sym_parenthesized_expression, + sym_list_splat_pattern, 2, + sym_list_splat_pattern, + sym_list_splat, + sym_expression, 2, + sym_expression, + alias_sym_as_pattern_target, + sym_interpolation, 2, + sym_interpolation, + alias_sym_format_expression, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 2, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 3, + [465] = 5, + [466] = 6, + [467] = 7, + [468] = 8, + [469] = 9, + [470] = 10, + [471] = 11, + [472] = 12, + [473] = 13, + [474] = 14, + [475] = 15, + [476] = 16, + [477] = 17, + [478] = 18, + [479] = 19, + [480] = 20, + [481] = 21, + [482] = 22, + [483] = 23, + [484] = 24, + [485] = 25, + [486] = 26, + [487] = 27, + [488] = 28, + [489] = 29, + [490] = 30, + [491] = 31, + [492] = 32, + [493] = 33, + [494] = 34, + [495] = 35, + [496] = 36, + [497] = 37, + [498] = 38, + [499] = 39, + [500] = 41, + [501] = 42, + [502] = 43, + [503] = 44, + [504] = 45, + [505] = 46, + [506] = 47, + [507] = 48, + [508] = 49, + [509] = 50, + [510] = 51, + [511] = 52, + [512] = 53, + [513] = 54, + [514] = 55, + [515] = 56, + [516] = 57, + [517] = 58, + [518] = 59, + [519] = 60, + [520] = 63, + [521] = 64, + [522] = 65, + [523] = 4, + [524] = 67, + [525] = 68, + [526] = 69, + [527] = 70, + [528] = 71, + [529] = 72, + [530] = 73, + [531] = 74, + [532] = 75, + [533] = 76, + [534] = 77, + [535] = 78, + [536] = 79, + [537] = 80, + [538] = 81, + [539] = 82, + [540] = 83, + [541] = 84, + [542] = 85, + [543] = 86, + [544] = 87, + [545] = 88, + [546] = 89, + [547] = 90, + [548] = 91, + [549] = 94, + [550] = 95, + [551] = 96, + [552] = 97, + [553] = 98, + [554] = 99, + [555] = 100, + [556] = 101, + [557] = 102, + [558] = 103, + [559] = 104, + [560] = 105, + [561] = 106, + [562] = 107, + [563] = 108, + [564] = 109, + [565] = 110, + [566] = 111, + [567] = 112, + [568] = 113, + [569] = 114, + [570] = 115, + [571] = 116, + [572] = 117, + [573] = 118, + [574] = 119, + [575] = 120, + [576] = 121, + [577] = 122, + [578] = 123, + [579] = 124, + [580] = 125, + [581] = 126, + [582] = 127, + [583] = 129, + [584] = 130, + [585] = 131, + [586] = 132, + [587] = 133, + [588] = 134, + [589] = 135, + [590] = 136, + [591] = 137, + [592] = 138, + [593] = 139, + [594] = 140, + [595] = 141, + [596] = 142, + [597] = 143, + [598] = 144, + [599] = 145, + [600] = 146, + [601] = 147, + [602] = 148, + [603] = 149, + [604] = 150, + [605] = 151, + [606] = 152, + [607] = 153, + [608] = 154, + [609] = 155, + [610] = 156, + [611] = 157, + [612] = 158, + [613] = 159, + [614] = 160, + [615] = 161, + [616] = 162, + [617] = 163, + [618] = 164, + [619] = 165, + [620] = 166, + [621] = 167, + [622] = 168, + [623] = 169, + [624] = 170, + [625] = 171, + [626] = 172, + [627] = 173, + [628] = 174, + [629] = 175, + [630] = 176, + [631] = 177, + [632] = 178, + [633] = 179, + [634] = 180, + [635] = 181, + [636] = 182, + [637] = 183, + [638] = 184, + [639] = 185, + [640] = 186, + [641] = 187, + [642] = 188, + [643] = 189, + [644] = 190, + [645] = 191, + [646] = 192, + [647] = 193, + [648] = 194, + [649] = 195, + [650] = 196, + [651] = 197, + [652] = 198, + [653] = 199, + [654] = 200, + [655] = 201, + [656] = 202, + [657] = 203, + [658] = 204, + [659] = 205, + [660] = 206, + [661] = 207, + [662] = 208, + [663] = 209, + [664] = 210, + [665] = 211, + [666] = 212, + [667] = 213, + [668] = 214, + [669] = 215, + [670] = 216, + [671] = 217, + [672] = 218, + [673] = 219, + [674] = 220, + [675] = 221, + [676] = 222, + [677] = 223, + [678] = 224, + [679] = 225, + [680] = 226, + [681] = 227, + [682] = 228, + [683] = 229, + [684] = 230, + [685] = 231, + [686] = 232, + [687] = 233, + [688] = 234, + [689] = 235, + [690] = 236, + [691] = 237, + [692] = 238, + [693] = 239, + [694] = 240, + [695] = 241, + [696] = 242, + [697] = 243, + [698] = 244, + [699] = 245, + [700] = 246, + [701] = 247, + [702] = 248, + [703] = 249, + [704] = 250, + [705] = 251, + [706] = 252, + [707] = 253, + [708] = 254, + [709] = 255, + [710] = 256, + [711] = 257, + [712] = 258, + [713] = 259, + [714] = 260, + [715] = 261, + [716] = 262, + [717] = 263, + [718] = 264, + [719] = 265, + [720] = 266, + [721] = 267, + [722] = 268, + [723] = 269, + [724] = 270, + [725] = 271, + [726] = 272, + [727] = 273, + [728] = 274, + [729] = 275, + [730] = 276, + [731] = 277, + [732] = 278, + [733] = 279, + [734] = 280, + [735] = 281, + [736] = 282, + [737] = 283, + [738] = 284, + [739] = 285, + [740] = 286, + [741] = 287, + [742] = 288, + [743] = 289, + [744] = 290, + [745] = 291, + [746] = 292, + [747] = 293, + [748] = 294, + [749] = 295, + [750] = 296, + [751] = 297, + [752] = 298, + [753] = 299, + [754] = 300, + [755] = 301, + [756] = 302, + [757] = 303, + [758] = 304, + [759] = 305, + [760] = 306, + [761] = 307, + [762] = 308, + [763] = 309, + [764] = 310, + [765] = 311, + [766] = 312, + [767] = 313, + [768] = 314, + [769] = 315, + [770] = 316, + [771] = 317, + [772] = 318, + [773] = 319, + [774] = 320, + [775] = 321, + [776] = 322, + [777] = 323, + [778] = 324, + [779] = 325, + [780] = 326, + [781] = 327, + [782] = 328, + [783] = 329, + [784] = 330, + [785] = 331, + [786] = 332, + [787] = 333, + [788] = 334, + [789] = 335, + [790] = 336, + [791] = 337, + [792] = 338, + [793] = 339, + [794] = 340, + [795] = 341, + [796] = 342, + [797] = 343, + [798] = 344, + [799] = 345, + [800] = 346, + [801] = 347, + [802] = 348, + [803] = 349, + [804] = 350, + [805] = 351, + [806] = 352, + [807] = 353, + [808] = 354, + [809] = 355, + [810] = 356, + [811] = 357, + [812] = 358, + [813] = 359, + [814] = 360, + [815] = 361, + [816] = 362, + [817] = 363, + [818] = 364, + [819] = 365, + [820] = 366, + [821] = 367, + [822] = 368, + [823] = 369, + [824] = 370, + [825] = 371, + [826] = 372, + [827] = 373, + [828] = 374, + [829] = 375, + [830] = 376, + [831] = 377, + [832] = 378, + [833] = 379, + [834] = 380, + [835] = 381, + [836] = 382, + [837] = 383, + [838] = 384, + [839] = 385, + [840] = 386, + [841] = 387, + [842] = 388, + [843] = 389, + [844] = 390, + [845] = 391, + [846] = 392, + [847] = 393, + [848] = 394, + [849] = 395, + [850] = 396, + [851] = 397, + [852] = 398, + [853] = 399, + [854] = 400, + [855] = 401, + [856] = 402, + [857] = 403, + [858] = 404, + [859] = 405, + [860] = 406, + [861] = 407, + [862] = 408, + [863] = 409, + [864] = 410, + [865] = 411, + [866] = 412, + [867] = 413, + [868] = 414, + [869] = 415, + [870] = 416, + [871] = 417, + [872] = 418, + [873] = 419, + [874] = 420, + [875] = 421, + [876] = 422, + [877] = 423, + [878] = 424, + [879] = 425, + [880] = 426, + [881] = 427, + [882] = 428, + [883] = 429, + [884] = 430, + [885] = 431, + [886] = 432, + [887] = 433, + [888] = 434, + [889] = 435, + [890] = 436, + [891] = 437, + [892] = 438, + [893] = 439, + [894] = 440, + [895] = 441, + [896] = 442, + [897] = 443, + [898] = 444, + [899] = 445, + [900] = 446, + [901] = 447, + [902] = 448, + [903] = 449, + [904] = 450, + [905] = 451, + [906] = 452, + [907] = 453, + [908] = 454, + [909] = 455, + [910] = 456, + [911] = 457, + [912] = 458, + [913] = 459, + [914] = 460, + [915] = 461, + [916] = 462, + [917] = 917, + [918] = 463, + [919] = 917, + [920] = 920, + [921] = 921, + [922] = 920, + [923] = 923, + [924] = 923, + [925] = 920, + [926] = 920, + [927] = 920, + [928] = 920, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [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] = 947, + [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] = 966, + [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] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 935, + [997] = 997, + [998] = 998, + [999] = 942, + [1000] = 1000, + [1001] = 1001, + [1002] = 951, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 978, + [1014] = 989, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 933, + [1020] = 1005, + [1021] = 1021, + [1022] = 1008, + [1023] = 1009, + [1024] = 983, + [1025] = 1011, + [1026] = 1026, + [1027] = 1027, + [1028] = 984, + [1029] = 946, + [1030] = 1030, + [1031] = 1018, + [1032] = 957, + [1033] = 1026, + [1034] = 1027, + [1035] = 965, + [1036] = 1030, + [1037] = 1037, + [1038] = 988, + [1039] = 987, + [1040] = 1040, + [1041] = 1041, + [1042] = 1004, + [1043] = 1043, + [1044] = 1044, + [1045] = 1040, + [1046] = 1046, + [1047] = 1041, + [1048] = 1048, + [1049] = 1043, + [1050] = 1050, + [1051] = 994, + [1052] = 1046, + [1053] = 1053, + [1054] = 995, + [1055] = 1055, + [1056] = 1056, + [1057] = 1053, + [1058] = 1058, + [1059] = 1059, + [1060] = 931, + [1061] = 932, + [1062] = 1062, + [1063] = 998, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 934, + [1069] = 1069, + [1070] = 1070, + [1071] = 945, + [1072] = 1072, + [1073] = 1073, + [1074] = 1056, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1066, + [1081] = 1081, + [1082] = 1082, + [1083] = 930, + [1084] = 938, + [1085] = 1085, + [1086] = 939, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1062, + [1091] = 941, + [1092] = 1092, + [1093] = 1064, + [1094] = 1065, + [1095] = 1003, + [1096] = 990, + [1097] = 1067, + [1098] = 1069, + [1099] = 944, + [1100] = 991, + [1101] = 1101, + [1102] = 1070, + [1103] = 1103, + [1104] = 1104, + [1105] = 1073, + [1106] = 947, + [1107] = 967, + [1108] = 1075, + [1109] = 974, + [1110] = 1110, + [1111] = 1076, + [1112] = 949, + [1113] = 997, + [1114] = 1078, + [1115] = 950, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1012, + [1121] = 1121, + [1122] = 952, + [1123] = 1082, + [1124] = 1017, + [1125] = 1016, + [1126] = 929, + [1127] = 1072, + [1128] = 1085, + [1129] = 948, + [1130] = 955, + [1131] = 1088, + [1132] = 1058, + [1133] = 1133, + [1134] = 1077, + [1135] = 937, + [1136] = 958, + [1137] = 1006, + [1138] = 1138, + [1139] = 1037, + [1140] = 961, + [1141] = 1087, + [1142] = 1142, + [1143] = 1010, + [1144] = 962, + [1145] = 1081, + [1146] = 1103, + [1147] = 1104, + [1148] = 1148, + [1149] = 1117, + [1150] = 971, + [1151] = 953, + [1152] = 976, + [1153] = 977, + [1154] = 1154, + [1155] = 986, + [1156] = 1133, + [1157] = 1157, + [1158] = 1158, + [1159] = 1138, + [1160] = 1160, + [1161] = 1161, + [1162] = 1148, + [1163] = 1044, + [1164] = 1101, + [1165] = 970, + [1166] = 1160, + [1167] = 1167, + [1168] = 1154, + [1169] = 1169, + [1170] = 972, + [1171] = 973, + [1172] = 992, + [1173] = 1173, + [1174] = 1169, + [1175] = 1021, + [1176] = 975, + [1177] = 959, + [1178] = 1092, + [1179] = 1048, + [1180] = 1050, + [1181] = 1110, + [1182] = 1157, + [1183] = 960, + [1184] = 979, + [1185] = 940, + [1186] = 943, + [1187] = 1187, + [1188] = 954, + [1189] = 980, + [1190] = 1173, + [1191] = 964, + [1192] = 936, + [1193] = 982, + [1194] = 968, + [1195] = 1059, + [1196] = 1116, + [1197] = 1001, + [1198] = 981, + [1199] = 1167, + [1200] = 1118, + [1201] = 1119, + [1202] = 1000, + [1203] = 963, + [1204] = 1121, + [1205] = 1007, + [1206] = 1079, + [1207] = 1142, + [1208] = 985, + [1209] = 1015, + [1210] = 1158, + [1211] = 1089, + [1212] = 1187, + [1213] = 956, + [1214] = 1214, + [1215] = 993, + [1216] = 1055, + [1217] = 1161, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1219, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1245, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1246, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1247, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1222, + [1278] = 1278, + [1279] = 1223, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1249, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1224, + [1293] = 1250, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1225, + [1298] = 1298, + [1299] = 1299, + [1300] = 1253, + [1301] = 1220, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1255, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1256, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1261, + [1333] = 1264, + [1334] = 1334, + [1335] = 1335, + [1336] = 1257, + [1337] = 1275, + [1338] = 1226, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1295, + [1343] = 1343, + [1344] = 1305, + [1345] = 1345, + [1346] = 1346, + [1347] = 1322, + [1348] = 1259, + [1349] = 1325, + [1350] = 1350, + [1351] = 1326, + [1352] = 1334, + [1353] = 1353, + [1354] = 1339, + [1355] = 1341, + [1356] = 1343, + [1357] = 1346, + [1358] = 1358, + [1359] = 1260, + [1360] = 1353, + [1361] = 1361, + [1362] = 1362, + [1363] = 1362, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1365, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1367, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1370, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1373, + [1394] = 1394, + [1395] = 1395, + [1396] = 1262, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1377, + [1402] = 1402, + [1403] = 1263, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1266, + [1437] = 1437, + [1438] = 1438, + [1439] = 1379, + [1440] = 1440, + [1441] = 1441, + [1442] = 1380, + [1443] = 1443, + [1444] = 1444, + [1445] = 1381, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1382, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1268, + [1456] = 1384, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1385, + [1461] = 1461, + [1462] = 1269, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1270, + [1468] = 1468, + [1469] = 1388, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1227, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1271, + [1480] = 1480, + [1481] = 1481, + [1482] = 1390, + [1483] = 1483, + [1484] = 1272, + [1485] = 1485, + [1486] = 1391, + [1487] = 1487, + [1488] = 1488, + [1489] = 1228, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1394, + [1494] = 1494, + [1495] = 1495, + [1496] = 1276, + [1497] = 1497, + [1498] = 1498, + [1499] = 1230, + [1500] = 1500, + [1501] = 1399, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1280, + [1507] = 1507, + [1508] = 1282, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1402, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1404, + [1519] = 1519, + [1520] = 1520, + [1521] = 1405, + [1522] = 1522, + [1523] = 1523, + [1524] = 1406, + [1525] = 1525, + [1526] = 1284, + [1527] = 1229, + [1528] = 1528, + [1529] = 1407, + [1530] = 1232, + [1531] = 1531, + [1532] = 1233, + [1533] = 1533, + [1534] = 1242, + [1535] = 1408, + [1536] = 1248, + [1537] = 1537, + [1538] = 1410, + [1539] = 1254, + [1540] = 1540, + [1541] = 1411, + [1542] = 1542, + [1543] = 1265, + [1544] = 1412, + [1545] = 1545, + [1546] = 1274, + [1547] = 1285, + [1548] = 1231, + [1549] = 1549, + [1550] = 1278, + [1551] = 1551, + [1552] = 1281, + [1553] = 1553, + [1554] = 1286, + [1555] = 1288, + [1556] = 1413, + [1557] = 1294, + [1558] = 1287, + [1559] = 1559, + [1560] = 1415, + [1561] = 1298, + [1562] = 1302, + [1563] = 1416, + [1564] = 1306, + [1565] = 1313, + [1566] = 1566, + [1567] = 1289, + [1568] = 1316, + [1569] = 1318, + [1570] = 1319, + [1571] = 1320, + [1572] = 1290, + [1573] = 1418, + [1574] = 1574, + [1575] = 1575, + [1576] = 1328, + [1577] = 1291, + [1578] = 1419, + [1579] = 1335, + [1580] = 1580, + [1581] = 1420, + [1582] = 1340, + [1583] = 1583, + [1584] = 1422, + [1585] = 1345, + [1586] = 1586, + [1587] = 1350, + [1588] = 1424, + [1589] = 1589, + [1590] = 1358, + [1591] = 1361, + [1592] = 1364, + [1593] = 1366, + [1594] = 1368, + [1595] = 1595, + [1596] = 1371, + [1597] = 1372, + [1598] = 1374, + [1599] = 1375, + [1600] = 1600, + [1601] = 1378, + [1602] = 1383, + [1603] = 1386, + [1604] = 1387, + [1605] = 1605, + [1606] = 1606, + [1607] = 1392, + [1608] = 1608, + [1609] = 1395, + [1610] = 1397, + [1611] = 1611, + [1612] = 1400, + [1613] = 1613, + [1614] = 1425, + [1615] = 1409, + [1616] = 1616, + [1617] = 1427, + [1618] = 1414, + [1619] = 1428, + [1620] = 1620, + [1621] = 1417, + [1622] = 1429, + [1623] = 1623, + [1624] = 1430, + [1625] = 1421, + [1626] = 1626, + [1627] = 1423, + [1628] = 1431, + [1629] = 1629, + [1630] = 1426, + [1631] = 1432, + [1632] = 1632, + [1633] = 1433, + [1634] = 1438, + [1635] = 1434, + [1636] = 1636, + [1637] = 1443, + [1638] = 1447, + [1639] = 1639, + [1640] = 1450, + [1641] = 1437, + [1642] = 1452, + [1643] = 1453, + [1644] = 1644, + [1645] = 1440, + [1646] = 1457, + [1647] = 1647, + [1648] = 1459, + [1649] = 1649, + [1650] = 1441, + [1651] = 1466, + [1652] = 1444, + [1653] = 1473, + [1654] = 1654, + [1655] = 1296, + [1656] = 1483, + [1657] = 1446, + [1658] = 1234, + [1659] = 1659, + [1660] = 1448, + [1661] = 1487, + [1662] = 1662, + [1663] = 1299, + [1664] = 1664, + [1665] = 1235, + [1666] = 1494, + [1667] = 1451, + [1668] = 1497, + [1669] = 1669, + [1670] = 1236, + [1671] = 1303, + [1672] = 1454, + [1673] = 1503, + [1674] = 1674, + [1675] = 1304, + [1676] = 1676, + [1677] = 1237, + [1678] = 1514, + [1679] = 1679, + [1680] = 1458, + [1681] = 1522, + [1682] = 1307, + [1683] = 1683, + [1684] = 1238, + [1685] = 1525, + [1686] = 1308, + [1687] = 1528, + [1688] = 1688, + [1689] = 1531, + [1690] = 1533, + [1691] = 1461, + [1692] = 1692, + [1693] = 1463, + [1694] = 1537, + [1695] = 1309, + [1696] = 1696, + [1697] = 1540, + [1698] = 1464, + [1699] = 1542, + [1700] = 1465, + [1701] = 1701, + [1702] = 1545, + [1703] = 1310, + [1704] = 1549, + [1705] = 1468, + [1706] = 1553, + [1707] = 1470, + [1708] = 1559, + [1709] = 1709, + [1710] = 1471, + [1711] = 1566, + [1712] = 1472, + [1713] = 1713, + [1714] = 1311, + [1715] = 1574, + [1716] = 1312, + [1717] = 1575, + [1718] = 1718, + [1719] = 1474, + [1720] = 1720, + [1721] = 1580, + [1722] = 1476, + [1723] = 1583, + [1724] = 1724, + [1725] = 1477, + [1726] = 1586, + [1727] = 1478, + [1728] = 1728, + [1729] = 1589, + [1730] = 1730, + [1731] = 1480, + [1732] = 1732, + [1733] = 1481, + [1734] = 1595, + [1735] = 1735, + [1736] = 1314, + [1737] = 1600, + [1738] = 1738, + [1739] = 1239, + [1740] = 1605, + [1741] = 1741, + [1742] = 1606, + [1743] = 1485, + [1744] = 1240, + [1745] = 1608, + [1746] = 1746, + [1747] = 1611, + [1748] = 1317, + [1749] = 1613, + [1750] = 1750, + [1751] = 1488, + [1752] = 1616, + [1753] = 1491, + [1754] = 1620, + [1755] = 1492, + [1756] = 1241, + [1757] = 1757, + [1758] = 1623, + [1759] = 1321, + [1760] = 1626, + [1761] = 1495, + [1762] = 1629, + [1763] = 1763, + [1764] = 1632, + [1765] = 1636, + [1766] = 1766, + [1767] = 1767, + [1768] = 1639, + [1769] = 1498, + [1770] = 1770, + [1771] = 1324, + [1772] = 1649, + [1773] = 1773, + [1774] = 1500, + [1775] = 1502, + [1776] = 1327, + [1777] = 1654, + [1778] = 1504, + [1779] = 1779, + [1780] = 1505, + [1781] = 1659, + [1782] = 1243, + [1783] = 1329, + [1784] = 1662, + [1785] = 1507, + [1786] = 1664, + [1787] = 1787, + [1788] = 1244, + [1789] = 1509, + [1790] = 1669, + [1791] = 1510, + [1792] = 1792, + [1793] = 1674, + [1794] = 1511, + [1795] = 1676, + [1796] = 1796, + [1797] = 1679, + [1798] = 1798, + [1799] = 1330, + [1800] = 1683, + [1801] = 1513, + [1802] = 1688, + [1803] = 1803, + [1804] = 1692, + [1805] = 1331, + [1806] = 1515, + [1807] = 1696, + [1808] = 1516, + [1809] = 1517, + [1810] = 1701, + [1811] = 1811, + [1812] = 1519, + [1813] = 1520, + [1814] = 1709, + [1815] = 1815, + [1816] = 1713, + [1817] = 1718, + [1818] = 1523, + [1819] = 1720, + [1820] = 1724, + [1821] = 1728, + [1822] = 1730, + [1823] = 1732, + [1824] = 1735, + [1825] = 1738, + [1826] = 1741, + [1827] = 1746, + [1828] = 1750, + [1829] = 1757, + [1830] = 1763, + [1831] = 1766, + [1832] = 1767, + [1833] = 1770, + [1834] = 1773, + [1835] = 1779, + [1836] = 1787, + [1837] = 1792, + [1838] = 1796, + [1839] = 1798, + [1840] = 1803, + [1841] = 1811, + [1842] = 1815, + [1843] = 1490, + [1844] = 1551, + [1845] = 1845, + [1846] = 1845, + [1847] = 1847, + [1848] = 1848, + [1849] = 1848, + [1850] = 1847, + [1851] = 1847, + [1852] = 1848, + [1853] = 1848, + [1854] = 1848, + [1855] = 1847, + [1856] = 1847, + [1857] = 1847, + [1858] = 1848, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1861, + [1863] = 1863, + [1864] = 1863, + [1865] = 1865, + [1866] = 1860, + [1867] = 1863, + [1868] = 1863, + [1869] = 1869, + [1870] = 1865, + [1871] = 1860, + [1872] = 1860, + [1873] = 1863, + [1874] = 1860, + [1875] = 1869, + [1876] = 1869, + [1877] = 1877, + [1878] = 1865, + [1879] = 1865, + [1880] = 1869, + [1881] = 1881, + [1882] = 1877, + [1883] = 1877, + [1884] = 1881, + [1885] = 1877, + [1886] = 1881, + [1887] = 1881, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1889, + [1893] = 1890, + [1894] = 1894, + [1895] = 1895, + [1896] = 1889, + [1897] = 1897, + [1898] = 1890, + [1899] = 1899, + [1900] = 1900, + [1901] = 1897, + [1902] = 1899, + [1903] = 1903, + [1904] = 1904, + [1905] = 1865, + [1906] = 1904, + [1907] = 1903, + [1908] = 1900, + [1909] = 1904, + [1910] = 1894, + [1911] = 1895, + [1912] = 1897, + [1913] = 1899, + [1914] = 1903, + [1915] = 1891, + [1916] = 1890, + [1917] = 1900, + [1918] = 1904, + [1919] = 1894, + [1920] = 1895, + [1921] = 1897, + [1922] = 1899, + [1923] = 1903, + [1924] = 1891, + [1925] = 1889, + [1926] = 1890, + [1927] = 1900, + [1928] = 1904, + [1929] = 1894, + [1930] = 1895, + [1931] = 1897, + [1932] = 1899, + [1933] = 1903, + [1934] = 1891, + [1935] = 1889, + [1936] = 1890, + [1937] = 1900, + [1938] = 1904, + [1939] = 1894, + [1940] = 1895, + [1941] = 1897, + [1942] = 1899, + [1943] = 1903, + [1944] = 1891, + [1945] = 1889, + [1946] = 1890, + [1947] = 1900, + [1948] = 1894, + [1949] = 1895, + [1950] = 1904, + [1951] = 1894, + [1952] = 1895, + [1953] = 1897, + [1954] = 1899, + [1955] = 1903, + [1956] = 1891, + [1957] = 1889, + [1958] = 1890, + [1959] = 1900, + [1960] = 1891, + [1961] = 1904, + [1962] = 1894, + [1963] = 1895, + [1964] = 1897, + [1965] = 1899, + [1966] = 1903, + [1967] = 1891, + [1968] = 1889, + [1969] = 1890, + [1970] = 1900, + [1971] = 1904, + [1972] = 1894, + [1973] = 1895, + [1974] = 1897, + [1975] = 1899, + [1976] = 1903, + [1977] = 1891, + [1978] = 1889, + [1979] = 1890, + [1980] = 1900, + [1981] = 1904, + [1982] = 1894, + [1983] = 1895, + [1984] = 1897, + [1985] = 1899, + [1986] = 1903, + [1987] = 1891, + [1988] = 1889, + [1989] = 1900, + [1990] = 1869, + [1991] = 1991, + [1992] = 1877, + [1993] = 1860, + [1994] = 1865, + [1995] = 1869, + [1996] = 1881, + [1997] = 1869, + [1998] = 1998, + [1999] = 1865, + [2000] = 1881, + [2001] = 1865, + [2002] = 1863, + [2003] = 1865, + [2004] = 1877, + [2005] = 1865, + [2006] = 1861, + [2007] = 1860, + [2008] = 1877, + [2009] = 1877, + [2010] = 2010, + [2011] = 1860, + [2012] = 1865, + [2013] = 2010, + [2014] = 1881, + [2015] = 1881, + [2016] = 1877, + [2017] = 1881, + [2018] = 1860, + [2019] = 1881, + [2020] = 1877, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2025, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 1998, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2027, + [2036] = 2036, + [2037] = 2037, + [2038] = 2023, + [2039] = 2024, + [2040] = 2040, + [2041] = 2028, + [2042] = 2033, + [2043] = 1861, + [2044] = 1881, + [2045] = 2037, + [2046] = 2034, + [2047] = 2040, + [2048] = 2037, + [2049] = 2049, + [2050] = 2050, + [2051] = 1865, + [2052] = 2022, + [2053] = 2036, + [2054] = 2040, + [2055] = 2055, + [2056] = 2031, + [2057] = 2022, + [2058] = 2055, + [2059] = 2059, + [2060] = 2049, + [2061] = 2022, + [2062] = 2059, + [2063] = 1861, + [2064] = 2064, + [2065] = 2029, + [2066] = 2029, + [2067] = 2032, + [2068] = 2033, + [2069] = 2034, + [2070] = 2027, + [2071] = 2064, + [2072] = 2029, + [2073] = 2023, + [2074] = 2032, + [2075] = 2024, + [2076] = 2064, + [2077] = 2025, + [2078] = 2027, + [2079] = 2028, + [2080] = 2055, + [2081] = 2037, + [2082] = 2059, + [2083] = 2049, + [2084] = 2010, + [2085] = 2036, + [2086] = 2040, + [2087] = 2028, + [2088] = 2055, + [2089] = 2049, + [2090] = 2059, + [2091] = 2025, + [2092] = 2023, + [2093] = 2036, + [2094] = 2031, + [2095] = 2032, + [2096] = 2033, + [2097] = 2034, + [2098] = 2024, + [2099] = 1877, + [2100] = 2064, + [2101] = 2031, + [2102] = 2102, + [2103] = 1877, + [2104] = 1881, + [2105] = 1863, + [2106] = 2050, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2141, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2143, + [2180] = 2180, + [2181] = 2144, + [2182] = 2182, + [2183] = 2145, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2146, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2148, + [2194] = 2194, + [2195] = 2150, + [2196] = 2156, + [2197] = 2197, + [2198] = 2198, + [2199] = 2110, + [2200] = 2200, + [2201] = 2201, + [2202] = 2173, + [2203] = 2157, + [2204] = 2158, + [2205] = 2174, + [2206] = 2175, + [2207] = 2207, + [2208] = 2208, + [2209] = 2178, + [2210] = 2159, + [2211] = 2211, + [2212] = 2185, + [2213] = 2213, + [2214] = 2189, + [2215] = 2215, + [2216] = 2116, + [2217] = 2161, + [2218] = 2218, + [2219] = 2194, + [2220] = 2163, + [2221] = 2221, + [2222] = 2117, + [2223] = 2223, + [2224] = 2118, + [2225] = 2198, + [2226] = 2120, + [2227] = 2122, + [2228] = 2228, + [2229] = 2164, + [2230] = 2200, + [2231] = 2165, + [2232] = 2232, + [2233] = 2233, + [2234] = 2207, + [2235] = 2166, + [2236] = 2213, + [2237] = 2125, + [2238] = 2167, + [2239] = 2223, + [2240] = 2171, + [2241] = 2228, + [2242] = 2232, + [2243] = 2172, + [2244] = 2130, + [2245] = 2245, + [2246] = 2246, + [2247] = 2147, + [2248] = 2248, + [2249] = 2249, + [2250] = 2233, + [2251] = 2180, + [2252] = 2149, + [2253] = 2182, + [2254] = 2186, + [2255] = 2190, + [2256] = 2112, + [2257] = 2191, + [2258] = 2110, + [2259] = 2112, + [2260] = 2151, + [2261] = 2113, + [2262] = 2116, + [2263] = 2117, + [2264] = 2118, + [2265] = 2120, + [2266] = 2122, + [2267] = 2125, + [2268] = 2153, + [2269] = 2127, + [2270] = 2131, + [2271] = 2132, + [2272] = 2134, + [2273] = 2135, + [2274] = 2154, + [2275] = 2136, + [2276] = 2137, + [2277] = 2140, + [2278] = 2141, + [2279] = 2155, + [2280] = 2143, + [2281] = 2144, + [2282] = 2113, + [2283] = 2145, + [2284] = 2284, + [2285] = 2146, + [2286] = 2148, + [2287] = 2150, + [2288] = 2182, + [2289] = 2156, + [2290] = 2157, + [2291] = 2158, + [2292] = 2159, + [2293] = 2161, + [2294] = 2294, + [2295] = 2163, + [2296] = 2164, + [2297] = 2165, + [2298] = 2166, + [2299] = 2167, + [2300] = 2186, + [2301] = 2171, + [2302] = 2172, + [2303] = 2173, + [2304] = 2174, + [2305] = 2190, + [2306] = 2175, + [2307] = 2178, + [2308] = 2191, + [2309] = 2185, + [2310] = 2310, + [2311] = 2189, + [2312] = 2194, + [2313] = 2198, + [2314] = 2314, + [2315] = 2200, + [2316] = 2207, + [2317] = 2213, + [2318] = 2223, + [2319] = 2228, + [2320] = 2232, + [2321] = 2110, + [2322] = 2233, + [2323] = 2147, + [2324] = 2149, + [2325] = 2151, + [2326] = 2153, + [2327] = 2154, + [2328] = 2155, + [2329] = 2329, + [2330] = 2284, + [2331] = 2112, + [2332] = 2113, + [2333] = 2333, + [2334] = 2116, + [2335] = 2117, + [2336] = 2118, + [2337] = 2337, + [2338] = 2120, + [2339] = 2339, + [2340] = 2340, + [2341] = 2122, + [2342] = 2342, + [2343] = 2343, + [2344] = 2125, + [2345] = 2127, + [2346] = 2346, + [2347] = 2347, + [2348] = 2131, + [2349] = 2132, + [2350] = 2350, + [2351] = 2134, + [2352] = 2135, + [2353] = 2136, + [2354] = 2354, + [2355] = 2355, + [2356] = 2137, + [2357] = 2140, + [2358] = 2358, + [2359] = 2359, + [2360] = 2360, + [2361] = 2141, + [2362] = 2143, + [2363] = 2363, + [2364] = 2144, + [2365] = 2365, + [2366] = 2145, + [2367] = 2367, + [2368] = 2146, + [2369] = 2369, + [2370] = 2148, + [2371] = 2150, + [2372] = 2156, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2157, + [2378] = 2158, + [2379] = 2159, + [2380] = 2161, + [2381] = 2381, + [2382] = 2163, + [2383] = 2164, + [2384] = 2384, + [2385] = 2165, + [2386] = 2386, + [2387] = 2166, + [2388] = 2167, + [2389] = 2127, + [2390] = 2284, + [2391] = 2171, + [2392] = 2131, + [2393] = 2172, + [2394] = 2132, + [2395] = 2395, + [2396] = 2173, + [2397] = 2397, + [2398] = 2134, + [2399] = 2174, + [2400] = 2400, + [2401] = 2107, + [2402] = 2175, + [2403] = 2403, + [2404] = 2178, + [2405] = 2135, + [2406] = 2406, + [2407] = 2185, + [2408] = 2408, + [2409] = 2189, + [2410] = 2194, + [2411] = 2198, + [2412] = 2412, + [2413] = 2200, + [2414] = 2207, + [2415] = 2213, + [2416] = 2223, + [2417] = 2228, + [2418] = 2232, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2233, + [2424] = 2136, + [2425] = 2130, + [2426] = 2245, + [2427] = 2246, + [2428] = 2248, + [2429] = 2249, + [2430] = 2180, + [2431] = 2182, + [2432] = 2186, + [2433] = 2190, + [2434] = 2191, + [2435] = 2110, + [2436] = 2112, + [2437] = 2113, + [2438] = 2116, + [2439] = 2117, + [2440] = 2118, + [2441] = 2120, + [2442] = 2122, + [2443] = 2125, + [2444] = 2127, + [2445] = 2131, + [2446] = 2132, + [2447] = 2134, + [2448] = 2135, + [2449] = 2136, + [2450] = 2137, + [2451] = 2140, + [2452] = 2141, + [2453] = 2143, + [2454] = 2144, + [2455] = 2145, + [2456] = 2146, + [2457] = 2148, + [2458] = 2150, + [2459] = 2156, + [2460] = 2157, + [2461] = 2158, + [2462] = 2159, + [2463] = 2161, + [2464] = 2163, + [2465] = 2164, + [2466] = 2165, + [2467] = 2166, + [2468] = 2167, + [2469] = 2171, + [2470] = 2172, + [2471] = 2173, + [2472] = 2174, + [2473] = 2175, + [2474] = 2178, + [2475] = 2185, + [2476] = 2189, + [2477] = 2194, + [2478] = 2198, + [2479] = 2200, + [2480] = 2207, + [2481] = 2213, + [2482] = 2223, + [2483] = 2228, + [2484] = 2232, + [2485] = 2233, + [2486] = 2147, + [2487] = 2149, + [2488] = 2151, + [2489] = 2153, + [2490] = 2154, + [2491] = 2155, + [2492] = 2284, + [2493] = 2147, + [2494] = 2130, + [2495] = 2245, + [2496] = 2246, + [2497] = 2248, + [2498] = 2249, + [2499] = 2180, + [2500] = 2182, + [2501] = 2186, + [2502] = 2190, + [2503] = 2191, + [2504] = 2110, + [2505] = 2112, + [2506] = 2113, + [2507] = 2116, + [2508] = 2117, + [2509] = 2191, + [2510] = 2120, + [2511] = 2122, + [2512] = 2125, + [2513] = 2127, + [2514] = 2131, + [2515] = 2132, + [2516] = 2134, + [2517] = 2135, + [2518] = 2136, + [2519] = 2137, + [2520] = 2140, + [2521] = 2141, + [2522] = 2143, + [2523] = 2144, + [2524] = 2145, + [2525] = 2146, + [2526] = 2148, + [2527] = 2150, + [2528] = 2156, + [2529] = 2157, + [2530] = 2158, + [2531] = 2159, + [2532] = 2161, + [2533] = 2163, + [2534] = 2164, + [2535] = 2165, + [2536] = 2166, + [2537] = 2167, + [2538] = 2171, + [2539] = 2172, + [2540] = 2173, + [2541] = 2174, + [2542] = 2175, + [2543] = 2178, + [2544] = 2185, + [2545] = 2189, + [2546] = 2194, + [2547] = 2198, + [2548] = 2200, + [2549] = 2207, + [2550] = 2213, + [2551] = 2223, + [2552] = 2228, + [2553] = 2232, + [2554] = 2233, + [2555] = 2147, + [2556] = 2149, + [2557] = 2151, + [2558] = 2153, + [2559] = 2154, + [2560] = 2155, + [2561] = 2284, + [2562] = 2149, + [2563] = 2130, + [2564] = 2245, + [2565] = 2246, + [2566] = 2248, + [2567] = 2249, + [2568] = 2180, + [2569] = 2182, + [2570] = 2186, + [2571] = 2190, + [2572] = 2191, + [2573] = 2110, + [2574] = 2112, + [2575] = 2113, + [2576] = 2116, + [2577] = 2117, + [2578] = 2118, + [2579] = 2120, + [2580] = 2122, + [2581] = 2125, + [2582] = 2127, + [2583] = 2131, + [2584] = 2132, + [2585] = 2134, + [2586] = 2135, + [2587] = 2136, + [2588] = 2137, + [2589] = 2140, + [2590] = 2141, + [2591] = 2143, + [2592] = 2144, + [2593] = 2145, + [2594] = 2146, + [2595] = 2148, + [2596] = 2150, + [2597] = 2156, + [2598] = 2157, + [2599] = 2158, + [2600] = 2159, + [2601] = 2161, + [2602] = 2163, + [2603] = 2164, + [2604] = 2165, + [2605] = 2166, + [2606] = 2167, + [2607] = 2171, + [2608] = 2172, + [2609] = 2173, + [2610] = 2174, + [2611] = 2175, + [2612] = 2178, + [2613] = 2185, + [2614] = 2189, + [2615] = 2194, + [2616] = 2198, + [2617] = 2200, + [2618] = 2207, + [2619] = 2213, + [2620] = 2223, + [2621] = 2228, + [2622] = 2232, + [2623] = 2233, + [2624] = 2147, + [2625] = 2149, + [2626] = 2151, + [2627] = 2153, + [2628] = 2154, + [2629] = 2155, + [2630] = 2284, + [2631] = 2151, + [2632] = 2130, + [2633] = 2245, + [2634] = 2246, + [2635] = 2248, + [2636] = 2249, + [2637] = 2180, + [2638] = 2182, + [2639] = 2186, + [2640] = 2190, + [2641] = 2191, + [2642] = 2110, + [2643] = 2112, + [2644] = 2113, + [2645] = 2116, + [2646] = 2117, + [2647] = 2118, + [2648] = 2120, + [2649] = 2122, + [2650] = 2125, + [2651] = 2127, + [2652] = 2131, + [2653] = 2132, + [2654] = 2134, + [2655] = 2135, + [2656] = 2136, + [2657] = 2137, + [2658] = 2140, + [2659] = 2141, + [2660] = 2143, + [2661] = 2144, + [2662] = 2145, + [2663] = 2146, + [2664] = 2148, + [2665] = 2150, + [2666] = 2156, + [2667] = 2157, + [2668] = 2158, + [2669] = 2159, + [2670] = 2161, + [2671] = 2163, + [2672] = 2164, + [2673] = 2165, + [2674] = 2166, + [2675] = 2167, + [2676] = 2171, + [2677] = 2172, + [2678] = 2173, + [2679] = 2174, + [2680] = 2175, + [2681] = 2178, + [2682] = 2185, + [2683] = 2189, + [2684] = 2194, + [2685] = 2198, + [2686] = 2200, + [2687] = 2207, + [2688] = 2213, + [2689] = 2223, + [2690] = 2228, + [2691] = 2232, + [2692] = 2233, + [2693] = 2147, + [2694] = 2149, + [2695] = 2151, + [2696] = 2153, + [2697] = 2154, + [2698] = 2155, + [2699] = 2284, + [2700] = 2153, + [2701] = 2701, + [2702] = 2137, + [2703] = 2140, + [2704] = 2154, + [2705] = 2705, + [2706] = 2155, + [2707] = 2284, + [2708] = 2130, + [2709] = 2709, + [2710] = 2710, + [2711] = 2245, + [2712] = 2712, + [2713] = 2246, + [2714] = 2419, + [2715] = 2386, + [2716] = 2716, + [2717] = 2121, + [2718] = 2126, + [2719] = 2139, + [2720] = 2152, + [2721] = 2160, + [2722] = 2360, + [2723] = 2376, + [2724] = 2395, + [2725] = 2422, + [2726] = 2726, + [2727] = 2367, + [2728] = 2373, + [2729] = 2384, + [2730] = 2397, + [2731] = 2400, + [2732] = 2115, + [2733] = 2162, + [2734] = 2169, + [2735] = 2177, + [2736] = 2726, + [2737] = 2421, + [2738] = 2705, + [2739] = 2710, + [2740] = 2740, + [2741] = 2201, + [2742] = 2138, + [2743] = 2381, + [2744] = 2403, + [2745] = 2406, + [2746] = 2408, + [2747] = 2412, + [2748] = 2337, + [2749] = 2343, + [2750] = 2346, + [2751] = 2355, + [2752] = 2752, + [2753] = 2753, + [2754] = 2754, + [2755] = 2109, + [2756] = 2114, + [2757] = 2119, + [2758] = 2124, + [2759] = 2128, + [2760] = 2310, + [2761] = 2329, + [2762] = 2333, + [2763] = 2339, + [2764] = 2342, + [2765] = 2347, + [2766] = 2350, + [2767] = 2354, + [2768] = 2701, + [2769] = 2712, + [2770] = 2770, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, + [2774] = 2774, + [2775] = 2108, + [2776] = 2111, + [2777] = 2176, + [2778] = 2188, + [2779] = 2192, + [2780] = 2197, + [2781] = 2208, + [2782] = 2211, + [2783] = 2215, + [2784] = 2218, + [2785] = 2221, + [2786] = 2184, + [2787] = 2340, + [2788] = 2363, + [2789] = 2365, + [2790] = 2369, + [2791] = 2709, + [2792] = 2792, + [2793] = 2123, + [2794] = 2129, + [2795] = 2133, + [2796] = 2359, + [2797] = 2797, + [2798] = 2245, + [2799] = 2770, + [2800] = 2248, + [2801] = 2249, + [2802] = 2771, + [2803] = 2246, + [2804] = 2180, + [2805] = 2130, + [2806] = 2752, + [2807] = 2245, + [2808] = 2246, + [2809] = 2753, + [2810] = 2248, + [2811] = 2248, + [2812] = 2740, + [2813] = 2754, + [2814] = 2772, + [2815] = 2249, + [2816] = 2180, + [2817] = 2817, + [2818] = 2773, + [2819] = 2792, + [2820] = 2182, + [2821] = 2186, + [2822] = 2774, + [2823] = 2716, + [2824] = 2190, + [2825] = 2249, + [2826] = 2797, + [2827] = 2118, + [2828] = 2828, + [2829] = 2828, + [2830] = 2828, + [2831] = 2828, + [2832] = 2828, + [2833] = 2828, + [2834] = 2828, + [2835] = 2828, + [2836] = 2828, + [2837] = 2828, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 2863, + [2892] = 2865, + [2893] = 2866, + [2894] = 2869, + [2895] = 2870, + [2896] = 2896, + [2897] = 2872, + [2898] = 2898, + [2899] = 2899, + [2900] = 2876, + [2901] = 2879, + [2902] = 2881, + [2903] = 2882, + [2904] = 2885, + [2905] = 2886, + [2906] = 2906, + [2907] = 2907, + [2908] = 2890, + [2909] = 2909, + [2910] = 2896, + [2911] = 2898, + [2912] = 2899, + [2913] = 2906, + [2914] = 2907, + [2915] = 2909, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 2936, + [2937] = 2937, + [2938] = 2938, + [2939] = 2939, + [2940] = 2940, + [2941] = 2840, + [2942] = 2841, + [2943] = 2943, + [2944] = 2848, + [2945] = 2945, + [2946] = 2849, + [2947] = 2850, + [2948] = 2851, + [2949] = 2949, + [2950] = 2950, + [2951] = 2852, + [2952] = 2952, + [2953] = 2854, + [2954] = 2855, + [2955] = 2857, + [2956] = 2858, + [2957] = 2860, + [2958] = 2861, + [2959] = 2862, + [2960] = 2864, + [2961] = 2848, + [2962] = 2867, + [2963] = 2868, + [2964] = 2871, + [2965] = 2873, + [2966] = 2874, + [2967] = 2875, + [2968] = 2968, + [2969] = 2878, + [2970] = 2880, + [2971] = 2883, + [2972] = 2884, + [2973] = 2973, + [2974] = 2887, + [2975] = 2888, + [2976] = 2889, + [2977] = 2863, + [2978] = 2865, + [2979] = 2866, + [2980] = 2869, + [2981] = 2870, + [2982] = 2872, + [2983] = 2876, + [2984] = 2879, + [2985] = 2881, + [2986] = 2882, + [2987] = 2885, + [2988] = 2886, + [2989] = 2890, + [2990] = 2896, + [2991] = 2898, + [2992] = 2899, + [2993] = 2906, + [2994] = 2907, + [2995] = 2909, + [2996] = 2916, + [2997] = 2917, + [2998] = 2918, + [2999] = 2919, + [3000] = 2920, + [3001] = 2921, + [3002] = 2922, + [3003] = 2923, + [3004] = 2925, + [3005] = 2926, + [3006] = 2927, + [3007] = 2928, + [3008] = 2929, + [3009] = 2930, + [3010] = 2931, + [3011] = 2932, + [3012] = 2933, + [3013] = 2934, + [3014] = 2935, + [3015] = 2936, + [3016] = 2938, + [3017] = 2939, + [3018] = 2840, + [3019] = 2841, + [3020] = 2848, + [3021] = 2849, + [3022] = 2850, + [3023] = 2851, + [3024] = 2852, + [3025] = 2854, + [3026] = 2855, + [3027] = 2857, + [3028] = 2858, + [3029] = 2860, + [3030] = 3030, + [3031] = 2861, + [3032] = 2862, + [3033] = 3033, + [3034] = 2864, + [3035] = 3035, + [3036] = 2867, + [3037] = 2868, + [3038] = 2871, + [3039] = 3039, + [3040] = 2873, + [3041] = 2874, + [3042] = 2875, + [3043] = 2968, + [3044] = 2878, + [3045] = 2880, + [3046] = 2883, + [3047] = 2884, + [3048] = 3048, + [3049] = 2887, + [3050] = 2888, + [3051] = 2889, + [3052] = 3052, + [3053] = 2863, + [3054] = 2865, + [3055] = 2866, + [3056] = 2869, + [3057] = 2870, + [3058] = 2872, + [3059] = 2876, + [3060] = 2879, + [3061] = 2881, + [3062] = 2882, + [3063] = 2885, + [3064] = 2886, + [3065] = 2890, + [3066] = 3066, + [3067] = 2896, + [3068] = 2898, + [3069] = 2899, + [3070] = 2906, + [3071] = 2907, + [3072] = 2909, + [3073] = 3073, + [3074] = 2916, + [3075] = 2917, + [3076] = 2918, + [3077] = 2919, + [3078] = 2920, + [3079] = 2921, + [3080] = 2922, + [3081] = 2923, + [3082] = 2925, + [3083] = 2926, + [3084] = 2927, + [3085] = 3085, + [3086] = 2928, + [3087] = 2929, + [3088] = 2930, + [3089] = 2931, + [3090] = 2932, + [3091] = 2933, + [3092] = 2934, + [3093] = 2935, + [3094] = 2936, + [3095] = 2938, + [3096] = 2939, + [3097] = 3097, + [3098] = 3098, + [3099] = 2856, + [3100] = 2859, + [3101] = 3101, + [3102] = 3102, + [3103] = 2916, + [3104] = 2917, + [3105] = 2918, + [3106] = 2919, + [3107] = 2920, + [3108] = 2921, + [3109] = 2922, + [3110] = 2923, + [3111] = 2925, + [3112] = 2926, + [3113] = 2927, + [3114] = 2928, + [3115] = 2929, + [3116] = 2930, + [3117] = 2931, + [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] = 2849, + [3132] = 2850, + [3133] = 2851, + [3134] = 2852, + [3135] = 3135, + [3136] = 2840, + [3137] = 3137, + [3138] = 3138, + [3139] = 2841, + [3140] = 3140, + [3141] = 3141, + [3142] = 2842, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3149, + [3150] = 3150, + [3151] = 2932, + [3152] = 2933, + [3153] = 2934, + [3154] = 2935, + [3155] = 2936, + [3156] = 2938, + [3157] = 3157, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 3167, + [3168] = 3168, + [3169] = 3169, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 2854, + [3174] = 2855, + [3175] = 2857, + [3176] = 3176, + [3177] = 2858, + [3178] = 2860, + [3179] = 2861, + [3180] = 2862, + [3181] = 2864, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 3185, + [3186] = 2939, + [3187] = 3187, + [3188] = 2839, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 2845, + [3193] = 3193, + [3194] = 3194, + [3195] = 3195, + [3196] = 2846, + [3197] = 2847, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3102, + [3202] = 3202, + [3203] = 3203, + [3204] = 3204, + [3205] = 2867, + [3206] = 2868, + [3207] = 2871, + [3208] = 2856, + [3209] = 2859, + [3210] = 2873, + [3211] = 2874, + [3212] = 2875, + [3213] = 3102, + [3214] = 2968, + [3215] = 2878, + [3216] = 2880, + [3217] = 2883, + [3218] = 3218, + [3219] = 2884, + [3220] = 2856, + [3221] = 2859, + [3222] = 3102, + [3223] = 2887, + [3224] = 2888, + [3225] = 2889, + [3226] = 2856, + [3227] = 3102, + [3228] = 2856, + [3229] = 3102, + [3230] = 2856, + [3231] = 3102, + [3232] = 2856, + [3233] = 3102, + [3234] = 2856, + [3235] = 3102, + [3236] = 3102, + [3237] = 3237, + [3238] = 2840, + [3239] = 2841, + [3240] = 2839, + [3241] = 3203, + [3242] = 2877, + [3243] = 2848, + [3244] = 2849, + [3245] = 2850, + [3246] = 2851, + [3247] = 2852, + [3248] = 3248, + [3249] = 2854, + [3250] = 2855, + [3251] = 2857, + [3252] = 2858, + [3253] = 2860, + [3254] = 2861, + [3255] = 2862, + [3256] = 2864, + [3257] = 2867, + [3258] = 2868, + [3259] = 2871, + [3260] = 2873, + [3261] = 2874, + [3262] = 2875, + [3263] = 2968, + [3264] = 2878, + [3265] = 2880, + [3266] = 2883, + [3267] = 2884, + [3268] = 2887, + [3269] = 2888, + [3270] = 2889, + [3271] = 2863, + [3272] = 2865, + [3273] = 2866, + [3274] = 2869, + [3275] = 2870, + [3276] = 2872, + [3277] = 2876, + [3278] = 2879, + [3279] = 2881, + [3280] = 2882, + [3281] = 2885, + [3282] = 2886, + [3283] = 2890, + [3284] = 2896, + [3285] = 2898, + [3286] = 2899, + [3287] = 2906, + [3288] = 2907, + [3289] = 2909, + [3290] = 2916, + [3291] = 2917, + [3292] = 2918, + [3293] = 2919, + [3294] = 2920, + [3295] = 2921, + [3296] = 2922, + [3297] = 2923, + [3298] = 2925, + [3299] = 2926, + [3300] = 2927, + [3301] = 2928, + [3302] = 2929, + [3303] = 2930, + [3304] = 2931, + [3305] = 2932, + [3306] = 2933, + [3307] = 2934, + [3308] = 2935, + [3309] = 2936, + [3310] = 2938, + [3311] = 2939, + [3312] = 2840, + [3313] = 2841, + [3314] = 2848, + [3315] = 2849, + [3316] = 2850, + [3317] = 2851, + [3318] = 2852, + [3319] = 2854, + [3320] = 2855, + [3321] = 2877, + [3322] = 2857, + [3323] = 2858, + [3324] = 2860, + [3325] = 2861, + [3326] = 2862, + [3327] = 2864, + [3328] = 2867, + [3329] = 2868, + [3330] = 2871, + [3331] = 2873, + [3332] = 2874, + [3333] = 2875, + [3334] = 2968, + [3335] = 2878, + [3336] = 2880, + [3337] = 2883, + [3338] = 2884, + [3339] = 2887, + [3340] = 2888, + [3341] = 2889, + [3342] = 2863, + [3343] = 2865, + [3344] = 2866, + [3345] = 2869, + [3346] = 2870, + [3347] = 2872, + [3348] = 2876, + [3349] = 2879, + [3350] = 2881, + [3351] = 2882, + [3352] = 2885, + [3353] = 2886, + [3354] = 2890, + [3355] = 2896, + [3356] = 2898, + [3357] = 2899, + [3358] = 2906, + [3359] = 2907, + [3360] = 2909, + [3361] = 2916, + [3362] = 2917, + [3363] = 2918, + [3364] = 2919, + [3365] = 2920, + [3366] = 2921, + [3367] = 2922, + [3368] = 2923, + [3369] = 2925, + [3370] = 2926, + [3371] = 2927, + [3372] = 2928, + [3373] = 2929, + [3374] = 2930, + [3375] = 2931, + [3376] = 2932, + [3377] = 2933, + [3378] = 2934, + [3379] = 2935, + [3380] = 2936, + [3381] = 2938, + [3382] = 2939, + [3383] = 2840, + [3384] = 2841, + [3385] = 2848, + [3386] = 2849, + [3387] = 2850, + [3388] = 2851, + [3389] = 2852, + [3390] = 2854, + [3391] = 2855, + [3392] = 2857, + [3393] = 2858, + [3394] = 2860, + [3395] = 2861, + [3396] = 2862, + [3397] = 2864, + [3398] = 2867, + [3399] = 2868, + [3400] = 2871, + [3401] = 2873, + [3402] = 2874, + [3403] = 2875, + [3404] = 2968, + [3405] = 2878, + [3406] = 2880, + [3407] = 3407, + [3408] = 2883, + [3409] = 2884, + [3410] = 2887, + [3411] = 2888, + [3412] = 2889, + [3413] = 2863, + [3414] = 2865, + [3415] = 2866, + [3416] = 2869, + [3417] = 2870, + [3418] = 2872, + [3419] = 2876, + [3420] = 2879, + [3421] = 2881, + [3422] = 2882, + [3423] = 2885, + [3424] = 2886, + [3425] = 2890, + [3426] = 2896, + [3427] = 2898, + [3428] = 2899, + [3429] = 2906, + [3430] = 2907, + [3431] = 2909, + [3432] = 2916, + [3433] = 2917, + [3434] = 2918, + [3435] = 2919, + [3436] = 2920, + [3437] = 2921, + [3438] = 2922, + [3439] = 2923, + [3440] = 2925, + [3441] = 2926, + [3442] = 2927, + [3443] = 2928, + [3444] = 2929, + [3445] = 2930, + [3446] = 2931, + [3447] = 2932, + [3448] = 2933, + [3449] = 2934, + [3450] = 2935, + [3451] = 2936, + [3452] = 2938, + [3453] = 2939, + [3454] = 2840, + [3455] = 2841, + [3456] = 2848, + [3457] = 2849, + [3458] = 2850, + [3459] = 2851, + [3460] = 2852, + [3461] = 3461, + [3462] = 2854, + [3463] = 2855, + [3464] = 2857, + [3465] = 2858, + [3466] = 2860, + [3467] = 2861, + [3468] = 2862, + [3469] = 2864, + [3470] = 2867, + [3471] = 2868, + [3472] = 3472, + [3473] = 2871, + [3474] = 2873, + [3475] = 2874, + [3476] = 2875, + [3477] = 2968, + [3478] = 2878, + [3479] = 2880, + [3480] = 2883, + [3481] = 2884, + [3482] = 2887, + [3483] = 2888, + [3484] = 2889, + [3485] = 2863, + [3486] = 2865, + [3487] = 2866, + [3488] = 2869, + [3489] = 2870, + [3490] = 2872, + [3491] = 2876, + [3492] = 2879, + [3493] = 2881, + [3494] = 2882, + [3495] = 2885, + [3496] = 2886, + [3497] = 3497, + [3498] = 2890, + [3499] = 2896, + [3500] = 2898, + [3501] = 2899, + [3502] = 2906, + [3503] = 2907, + [3504] = 2909, + [3505] = 2916, + [3506] = 2917, + [3507] = 2918, + [3508] = 2919, + [3509] = 2920, + [3510] = 2921, + [3511] = 2922, + [3512] = 2923, + [3513] = 2925, + [3514] = 2926, + [3515] = 2927, + [3516] = 2928, + [3517] = 2929, + [3518] = 2930, + [3519] = 2931, + [3520] = 2932, + [3521] = 2933, + [3522] = 2934, + [3523] = 2935, + [3524] = 2936, + [3525] = 2938, + [3526] = 2939, + [3527] = 3527, + [3528] = 2839, + [3529] = 3203, + [3530] = 2877, + [3531] = 2839, + [3532] = 3203, + [3533] = 2877, + [3534] = 2839, + [3535] = 2877, + [3536] = 2839, + [3537] = 2877, + [3538] = 2839, + [3539] = 2877, + [3540] = 3248, + [3541] = 2853, + [3542] = 2940, + [3543] = 2945, + [3544] = 2952, + [3545] = 3085, + [3546] = 3098, + [3547] = 3101, + [3548] = 3122, + [3549] = 3125, + [3550] = 3126, + [3551] = 2838, + [3552] = 3130, + [3553] = 3146, + [3554] = 3149, + [3555] = 3150, + [3556] = 3157, + [3557] = 3158, + [3558] = 3168, + [3559] = 3169, + [3560] = 3170, + [3561] = 3171, + [3562] = 3189, + [3563] = 3194, + [3564] = 3198, + [3565] = 3199, + [3566] = 3200, + [3567] = 3204, + [3568] = 3237, + [3569] = 3407, + [3570] = 3461, + [3571] = 3472, + [3572] = 3497, + [3573] = 3527, + [3574] = 2924, + [3575] = 2937, + [3576] = 2943, + [3577] = 2949, + [3578] = 3030, + [3579] = 3035, + [3580] = 3039, + [3581] = 3048, + [3582] = 3052, + [3583] = 3066, + [3584] = 3073, + [3585] = 3097, + [3586] = 3118, + [3587] = 3120, + [3588] = 3121, + [3589] = 3123, + [3590] = 3124, + [3591] = 3127, + [3592] = 3128, + [3593] = 3129, + [3594] = 3135, + [3595] = 3138, + [3596] = 3140, + [3597] = 3141, + [3598] = 3143, + [3599] = 3144, + [3600] = 3145, + [3601] = 3147, + [3602] = 3148, + [3603] = 3159, + [3604] = 3160, + [3605] = 3161, + [3606] = 3162, + [3607] = 3163, + [3608] = 3164, + [3609] = 3165, + [3610] = 3166, + [3611] = 3167, + [3612] = 3176, + [3613] = 3182, + [3614] = 3183, + [3615] = 3184, + [3616] = 3185, + [3617] = 3187, + [3618] = 3190, + [3619] = 3191, + [3620] = 3193, + [3621] = 3195, + [3622] = 3202, + [3623] = 3218, + [3624] = 2839, + [3625] = 2877, + [3626] = 2839, + [3627] = 2877, + [3628] = 2968, + [3629] = 3629, + [3630] = 3629, + [3631] = 3629, + [3632] = 3629, + [3633] = 3629, + [3634] = 3629, + [3635] = 3629, + [3636] = 3629, + [3637] = 3637, + [3638] = 3637, + [3639] = 3639, + [3640] = 3637, + [3641] = 3637, + [3642] = 3639, + [3643] = 3637, + [3644] = 3637, + [3645] = 3639, + [3646] = 3637, + [3647] = 3639, + [3648] = 3639, + [3649] = 3637, + [3650] = 3639, + [3651] = 3637, + [3652] = 3637, + [3653] = 3653, + [3654] = 3639, + [3655] = 3653, + [3656] = 3639, + [3657] = 3639, + [3658] = 3637, + [3659] = 3639, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3668, + [3671] = 3669, + [3672] = 3672, + [3673] = 3673, + [3674] = 3674, + [3675] = 3673, + [3676] = 3674, + [3677] = 3677, + [3678] = 3672, + [3679] = 3679, + [3680] = 3680, + [3681] = 3681, + [3682] = 3677, + [3683] = 3672, + [3684] = 3673, + [3685] = 3674, + [3686] = 3677, + [3687] = 3672, + [3688] = 3679, + [3689] = 3680, + [3690] = 3681, + [3691] = 3679, + [3692] = 3680, + [3693] = 3674, + [3694] = 3677, + [3695] = 3681, + [3696] = 3679, + [3697] = 3680, + [3698] = 3681, + [3699] = 3681, + [3700] = 3677, + [3701] = 3672, + [3702] = 3679, + [3703] = 3673, + [3704] = 3674, + [3705] = 3680, + [3706] = 3673, + [3707] = 3707, + [3708] = 3674, + [3709] = 3677, + [3710] = 3672, + [3711] = 3679, + [3712] = 3673, + [3713] = 3681, + [3714] = 3714, + [3715] = 3677, + [3716] = 3707, + [3717] = 3717, + [3718] = 3672, + [3719] = 3665, + [3720] = 3679, + [3721] = 3680, + [3722] = 3681, + [3723] = 3681, + [3724] = 3672, + [3725] = 3673, + [3726] = 3707, + [3727] = 3661, + [3728] = 3673, + [3729] = 3674, + [3730] = 3679, + [3731] = 3677, + [3732] = 3674, + [3733] = 3672, + [3734] = 3679, + [3735] = 3677, + [3736] = 3680, + [3737] = 3681, + [3738] = 3738, + [3739] = 3680, + [3740] = 3681, + [3741] = 3674, + [3742] = 3673, + [3743] = 3707, + [3744] = 3674, + [3745] = 3677, + [3746] = 3672, + [3747] = 3679, + [3748] = 3680, + [3749] = 3680, + [3750] = 3750, + [3751] = 3751, + [3752] = 3752, + [3753] = 3751, + [3754] = 3754, + [3755] = 3755, + [3756] = 3750, + [3757] = 3757, + [3758] = 3758, + [3759] = 3752, + [3760] = 3760, + [3761] = 3761, + [3762] = 3750, + [3763] = 3757, + [3764] = 3750, + [3765] = 3757, + [3766] = 3758, + [3767] = 3761, + [3768] = 3751, + [3769] = 3752, + [3770] = 3761, + [3771] = 3771, + [3772] = 3772, + [3773] = 3754, + [3774] = 3755, + [3775] = 3751, + [3776] = 3752, + [3777] = 3751, + [3778] = 3752, + [3779] = 3754, + [3780] = 3761, + [3781] = 3781, + [3782] = 3782, + [3783] = 3755, + [3784] = 3750, + [3785] = 3757, + [3786] = 3754, + [3787] = 3755, + [3788] = 3788, + [3789] = 3754, + [3790] = 3755, + [3791] = 3758, + [3792] = 3754, + [3793] = 3755, + [3794] = 3750, + [3795] = 3757, + [3796] = 3761, + [3797] = 3751, + [3798] = 3752, + [3799] = 3750, + [3800] = 3757, + [3801] = 3751, + [3802] = 3752, + [3803] = 3754, + [3804] = 3755, + [3805] = 3761, + [3806] = 3750, + [3807] = 3757, + [3808] = 3758, + [3809] = 3809, + [3810] = 3757, + [3811] = 3758, + [3812] = 3758, + [3813] = 3761, + [3814] = 3751, + [3815] = 3751, + [3816] = 3752, + [3817] = 3752, + [3818] = 3761, + [3819] = 3754, + [3820] = 3755, + [3821] = 3754, + [3822] = 3755, + [3823] = 3823, + [3824] = 3824, + [3825] = 3824, + [3826] = 2050, + [3827] = 3827, + [3828] = 3827, + [3829] = 3829, + [3830] = 3829, + [3831] = 3831, + [3832] = 3832, + [3833] = 3829, + [3834] = 3834, + [3835] = 3835, + [3836] = 3823, + [3837] = 3834, + [3838] = 3835, + [3839] = 3835, + [3840] = 3824, + [3841] = 3841, + [3842] = 3831, + [3843] = 3832, + [3844] = 3831, + [3845] = 3845, + [3846] = 3846, + [3847] = 3823, + [3848] = 3834, + [3849] = 3849, + [3850] = 3827, + [3851] = 3832, + [3852] = 3852, + [3853] = 2050, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3856, + [3859] = 3854, + [3860] = 3714, + [3861] = 3855, + [3862] = 3714, + [3863] = 3852, + [3864] = 3857, + [3865] = 3865, + [3866] = 3857, + [3867] = 3857, + [3868] = 3868, + [3869] = 3852, + [3870] = 3868, + [3871] = 3871, + [3872] = 3852, + [3873] = 3857, + [3874] = 3857, + [3875] = 3855, + [3876] = 3857, + [3877] = 3852, + [3878] = 3852, + [3879] = 3852, + [3880] = 3857, + [3881] = 3852, + [3882] = 3714, + [3883] = 3865, + [3884] = 3845, + [3885] = 3885, + [3886] = 3886, + [3887] = 1863, + [3888] = 3888, + [3889] = 3889, + [3890] = 3885, + [3891] = 3891, + [3892] = 3888, + [3893] = 3885, + [3894] = 3885, + [3895] = 3849, + [3896] = 3896, + [3897] = 3888, + [3898] = 3888, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3901, + [3905] = 3905, + [3906] = 2050, + [3907] = 3902, + [3908] = 3908, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 3902, + [3913] = 3913, + [3914] = 3900, + [3915] = 3915, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3901, + [3920] = 3909, + [3921] = 3913, + [3922] = 3922, + [3923] = 3923, + [3924] = 3902, + [3925] = 3925, + [3926] = 3911, + [3927] = 3927, + [3928] = 1863, + [3929] = 3929, + [3930] = 2050, + [3931] = 3901, + [3932] = 3925, + [3933] = 3933, + [3934] = 3911, + [3935] = 3845, + [3936] = 3889, + [3937] = 3849, + [3938] = 3845, + [3939] = 3939, + [3940] = 3903, + [3941] = 3941, + [3942] = 3849, + [3943] = 3922, + [3944] = 3923, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3945, + [3951] = 3951, + [3952] = 3902, + [3953] = 3925, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3902, + [3958] = 3902, + [3959] = 3954, + [3960] = 3960, + [3961] = 3961, + [3962] = 3962, + [3963] = 3903, + [3964] = 3954, + [3965] = 3965, + [3966] = 3903, + [3967] = 3967, + [3968] = 3954, + [3969] = 3969, + [3970] = 3903, + [3971] = 3971, + [3972] = 3903, + [3973] = 3903, + [3974] = 3960, + [3975] = 3908, + [3976] = 3905, + [3977] = 3946, + [3978] = 3910, + [3979] = 3900, + [3980] = 3915, + [3981] = 3916, + [3982] = 3982, + [3983] = 3901, + [3984] = 3902, + [3985] = 3910, + [3986] = 3903, + [3987] = 3901, + [3988] = 3941, + [3989] = 3901, + [3990] = 3922, + [3991] = 3923, + [3992] = 3905, + [3993] = 3946, + [3994] = 3949, + [3995] = 3982, + [3996] = 3901, + [3997] = 3997, + [3998] = 3998, + [3999] = 3999, + [4000] = 3999, + [4001] = 4001, + [4002] = 3999, + [4003] = 3998, + [4004] = 4004, + [4005] = 4005, + [4006] = 4006, + [4007] = 3997, + [4008] = 4008, + [4009] = 4009, + [4010] = 4005, + [4011] = 4011, + [4012] = 4012, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 3999, + [4017] = 4017, + [4018] = 4018, + [4019] = 4019, + [4020] = 3997, + [4021] = 4021, + [4022] = 4014, + [4023] = 3999, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 3999, + [4028] = 4009, + [4029] = 4021, + [4030] = 4030, + [4031] = 4004, + [4032] = 3845, + [4033] = 4033, + [4034] = 4012, + [4035] = 4035, + [4036] = 4001, + [4037] = 3849, + [4038] = 4024, + [4039] = 4025, + [4040] = 4001, + [4041] = 4021, + [4042] = 4024, + [4043] = 4025, + [4044] = 4021, + [4045] = 4018, + [4046] = 3999, + [4047] = 3998, + [4048] = 4033, + [4049] = 4019, + [4050] = 4050, + [4051] = 3998, + [4052] = 4024, + [4053] = 4025, + [4054] = 3998, + [4055] = 4050, + [4056] = 4006, + [4057] = 3998, + [4058] = 3998, + [4059] = 3997, + [4060] = 3999, + [4061] = 4015, + [4062] = 4008, + [4063] = 4001, + [4064] = 4011, + [4065] = 3998, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4004, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 4079, + [4080] = 4079, + [4081] = 4006, + [4082] = 4068, + [4083] = 4083, + [4084] = 4078, + [4085] = 4085, + [4086] = 4086, + [4087] = 4074, + [4088] = 4088, + [4089] = 4089, + [4090] = 4085, + [4091] = 4078, + [4092] = 4092, + [4093] = 4079, + [4094] = 4094, + [4095] = 4015, + [4096] = 4096, + [4097] = 4097, + [4098] = 4085, + [4099] = 4099, + [4100] = 4100, + [4101] = 4097, + [4102] = 4075, + [4103] = 4085, + [4104] = 4076, + [4105] = 4092, + [4106] = 4106, + [4107] = 4078, + [4108] = 4108, + [4109] = 4097, + [4110] = 4075, + [4111] = 4085, + [4112] = 4086, + [4113] = 4113, + [4114] = 4114, + [4115] = 4083, + [4116] = 4076, + [4117] = 4092, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 4068, + [4126] = 4071, + [4127] = 4072, + [4128] = 4128, + [4129] = 4092, + [4130] = 4079, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4070, + [4136] = 4133, + [4137] = 4079, + [4138] = 4068, + [4139] = 4123, + [4140] = 4005, + [4141] = 4068, + [4142] = 4133, + [4143] = 4134, + [4144] = 4070, + [4145] = 4145, + [4146] = 4078, + [4147] = 4078, + [4148] = 4148, + [4149] = 4077, + [4150] = 4077, + [4151] = 4124, + [4152] = 4133, + [4153] = 4134, + [4154] = 4085, + [4155] = 4094, + [4156] = 4015, + [4157] = 4133, + [4158] = 4134, + [4159] = 4113, + [4160] = 4097, + [4161] = 4161, + [4162] = 4133, + [4163] = 4134, + [4164] = 4145, + [4165] = 4075, + [4166] = 4076, + [4167] = 4133, + [4168] = 4134, + [4169] = 4134, + [4170] = 4134, + [4171] = 4171, + [4172] = 4171, + [4173] = 4118, + [4174] = 4097, + [4175] = 4012, + [4176] = 4176, + [4177] = 4177, + [4178] = 4178, + [4179] = 4079, + [4180] = 4096, + [4181] = 4181, + [4182] = 4133, + [4183] = 4092, + [4184] = 4068, + [4185] = 4086, + [4186] = 4005, + [4187] = 4121, + [4188] = 4075, + [4189] = 4189, + [4190] = 4004, + [4191] = 4128, + [4192] = 4097, + [4193] = 4075, + [4194] = 4114, + [4195] = 4181, + [4196] = 4134, + [4197] = 4197, + [4198] = 4120, + [4199] = 4119, + [4200] = 4134, + [4201] = 4201, + [4202] = 4202, + [4203] = 4161, + [4204] = 4120, + [4205] = 4114, + [4206] = 4078, + [4207] = 4097, + [4208] = 4075, + [4209] = 4076, + [4210] = 4092, + [4211] = 4068, + [4212] = 4079, + [4213] = 4078, + [4214] = 4097, + [4215] = 4075, + [4216] = 4076, + [4217] = 4092, + [4218] = 4068, + [4219] = 4079, + [4220] = 4078, + [4221] = 4097, + [4222] = 4075, + [4223] = 4076, + [4224] = 4092, + [4225] = 4068, + [4226] = 4079, + [4227] = 4012, + [4228] = 4079, + [4229] = 4006, + [4230] = 4078, + [4231] = 4085, + [4232] = 4086, + [4233] = 4097, + [4234] = 4114, + [4235] = 4075, + [4236] = 4094, + [4237] = 4076, + [4238] = 4092, + [4239] = 4068, + [4240] = 4079, + [4241] = 4114, + [4242] = 4078, + [4243] = 4097, + [4244] = 4244, + [4245] = 4075, + [4246] = 4077, + [4247] = 4113, + [4248] = 4076, + [4249] = 4120, + [4250] = 4068, + [4251] = 4132, + [4252] = 4092, + [4253] = 4068, + [4254] = 4079, + [4255] = 4076, + [4256] = 4076, + [4257] = 4086, + [4258] = 4078, + [4259] = 4259, + [4260] = 4100, + [4261] = 4092, + [4262] = 4085, + [4263] = 4066, + [4264] = 4086, + [4265] = 4197, + [4266] = 4085, + [4267] = 4267, + [4268] = 4097, + [4269] = 4092, + [4270] = 4148, + [4271] = 4108, + [4272] = 4075, + [4273] = 4070, + [4274] = 4085, + [4275] = 4085, + [4276] = 4134, + [4277] = 4131, + [4278] = 4076, + [4279] = 4085, + [4280] = 4134, + [4281] = 4281, + [4282] = 4282, + [4283] = 4283, + [4284] = 4284, + [4285] = 4283, + [4286] = 4286, + [4287] = 4287, + [4288] = 4288, + [4289] = 4289, + [4290] = 4290, + [4291] = 4287, + [4292] = 4288, + [4293] = 4293, + [4294] = 4281, + [4295] = 4295, + [4296] = 4295, + [4297] = 4290, + [4298] = 4293, + [4299] = 4299, + [4300] = 4286, + [4301] = 4289, + [4302] = 4302, + [4303] = 4299, + [4304] = 4302, + [4305] = 4284, + [4306] = 4282, + [4307] = 4307, + [4308] = 4308, + [4309] = 4307, + [4310] = 4308, + [4311] = 4311, + [4312] = 4312, + [4313] = 4313, + [4314] = 4314, + [4315] = 4315, + [4316] = 4316, + [4317] = 4317, + [4318] = 4318, + [4319] = 4319, + [4320] = 4320, + [4321] = 4321, + [4322] = 4322, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 4326, + [4327] = 4327, + [4328] = 4328, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, + [4338] = 4338, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, + [4346] = 4346, + [4347] = 4347, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 4351, + [4352] = 4352, + [4353] = 4353, + [4354] = 4354, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, + [4363] = 4363, + [4364] = 4364, + [4365] = 4365, + [4366] = 4366, + [4367] = 4367, + [4368] = 4368, + [4369] = 4369, + [4370] = 4370, + [4371] = 4371, + [4372] = 4372, + [4373] = 4373, + [4374] = 4374, + [4375] = 4375, + [4376] = 4376, + [4377] = 4377, + [4378] = 4378, + [4379] = 4379, + [4380] = 4380, + [4381] = 4381, + [4382] = 4382, + [4383] = 4383, + [4384] = 4384, + [4385] = 4385, + [4386] = 4386, + [4387] = 4387, + [4388] = 4388, + [4389] = 4389, + [4390] = 4390, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, + [4395] = 4395, + [4396] = 4396, + [4397] = 4397, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, + [4402] = 4402, + [4403] = 4403, + [4404] = 4404, + [4405] = 4405, + [4406] = 4406, + [4407] = 4407, + [4408] = 4408, + [4409] = 4409, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, + [4417] = 4417, + [4418] = 4418, + [4419] = 4419, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, + [4434] = 4434, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 4439, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, + [4449] = 4415, + [4450] = 4450, + [4451] = 4416, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 4455, + [4456] = 4417, + [4457] = 4418, + [4458] = 4419, + [4459] = 4459, + [4460] = 4460, + [4461] = 4461, + [4462] = 4462, + [4463] = 4463, + [4464] = 4420, + [4465] = 4465, + [4466] = 4466, + [4467] = 4421, + [4468] = 4468, + [4469] = 4469, + [4470] = 4470, + [4471] = 4422, + [4472] = 4472, + [4473] = 4473, + [4474] = 4474, + [4475] = 4398, + [4476] = 4476, + [4477] = 4423, + [4478] = 4478, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, + [4482] = 4482, + [4483] = 4483, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, + [4487] = 4487, + [4488] = 4424, + [4489] = 4489, + [4490] = 4425, + [4491] = 4491, + [4492] = 4426, + [4493] = 4427, + [4494] = 4494, + [4495] = 4495, + [4496] = 4496, + [4497] = 4428, + [4498] = 4429, + [4499] = 4499, + [4500] = 4500, + [4501] = 4430, + [4502] = 4502, + [4503] = 4503, + [4504] = 4504, + [4505] = 4505, + [4506] = 4506, + [4507] = 4507, + [4508] = 4508, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, + [4514] = 4514, + [4515] = 4515, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4463, + [4523] = 4431, + [4524] = 4524, + [4525] = 4525, + [4526] = 4526, + [4527] = 4527, + [4528] = 4461, + [4529] = 4529, + [4530] = 4530, + [4531] = 4531, + [4532] = 4532, + [4533] = 4533, + [4534] = 4432, + [4535] = 4535, + [4536] = 4536, + [4537] = 4433, + [4538] = 4538, + [4539] = 4539, + [4540] = 4540, + [4541] = 4541, + [4542] = 4434, + [4543] = 4543, + [4544] = 4544, + [4545] = 4545, + [4546] = 4444, + [4547] = 4445, + [4548] = 4459, + [4549] = 4468, + [4550] = 4550, + [4551] = 4435, + [4552] = 4552, + [4553] = 4436, + [4554] = 4554, + [4555] = 4555, + [4556] = 4532, + [4557] = 4527, + [4558] = 4529, + [4559] = 4531, + [4560] = 4560, + [4561] = 4545, + [4562] = 4562, + [4563] = 4563, + [4564] = 4437, + [4565] = 4438, + [4566] = 4566, + [4567] = 4567, + [4568] = 4439, + [4569] = 4569, + [4570] = 4570, + [4571] = 4571, + [4572] = 4572, + [4573] = 4573, + [4574] = 4574, + [4575] = 4575, + [4576] = 4576, + [4577] = 4577, + [4578] = 4440, + [4579] = 4441, + [4580] = 4580, + [4581] = 4442, + [4582] = 4582, + [4583] = 4583, + [4584] = 4584, + [4585] = 4585, + [4586] = 4586, + [4587] = 4587, + [4588] = 4588, + [4589] = 4589, + [4590] = 4590, + [4591] = 4591, + [4592] = 4592, + [4593] = 4593, + [4594] = 4594, + [4595] = 4595, + [4596] = 4596, + [4597] = 4597, + [4598] = 4598, + [4599] = 4599, + [4600] = 4600, + [4601] = 4601, + [4602] = 4602, + [4603] = 4603, + [4604] = 4604, + [4605] = 4605, + [4606] = 4443, + [4607] = 4607, + [4608] = 4608, + [4609] = 4609, + [4610] = 4533, + [4611] = 4611, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4399, + [4616] = 4616, + [4617] = 4617, + [4618] = 4618, + [4619] = 4619, + [4620] = 4620, + [4621] = 4621, + [4622] = 4622, + [4623] = 4623, + [4624] = 4624, + [4625] = 4625, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, + [4630] = 4630, + [4631] = 4631, + [4632] = 4632, + [4633] = 4633, + [4634] = 4634, + [4635] = 4635, + [4636] = 4636, + [4637] = 4637, + [4638] = 4638, + [4639] = 4639, + [4640] = 4640, + [4641] = 4566, + [4642] = 4642, + [4643] = 4643, + [4644] = 4644, + [4645] = 4645, + [4646] = 4646, + [4647] = 4647, + [4648] = 4648, + [4649] = 4649, + [4650] = 4650, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4662, + [4663] = 4663, + [4664] = 4664, + [4665] = 4665, + [4666] = 4666, + [4667] = 4667, + [4668] = 4668, + [4669] = 4569, + [4670] = 4670, + [4671] = 4671, + [4672] = 4672, + [4673] = 4673, + [4674] = 4570, + [4675] = 4675, + [4676] = 4676, + [4677] = 4677, + [4678] = 4678, + [4679] = 4679, + [4680] = 4680, + [4681] = 4681, + [4682] = 4571, + [4683] = 4683, + [4684] = 4572, + [4685] = 4685, + [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] = 4706, + [4707] = 4707, + [4708] = 4708, + [4709] = 4709, + [4710] = 4710, + [4711] = 4711, + [4712] = 4712, + [4713] = 4713, + [4714] = 4714, + [4715] = 4715, + [4716] = 4716, + [4717] = 4717, + [4718] = 4718, + [4719] = 4719, + [4720] = 4720, + [4721] = 4721, + [4722] = 4722, + [4723] = 4723, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, + [4727] = 4727, + [4728] = 4400, + [4729] = 4729, + [4730] = 4730, + [4731] = 4731, + [4732] = 4732, + [4733] = 4733, + [4734] = 4734, + [4735] = 4735, + [4736] = 4736, + [4737] = 4737, + [4738] = 4738, + [4739] = 4739, + [4740] = 4740, + [4741] = 4741, + [4742] = 4742, + [4743] = 4743, + [4744] = 4744, + [4745] = 4745, + [4746] = 4746, + [4747] = 4747, + [4748] = 4748, + [4749] = 4749, + [4750] = 4750, + [4751] = 4751, + [4752] = 4575, + [4753] = 4753, + [4754] = 4754, + [4755] = 4755, + [4756] = 4756, + [4757] = 4757, + [4758] = 4758, + [4759] = 4759, + [4760] = 4760, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4764, + [4765] = 4765, + [4766] = 4766, + [4767] = 4767, + [4768] = 4768, + [4769] = 4769, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, + [4773] = 4773, + [4774] = 4774, + [4775] = 4775, + [4776] = 4776, + [4777] = 4777, + [4778] = 4778, + [4779] = 4576, + [4780] = 4780, + [4781] = 4781, + [4782] = 4782, + [4783] = 4783, + [4784] = 4784, + [4785] = 4785, + [4786] = 4786, + [4787] = 4787, + [4788] = 4788, + [4789] = 4789, + [4790] = 4790, + [4791] = 4791, + [4792] = 4580, + [4793] = 4401, + [4794] = 4402, + [4795] = 4403, + [4796] = 4404, + [4797] = 4520, + [4798] = 4405, + [4799] = 4536, + [4800] = 4582, + [4801] = 4801, + [4802] = 4583, + [4803] = 4803, + [4804] = 4804, + [4805] = 4805, + [4806] = 4806, + [4807] = 4807, + [4808] = 4808, + [4809] = 4809, + [4810] = 4810, + [4811] = 4584, + [4812] = 4812, + [4813] = 4813, + [4814] = 4585, + [4815] = 4815, + [4816] = 4816, + [4817] = 4817, + [4818] = 4818, + [4819] = 4819, + [4820] = 4820, + [4821] = 4821, + [4822] = 4587, + [4823] = 4823, + [4824] = 4824, + [4825] = 4825, + [4826] = 4826, + [4827] = 4588, + [4828] = 4828, + [4829] = 4590, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, + [4833] = 4833, + [4834] = 4834, + [4835] = 4592, + [4836] = 4836, + [4837] = 4837, + [4838] = 4838, + [4839] = 4839, + [4840] = 4593, + [4841] = 4841, + [4842] = 4842, + [4843] = 4594, + [4844] = 4596, + [4845] = 4845, + [4846] = 4846, + [4847] = 4847, + [4848] = 4848, + [4849] = 4849, + [4850] = 4850, + [4851] = 4851, + [4852] = 4852, + [4853] = 4598, + [4854] = 4854, + [4855] = 4600, + [4856] = 4856, + [4857] = 4857, + [4858] = 4858, + [4859] = 4859, + [4860] = 4602, + [4861] = 4861, + [4862] = 4603, + [4863] = 4863, + [4864] = 4864, + [4865] = 4865, + [4866] = 4866, + [4867] = 4867, + [4868] = 4868, + [4869] = 4869, + [4870] = 4870, + [4871] = 4871, + [4872] = 4872, + [4873] = 4873, + [4874] = 4874, + [4875] = 4875, + [4876] = 4876, + [4877] = 4877, + [4878] = 4878, + [4879] = 4879, + [4880] = 4880, + [4881] = 4881, + [4882] = 4882, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4887, + [4888] = 4888, + [4889] = 4889, + [4890] = 4890, + [4891] = 4891, + [4892] = 4892, + [4893] = 4893, + [4894] = 4894, + [4895] = 4895, + [4896] = 4896, + [4897] = 4897, + [4898] = 4898, + [4899] = 4899, + [4900] = 4900, + [4901] = 4901, + [4902] = 4902, + [4903] = 4903, + [4904] = 4904, + [4905] = 4905, + [4906] = 4906, + [4907] = 4907, + [4908] = 4908, + [4909] = 4909, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4913, + [4914] = 4914, + [4915] = 4915, + [4916] = 4916, + [4917] = 4917, + [4918] = 4918, + [4919] = 4919, + [4920] = 4920, + [4921] = 4921, + [4922] = 4922, + [4923] = 4618, + [4924] = 4924, + [4925] = 4925, + [4926] = 4926, + [4927] = 4927, + [4928] = 4928, + [4929] = 4929, + [4930] = 4930, + [4931] = 4931, + [4932] = 4932, + [4933] = 4933, + [4934] = 4934, + [4935] = 4935, + [4936] = 4936, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 4942, + [4943] = 4943, + [4944] = 4944, + [4945] = 4945, + [4946] = 4946, + [4947] = 4947, + [4948] = 4948, + [4949] = 4949, + [4950] = 4950, + [4951] = 4951, + [4952] = 4952, + [4953] = 4953, + [4954] = 4954, + [4955] = 4955, + [4956] = 4956, + [4957] = 4957, + [4958] = 4447, + [4959] = 4621, + [4960] = 4960, + [4961] = 4454, + [4962] = 4962, + [4963] = 4963, + [4964] = 4964, + [4965] = 4622, + [4966] = 4966, + [4967] = 4466, + [4968] = 4968, + [4969] = 4521, + [4970] = 4970, + [4971] = 4577, + [4972] = 4623, + [4973] = 4973, + [4974] = 4624, + [4975] = 4975, + [4976] = 4607, + [4977] = 4683, + [4978] = 4978, + [4979] = 4625, + [4980] = 4980, + [4981] = 4686, + [4982] = 4982, + [4983] = 4627, + [4984] = 4984, + [4985] = 4628, + [4986] = 4986, + [4987] = 4987, + [4988] = 4504, + [4989] = 4989, + [4990] = 4630, + [4991] = 4991, + [4992] = 4552, + [4993] = 4631, + [4994] = 4554, + [4995] = 4608, + [4996] = 4632, + [4997] = 4612, + [4998] = 4998, + [4999] = 4999, + [5000] = 5000, + [5001] = 5001, + [5002] = 5002, + [5003] = 4633, + [5004] = 5004, + [5005] = 5005, + [5006] = 5006, + [5007] = 5007, + [5008] = 5008, + [5009] = 5009, + [5010] = 4613, + [5011] = 5011, + [5012] = 5012, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 5016, + [5017] = 4616, + [5018] = 5018, + [5019] = 5019, + [5020] = 5020, + [5021] = 5021, + [5022] = 4634, + [5023] = 5023, + [5024] = 5024, + [5025] = 5025, + [5026] = 5026, + [5027] = 4673, + [5028] = 4676, + [5029] = 4677, + [5030] = 4679, + [5031] = 4680, + [5032] = 4637, + [5033] = 4681, + [5034] = 5034, + [5035] = 4982, + [5036] = 5036, + [5037] = 5037, + [5038] = 4638, + [5039] = 5039, + [5040] = 5040, + [5041] = 4639, + [5042] = 5042, + [5043] = 4675, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 5047, + [5048] = 5048, + [5049] = 5049, + [5050] = 5050, + [5051] = 5051, + [5052] = 4640, + [5053] = 5053, + [5054] = 5054, + [5055] = 5055, + [5056] = 5056, + [5057] = 5057, + [5058] = 5058, + [5059] = 4642, + [5060] = 5060, + [5061] = 4524, + [5062] = 5062, + [5063] = 5063, + [5064] = 4406, + [5065] = 4643, + [5066] = 5066, + [5067] = 5067, + [5068] = 4644, + [5069] = 5069, + [5070] = 4645, + [5071] = 5071, + [5072] = 5072, + [5073] = 4646, + [5074] = 5074, + [5075] = 5075, + [5076] = 4647, + [5077] = 5077, + [5078] = 5078, + [5079] = 4648, + [5080] = 5080, + [5081] = 5081, + [5082] = 4650, + [5083] = 5083, + [5084] = 4538, + [5085] = 4651, + [5086] = 4653, + [5087] = 5087, + [5088] = 4654, + [5089] = 5089, + [5090] = 4655, + [5091] = 5091, + [5092] = 5092, + [5093] = 4407, + [5094] = 4657, + [5095] = 4658, + [5096] = 4408, + [5097] = 4659, + [5098] = 5098, + [5099] = 5099, + [5100] = 5100, + [5101] = 5101, + [5102] = 5102, + [5103] = 4446, + [5104] = 5104, + [5105] = 5105, + [5106] = 5106, + [5107] = 5107, + [5108] = 5108, + [5109] = 5109, + [5110] = 4660, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 5115, + [5116] = 5116, + [5117] = 4661, + [5118] = 5118, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, + [5122] = 5122, + [5123] = 5123, + [5124] = 4663, + [5125] = 5125, + [5126] = 5126, + [5127] = 5127, + [5128] = 4664, + [5129] = 5129, + [5130] = 5130, + [5131] = 4665, + [5132] = 5132, + [5133] = 5133, + [5134] = 4666, + [5135] = 5135, + [5136] = 5136, + [5137] = 5137, + [5138] = 4667, + [5139] = 5139, + [5140] = 5140, + [5141] = 5141, + [5142] = 4668, + [5143] = 5143, + [5144] = 5144, + [5145] = 4670, + [5146] = 5146, + [5147] = 5147, + [5148] = 5148, + [5149] = 4671, + [5150] = 5150, + [5151] = 5151, + [5152] = 5152, + [5153] = 4672, + [5154] = 5154, + [5155] = 5155, + [5156] = 5156, + [5157] = 5157, + [5158] = 4541, + [5159] = 5159, + [5160] = 5160, + [5161] = 5161, + [5162] = 4450, + [5163] = 5163, + [5164] = 5164, + [5165] = 5165, + [5166] = 5166, + [5167] = 5167, + [5168] = 5168, + [5169] = 5169, + [5170] = 5170, + [5171] = 5171, + [5172] = 5172, + [5173] = 5173, + [5174] = 5168, + [5175] = 4452, + [5176] = 5176, + [5177] = 5177, + [5178] = 5171, + [5179] = 4453, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, + [5183] = 5183, + [5184] = 5184, + [5185] = 4448, + [5186] = 5186, + [5187] = 4465, + [5188] = 5188, + [5189] = 4472, + [5190] = 5190, + [5191] = 5191, + [5192] = 5192, + [5193] = 4473, + [5194] = 5194, + [5195] = 5195, + [5196] = 4476, + [5197] = 5197, + [5198] = 4478, + [5199] = 4480, + [5200] = 5200, + [5201] = 4482, + [5202] = 5202, + [5203] = 4455, + [5204] = 5204, + [5205] = 4485, + [5206] = 4486, + [5207] = 5207, + [5208] = 5208, + [5209] = 4489, + [5210] = 5210, + [5211] = 4495, + [5212] = 5212, + [5213] = 4496, + [5214] = 5214, + [5215] = 4499, + [5216] = 4500, + [5217] = 5217, + [5218] = 4506, + [5219] = 5219, + [5220] = 4508, + [5221] = 5221, + [5222] = 5222, + [5223] = 4511, + [5224] = 5224, + [5225] = 5225, + [5226] = 5226, + [5227] = 5227, + [5228] = 5228, + [5229] = 5229, + [5230] = 4512, + [5231] = 5231, + [5232] = 5232, + [5233] = 4513, + [5234] = 5234, + [5235] = 5235, + [5236] = 4514, + [5237] = 5237, + [5238] = 5238, + [5239] = 4460, + [5240] = 4515, + [5241] = 5241, + [5242] = 5242, + [5243] = 4687, + [5244] = 5244, + [5245] = 5245, + [5246] = 4688, + [5247] = 5247, + [5248] = 4516, + [5249] = 5249, + [5250] = 4517, + [5251] = 5251, + [5252] = 5252, + [5253] = 4692, + [5254] = 5254, + [5255] = 4518, + [5256] = 5256, + [5257] = 5257, + [5258] = 4693, + [5259] = 5259, + [5260] = 4694, + [5261] = 5261, + [5262] = 4525, + [5263] = 5263, + [5264] = 5264, + [5265] = 5265, + [5266] = 4695, + [5267] = 5267, + [5268] = 5268, + [5269] = 4696, + [5270] = 5270, + [5271] = 4526, + [5272] = 5272, + [5273] = 4699, + [5274] = 5274, + [5275] = 5275, + [5276] = 4700, + [5277] = 5277, + [5278] = 5278, + [5279] = 5279, + [5280] = 5280, + [5281] = 4701, + [5282] = 5282, + [5283] = 4530, + [5284] = 5284, + [5285] = 4702, + [5286] = 5286, + [5287] = 4535, + [5288] = 4703, + [5289] = 5289, + [5290] = 4704, + [5291] = 5291, + [5292] = 5292, + [5293] = 4707, + [5294] = 5294, + [5295] = 5295, + [5296] = 5296, + [5297] = 4708, + [5298] = 5298, + [5299] = 4539, + [5300] = 5300, + [5301] = 4709, + [5302] = 5302, + [5303] = 4540, + [5304] = 5304, + [5305] = 5305, + [5306] = 4710, + [5307] = 5307, + [5308] = 5308, + [5309] = 5309, + [5310] = 4462, + [5311] = 5311, + [5312] = 4711, + [5313] = 5313, + [5314] = 5314, + [5315] = 4550, + [5316] = 4714, + [5317] = 5317, + [5318] = 4555, + [5319] = 5319, + [5320] = 5320, + [5321] = 4715, + [5322] = 4718, + [5323] = 5323, + [5324] = 5324, + [5325] = 5325, + [5326] = 4719, + [5327] = 5327, + [5328] = 5328, + [5329] = 4560, + [5330] = 4720, + [5331] = 5331, + [5332] = 4563, + [5333] = 5333, + [5334] = 4567, + [5335] = 4721, + [5336] = 5336, + [5337] = 4574, + [5338] = 5338, + [5339] = 4586, + [5340] = 4589, + [5341] = 4722, + [5342] = 4591, + [5343] = 5343, + [5344] = 5344, + [5345] = 4397, + [5346] = 5346, + [5347] = 5347, + [5348] = 5348, + [5349] = 4724, + [5350] = 5350, + [5351] = 5351, + [5352] = 5352, + [5353] = 5353, + [5354] = 5354, + [5355] = 4595, + [5356] = 5356, + [5357] = 5357, + [5358] = 5358, + [5359] = 5359, + [5360] = 5360, + [5361] = 4725, + [5362] = 5362, + [5363] = 4597, + [5364] = 5364, + [5365] = 5365, + [5366] = 4726, + [5367] = 5367, + [5368] = 5368, + [5369] = 4599, + [5370] = 5370, + [5371] = 4601, + [5372] = 5372, + [5373] = 4604, + [5374] = 5374, + [5375] = 5375, + [5376] = 4605, + [5377] = 5377, + [5378] = 5378, + [5379] = 4609, + [5380] = 5380, + [5381] = 5381, + [5382] = 5382, + [5383] = 5383, + [5384] = 4732, + [5385] = 5385, + [5386] = 5386, + [5387] = 4611, + [5388] = 4614, + [5389] = 5389, + [5390] = 4617, + [5391] = 5391, + [5392] = 5392, + [5393] = 5393, + [5394] = 5394, + [5395] = 4619, + [5396] = 5396, + [5397] = 4620, + [5398] = 5398, + [5399] = 4626, + [5400] = 5400, + [5401] = 5401, + [5402] = 5402, + [5403] = 4629, + [5404] = 5404, + [5405] = 4635, + [5406] = 5406, + [5407] = 4733, + [5408] = 5408, + [5409] = 4734, + [5410] = 5410, + [5411] = 4636, + [5412] = 5412, + [5413] = 4649, + [5414] = 5414, + [5415] = 5415, + [5416] = 5416, + [5417] = 5417, + [5418] = 5418, + [5419] = 5419, + [5420] = 4735, + [5421] = 4652, + [5422] = 5422, + [5423] = 4736, + [5424] = 5424, + [5425] = 5425, + [5426] = 5426, + [5427] = 4656, + [5428] = 5428, + [5429] = 4737, + [5430] = 5430, + [5431] = 4662, + [5432] = 5432, + [5433] = 4738, + [5434] = 5434, + [5435] = 4678, + [5436] = 5436, + [5437] = 4739, + [5438] = 5438, + [5439] = 4740, + [5440] = 5440, + [5441] = 4685, + [5442] = 5442, + [5443] = 4741, + [5444] = 5444, + [5445] = 4689, + [5446] = 5446, + [5447] = 5447, + [5448] = 5448, + [5449] = 4742, + [5450] = 5450, + [5451] = 5451, + [5452] = 4743, + [5453] = 4690, + [5454] = 5454, + [5455] = 4745, + [5456] = 5456, + [5457] = 5457, + [5458] = 4746, + [5459] = 5459, + [5460] = 4691, + [5461] = 5461, + [5462] = 4748, + [5463] = 5463, + [5464] = 5464, + [5465] = 5465, + [5466] = 5466, + [5467] = 4750, + [5468] = 5468, + [5469] = 4697, + [5470] = 5470, + [5471] = 4698, + [5472] = 4755, + [5473] = 5473, + [5474] = 4705, + [5475] = 5475, + [5476] = 5476, + [5477] = 5477, + [5478] = 5478, + [5479] = 5479, + [5480] = 4756, + [5481] = 5481, + [5482] = 5482, + [5483] = 4706, + [5484] = 5484, + [5485] = 5485, + [5486] = 5486, + [5487] = 4757, + [5488] = 5488, + [5489] = 4758, + [5490] = 5490, + [5491] = 5491, + [5492] = 4760, + [5493] = 5493, + [5494] = 5494, + [5495] = 4712, + [5496] = 4713, + [5497] = 5497, + [5498] = 4762, + [5499] = 5499, + [5500] = 4764, + [5501] = 5501, + [5502] = 5502, + [5503] = 5503, + [5504] = 4716, + [5505] = 5505, + [5506] = 4765, + [5507] = 5507, + [5508] = 5508, + [5509] = 5509, + [5510] = 5510, + [5511] = 4767, + [5512] = 5512, + [5513] = 5513, + [5514] = 4469, + [5515] = 4769, + [5516] = 5516, + [5517] = 4470, + [5518] = 5518, + [5519] = 4773, + [5520] = 5520, + [5521] = 5521, + [5522] = 5522, + [5523] = 4774, + [5524] = 5524, + [5525] = 4717, + [5526] = 5526, + [5527] = 4775, + [5528] = 5528, + [5529] = 4776, + [5530] = 5530, + [5531] = 4781, + [5532] = 5532, + [5533] = 4723, + [5534] = 5534, + [5535] = 4782, + [5536] = 5536, + [5537] = 4474, + [5538] = 5538, + [5539] = 4783, + [5540] = 5540, + [5541] = 5541, + [5542] = 5542, + [5543] = 5543, + [5544] = 4727, + [5545] = 5545, + [5546] = 5546, + [5547] = 4784, + [5548] = 4729, + [5549] = 5549, + [5550] = 4730, + [5551] = 5551, + [5552] = 4785, + [5553] = 5553, + [5554] = 5554, + [5555] = 4479, + [5556] = 5556, + [5557] = 4786, + [5558] = 5558, + [5559] = 4744, + [5560] = 5560, + [5561] = 4747, + [5562] = 5562, + [5563] = 4481, + [5564] = 5564, + [5565] = 5565, + [5566] = 4483, + [5567] = 5567, + [5568] = 4749, + [5569] = 5569, + [5570] = 4751, + [5571] = 5571, + [5572] = 4753, + [5573] = 4754, + [5574] = 4759, + [5575] = 5575, + [5576] = 4761, + [5577] = 4763, + [5578] = 4766, + [5579] = 4768, + [5580] = 4770, + [5581] = 4771, + [5582] = 5582, + [5583] = 4772, + [5584] = 4777, + [5585] = 4778, + [5586] = 4780, + [5587] = 4787, + [5588] = 4788, + [5589] = 4789, + [5590] = 4790, + [5591] = 4791, + [5592] = 4409, + [5593] = 4410, + [5594] = 4960, + [5595] = 4411, + [5596] = 4543, + [5597] = 4412, + [5598] = 4413, + [5599] = 4414, + [5600] = 4544, + [5601] = 5181, + [5602] = 5602, + [5603] = 4484, + [5604] = 5183, + [5605] = 4804, + [5606] = 5606, + [5607] = 4806, + [5608] = 5608, + [5609] = 4807, + [5610] = 4808, + [5611] = 4810, + [5612] = 4812, + [5613] = 4815, + [5614] = 4820, + [5615] = 4823, + [5616] = 4825, + [5617] = 4830, + [5618] = 4832, + [5619] = 4836, + [5620] = 4838, + [5621] = 4845, + [5622] = 4847, + [5623] = 5623, + [5624] = 4850, + [5625] = 4851, + [5626] = 5626, + [5627] = 4859, + [5628] = 4865, + [5629] = 4866, + [5630] = 4867, + [5631] = 4868, + [5632] = 4870, + [5633] = 4871, + [5634] = 4872, + [5635] = 4873, + [5636] = 5636, + [5637] = 4874, + [5638] = 5638, + [5639] = 4875, + [5640] = 5640, + [5641] = 4876, + [5642] = 4877, + [5643] = 4878, + [5644] = 5644, + [5645] = 5645, + [5646] = 5646, + [5647] = 4880, + [5648] = 5648, + [5649] = 4882, + [5650] = 5650, + [5651] = 4883, + [5652] = 4885, + [5653] = 5653, + [5654] = 4887, + [5655] = 4888, + [5656] = 4889, + [5657] = 5657, + [5658] = 4891, + [5659] = 5659, + [5660] = 5660, + [5661] = 4892, + [5662] = 4893, + [5663] = 4894, + [5664] = 4895, + [5665] = 4896, + [5666] = 4898, + [5667] = 4899, + [5668] = 4901, + [5669] = 4902, + [5670] = 4904, + [5671] = 4905, + [5672] = 4908, + [5673] = 5673, + [5674] = 4909, + [5675] = 5675, + [5676] = 5676, + [5677] = 4911, + [5678] = 4912, + [5679] = 4913, + [5680] = 5680, + [5681] = 4914, + [5682] = 4915, + [5683] = 4916, + [5684] = 5684, + [5685] = 4917, + [5686] = 4920, + [5687] = 5687, + [5688] = 4922, + [5689] = 4924, + [5690] = 4926, + [5691] = 4928, + [5692] = 4930, + [5693] = 4931, + [5694] = 5694, + [5695] = 5695, + [5696] = 4932, + [5697] = 4487, + [5698] = 4933, + [5699] = 4934, + [5700] = 4935, + [5701] = 4938, + [5702] = 4940, + [5703] = 4942, + [5704] = 4944, + [5705] = 5705, + [5706] = 5706, + [5707] = 4945, + [5708] = 5708, + [5709] = 4946, + [5710] = 5710, + [5711] = 5711, + [5712] = 4947, + [5713] = 5713, + [5714] = 4948, + [5715] = 5715, + [5716] = 5716, + [5717] = 4950, + [5718] = 5718, + [5719] = 5719, + [5720] = 5720, + [5721] = 5721, + [5722] = 4952, + [5723] = 5723, + [5724] = 4955, + [5725] = 5725, + [5726] = 4957, + [5727] = 5727, + [5728] = 5728, + [5729] = 4962, + [5730] = 4963, + [5731] = 4964, + [5732] = 4966, + [5733] = 4968, + [5734] = 4970, + [5735] = 4973, + [5736] = 4975, + [5737] = 4978, + [5738] = 5738, + [5739] = 4980, + [5740] = 4984, + [5741] = 4986, + [5742] = 4989, + [5743] = 4991, + [5744] = 5744, + [5745] = 4491, + [5746] = 5746, + [5747] = 4998, + [5748] = 4999, + [5749] = 5749, + [5750] = 5000, + [5751] = 5001, + [5752] = 5002, + [5753] = 5004, + [5754] = 5005, + [5755] = 5006, + [5756] = 5007, + [5757] = 5008, + [5758] = 5009, + [5759] = 5011, + [5760] = 5012, + [5761] = 5013, + [5762] = 5014, + [5763] = 5015, + [5764] = 5764, + [5765] = 5765, + [5766] = 5016, + [5767] = 5018, + [5768] = 5768, + [5769] = 5769, + [5770] = 5019, + [5771] = 5020, + [5772] = 5021, + [5773] = 5023, + [5774] = 5024, + [5775] = 5026, + [5776] = 4987, + [5777] = 5777, + [5778] = 5778, + [5779] = 4494, + [5780] = 5780, + [5781] = 5034, + [5782] = 5036, + [5783] = 5037, + [5784] = 5039, + [5785] = 5040, + [5786] = 5042, + [5787] = 5044, + [5788] = 5045, + [5789] = 5046, + [5790] = 5790, + [5791] = 5047, + [5792] = 5048, + [5793] = 5049, + [5794] = 4311, + [5795] = 5050, + [5796] = 5051, + [5797] = 5053, + [5798] = 5054, + [5799] = 5799, + [5800] = 4801, + [5801] = 5801, + [5802] = 5802, + [5803] = 5803, + [5804] = 5804, + [5805] = 5055, + [5806] = 5056, + [5807] = 5057, + [5808] = 5058, + [5809] = 5060, + [5810] = 5062, + [5811] = 5063, + [5812] = 5066, + [5813] = 4803, + [5814] = 5067, + [5815] = 5069, + [5816] = 5071, + [5817] = 5072, + [5818] = 5074, + [5819] = 5075, + [5820] = 5077, + [5821] = 5078, + [5822] = 5080, + [5823] = 5081, + [5824] = 5083, + [5825] = 5087, + [5826] = 5089, + [5827] = 5091, + [5828] = 5092, + [5829] = 5098, + [5830] = 5099, + [5831] = 5100, + [5832] = 5101, + [5833] = 5102, + [5834] = 5104, + [5835] = 5105, + [5836] = 5106, + [5837] = 5107, + [5838] = 5108, + [5839] = 5109, + [5840] = 5840, + [5841] = 5111, + [5842] = 5112, + [5843] = 5113, + [5844] = 5114, + [5845] = 5115, + [5846] = 5116, + [5847] = 5118, + [5848] = 5119, + [5849] = 5120, + [5850] = 5121, + [5851] = 5122, + [5852] = 5123, + [5853] = 5125, + [5854] = 5126, + [5855] = 5127, + [5856] = 5129, + [5857] = 5130, + [5858] = 5132, + [5859] = 5133, + [5860] = 5135, + [5861] = 5136, + [5862] = 5137, + [5863] = 5139, + [5864] = 5864, + [5865] = 5140, + [5866] = 5141, + [5867] = 5143, + [5868] = 5144, + [5869] = 5146, + [5870] = 5147, + [5871] = 5148, + [5872] = 5150, + [5873] = 5151, + [5874] = 5152, + [5875] = 5154, + [5876] = 5155, + [5877] = 5156, + [5878] = 5157, + [5879] = 5159, + [5880] = 5160, + [5881] = 5161, + [5882] = 5163, + [5883] = 5164, + [5884] = 5165, + [5885] = 5166, + [5886] = 5167, + [5887] = 5169, + [5888] = 5170, + [5889] = 5172, + [5890] = 5173, + [5891] = 5891, + [5892] = 5892, + [5893] = 5893, + [5894] = 5176, + [5895] = 5177, + [5896] = 5180, + [5897] = 5182, + [5898] = 5184, + [5899] = 5186, + [5900] = 5188, + [5901] = 5190, + [5902] = 5191, + [5903] = 5192, + [5904] = 5194, + [5905] = 5195, + [5906] = 5197, + [5907] = 5200, + [5908] = 5202, + [5909] = 5204, + [5910] = 5207, + [5911] = 5208, + [5912] = 5210, + [5913] = 5212, + [5914] = 5214, + [5915] = 5915, + [5916] = 5217, + [5917] = 5219, + [5918] = 4502, + [5919] = 5919, + [5920] = 5920, + [5921] = 5221, + [5922] = 5222, + [5923] = 5224, + [5924] = 5225, + [5925] = 5925, + [5926] = 5926, + [5927] = 5226, + [5928] = 4503, + [5929] = 5227, + [5930] = 5930, + [5931] = 5228, + [5932] = 5229, + [5933] = 5933, + [5934] = 5231, + [5935] = 5232, + [5936] = 5936, + [5937] = 5937, + [5938] = 5234, + [5939] = 5235, + [5940] = 5237, + [5941] = 5941, + [5942] = 4731, + [5943] = 5943, + [5944] = 5238, + [5945] = 4805, + [5946] = 5946, + [5947] = 4809, + [5948] = 5241, + [5949] = 5242, + [5950] = 5950, + [5951] = 5951, + [5952] = 5244, + [5953] = 5953, + [5954] = 5954, + [5955] = 5245, + [5956] = 5247, + [5957] = 5957, + [5958] = 4813, + [5959] = 4816, + [5960] = 5249, + [5961] = 5961, + [5962] = 5962, + [5963] = 5251, + [5964] = 5252, + [5965] = 5254, + [5966] = 5256, + [5967] = 5257, + [5968] = 5259, + [5969] = 5969, + [5970] = 5261, + [5971] = 5971, + [5972] = 4817, + [5973] = 5263, + [5974] = 5264, + [5975] = 5975, + [5976] = 5265, + [5977] = 5977, + [5978] = 5267, + [5979] = 5268, + [5980] = 4818, + [5981] = 5981, + [5982] = 5270, + [5983] = 5983, + [5984] = 4819, + [5985] = 5985, + [5986] = 5272, + [5987] = 5274, + [5988] = 5275, + [5989] = 4821, + [5990] = 5277, + [5991] = 5278, + [5992] = 5992, + [5993] = 5279, + [5994] = 5280, + [5995] = 5995, + [5996] = 5282, + [5997] = 5284, + [5998] = 5286, + [5999] = 5289, + [6000] = 4824, + [6001] = 5291, + [6002] = 5292, + [6003] = 6003, + [6004] = 6004, + [6005] = 5294, + [6006] = 4826, + [6007] = 6007, + [6008] = 6008, + [6009] = 5295, + [6010] = 5298, + [6011] = 5300, + [6012] = 6012, + [6013] = 5302, + [6014] = 5304, + [6015] = 6015, + [6016] = 5305, + [6017] = 6017, + [6018] = 6018, + [6019] = 5307, + [6020] = 5308, + [6021] = 5309, + [6022] = 5311, + [6023] = 5313, + [6024] = 5314, + [6025] = 5317, + [6026] = 5319, + [6027] = 5320, + [6028] = 6028, + [6029] = 5323, + [6030] = 5324, + [6031] = 6031, + [6032] = 5325, + [6033] = 6033, + [6034] = 6034, + [6035] = 5327, + [6036] = 5328, + [6037] = 5331, + [6038] = 5333, + [6039] = 4828, + [6040] = 5336, + [6041] = 5338, + [6042] = 5343, + [6043] = 5344, + [6044] = 6044, + [6045] = 6045, + [6046] = 5346, + [6047] = 5347, + [6048] = 6048, + [6049] = 5348, + [6050] = 5350, + [6051] = 5351, + [6052] = 5352, + [6053] = 6053, + [6054] = 6054, + [6055] = 6055, + [6056] = 4831, + [6057] = 5353, + [6058] = 5354, + [6059] = 6059, + [6060] = 5356, + [6061] = 6061, + [6062] = 6062, + [6063] = 4833, + [6064] = 5357, + [6065] = 6065, + [6066] = 6066, + [6067] = 6067, + [6068] = 5358, + [6069] = 5359, + [6070] = 6070, + [6071] = 5360, + [6072] = 6072, + [6073] = 5362, + [6074] = 5364, + [6075] = 6075, + [6076] = 4834, + [6077] = 6077, + [6078] = 5365, + [6079] = 6079, + [6080] = 6080, + [6081] = 5367, + [6082] = 5368, + [6083] = 5370, + [6084] = 6084, + [6085] = 4837, + [6086] = 5372, + [6087] = 6087, + [6088] = 6088, + [6089] = 5374, + [6090] = 5375, + [6091] = 5377, + [6092] = 6092, + [6093] = 6093, + [6094] = 4839, + [6095] = 5378, + [6096] = 4505, + [6097] = 6097, + [6098] = 4841, + [6099] = 5380, + [6100] = 5381, + [6101] = 5382, + [6102] = 6102, + [6103] = 5383, + [6104] = 5385, + [6105] = 4507, + [6106] = 5386, + [6107] = 6107, + [6108] = 6108, + [6109] = 5389, + [6110] = 5391, + [6111] = 4842, + [6112] = 6112, + [6113] = 4846, + [6114] = 5393, + [6115] = 5394, + [6116] = 6116, + [6117] = 4848, + [6118] = 6118, + [6119] = 5396, + [6120] = 6120, + [6121] = 6121, + [6122] = 5398, + [6123] = 5400, + [6124] = 5402, + [6125] = 6125, + [6126] = 5404, + [6127] = 5406, + [6128] = 6128, + [6129] = 5408, + [6130] = 4509, + [6131] = 6131, + [6132] = 5410, + [6133] = 5412, + [6134] = 5414, + [6135] = 5415, + [6136] = 6136, + [6137] = 5416, + [6138] = 5417, + [6139] = 4849, + [6140] = 6140, + [6141] = 6141, + [6142] = 5418, + [6143] = 6143, + [6144] = 4852, + [6145] = 6145, + [6146] = 5419, + [6147] = 5422, + [6148] = 5424, + [6149] = 5425, + [6150] = 5426, + [6151] = 6151, + [6152] = 5428, + [6153] = 6153, + [6154] = 5430, + [6155] = 5432, + [6156] = 5434, + [6157] = 5436, + [6158] = 6158, + [6159] = 5438, + [6160] = 5440, + [6161] = 5442, + [6162] = 5444, + [6163] = 6163, + [6164] = 5446, + [6165] = 5447, + [6166] = 4854, + [6167] = 5448, + [6168] = 4510, + [6169] = 6169, + [6170] = 5450, + [6171] = 5451, + [6172] = 5454, + [6173] = 5456, + [6174] = 4856, + [6175] = 5457, + [6176] = 5459, + [6177] = 5461, + [6178] = 5463, + [6179] = 5464, + [6180] = 6180, + [6181] = 5465, + [6182] = 5466, + [6183] = 5468, + [6184] = 5470, + [6185] = 5473, + [6186] = 6186, + [6187] = 5475, + [6188] = 6188, + [6189] = 4857, + [6190] = 6190, + [6191] = 5476, + [6192] = 5477, + [6193] = 5478, + [6194] = 6194, + [6195] = 4858, + [6196] = 5479, + [6197] = 6197, + [6198] = 6198, + [6199] = 5481, + [6200] = 6200, + [6201] = 6201, + [6202] = 4861, + [6203] = 5482, + [6204] = 5484, + [6205] = 6205, + [6206] = 6206, + [6207] = 5485, + [6208] = 5486, + [6209] = 4863, + [6210] = 6210, + [6211] = 4864, + [6212] = 5488, + [6213] = 6213, + [6214] = 4869, + [6215] = 6215, + [6216] = 5490, + [6217] = 5491, + [6218] = 6218, + [6219] = 5493, + [6220] = 6220, + [6221] = 4879, + [6222] = 6222, + [6223] = 5494, + [6224] = 5497, + [6225] = 5499, + [6226] = 6226, + [6227] = 4881, + [6228] = 5501, + [6229] = 6229, + [6230] = 5502, + [6231] = 6231, + [6232] = 5503, + [6233] = 5505, + [6234] = 5507, + [6235] = 4884, + [6236] = 5508, + [6237] = 5509, + [6238] = 6238, + [6239] = 5510, + [6240] = 5512, + [6241] = 6241, + [6242] = 5513, + [6243] = 5516, + [6244] = 6244, + [6245] = 4886, + [6246] = 5518, + [6247] = 5520, + [6248] = 6248, + [6249] = 6249, + [6250] = 5521, + [6251] = 6251, + [6252] = 6252, + [6253] = 6253, + [6254] = 5522, + [6255] = 5524, + [6256] = 5526, + [6257] = 6257, + [6258] = 5528, + [6259] = 5530, + [6260] = 6260, + [6261] = 5532, + [6262] = 6262, + [6263] = 4890, + [6264] = 5534, + [6265] = 5536, + [6266] = 5538, + [6267] = 5540, + [6268] = 6268, + [6269] = 5541, + [6270] = 5542, + [6271] = 6271, + [6272] = 6272, + [6273] = 6273, + [6274] = 5543, + [6275] = 6275, + [6276] = 6276, + [6277] = 5545, + [6278] = 5546, + [6279] = 5549, + [6280] = 5551, + [6281] = 6281, + [6282] = 5553, + [6283] = 5554, + [6284] = 6284, + [6285] = 5556, + [6286] = 6286, + [6287] = 6287, + [6288] = 5558, + [6289] = 5560, + [6290] = 5562, + [6291] = 5564, + [6292] = 5565, + [6293] = 5567, + [6294] = 5569, + [6295] = 5571, + [6296] = 5575, + [6297] = 6297, + [6298] = 5582, + [6299] = 5602, + [6300] = 6300, + [6301] = 5606, + [6302] = 4897, + [6303] = 6303, + [6304] = 5608, + [6305] = 5623, + [6306] = 5626, + [6307] = 5636, + [6308] = 6308, + [6309] = 5638, + [6310] = 5640, + [6311] = 5644, + [6312] = 5645, + [6313] = 5646, + [6314] = 6314, + [6315] = 5648, + [6316] = 5650, + [6317] = 6317, + [6318] = 5653, + [6319] = 5657, + [6320] = 6320, + [6321] = 5659, + [6322] = 4900, + [6323] = 6323, + [6324] = 6324, + [6325] = 5660, + [6326] = 5673, + [6327] = 5675, + [6328] = 6328, + [6329] = 6329, + [6330] = 5676, + [6331] = 6331, + [6332] = 6332, + [6333] = 6333, + [6334] = 5680, + [6335] = 5684, + [6336] = 6336, + [6337] = 6337, + [6338] = 5687, + [6339] = 5694, + [6340] = 6340, + [6341] = 6341, + [6342] = 6342, + [6343] = 5695, + [6344] = 5705, + [6345] = 6345, + [6346] = 6346, + [6347] = 4903, + [6348] = 5706, + [6349] = 6349, + [6350] = 6350, + [6351] = 6351, + [6352] = 5708, + [6353] = 5710, + [6354] = 5711, + [6355] = 6355, + [6356] = 5713, + [6357] = 4906, + [6358] = 6358, + [6359] = 6359, + [6360] = 5715, + [6361] = 5716, + [6362] = 5718, + [6363] = 6363, + [6364] = 6364, + [6365] = 5719, + [6366] = 6366, + [6367] = 6367, + [6368] = 5720, + [6369] = 5721, + [6370] = 5723, + [6371] = 5725, + [6372] = 6372, + [6373] = 5727, + [6374] = 5728, + [6375] = 6375, + [6376] = 5738, + [6377] = 6377, + [6378] = 5744, + [6379] = 5746, + [6380] = 6380, + [6381] = 6381, + [6382] = 5749, + [6383] = 5764, + [6384] = 6384, + [6385] = 5765, + [6386] = 6386, + [6387] = 5768, + [6388] = 6388, + [6389] = 6389, + [6390] = 5769, + [6391] = 5777, + [6392] = 5778, + [6393] = 6393, + [6394] = 5780, + [6395] = 5790, + [6396] = 5799, + [6397] = 5801, + [6398] = 4907, + [6399] = 6399, + [6400] = 5802, + [6401] = 5803, + [6402] = 5804, + [6403] = 5840, + [6404] = 5864, + [6405] = 5891, + [6406] = 5892, + [6407] = 6407, + [6408] = 5893, + [6409] = 6409, + [6410] = 5915, + [6411] = 6411, + [6412] = 5919, + [6413] = 6413, + [6414] = 5920, + [6415] = 5925, + [6416] = 5926, + [6417] = 5930, + [6418] = 5933, + [6419] = 6419, + [6420] = 5936, + [6421] = 5937, + [6422] = 6422, + [6423] = 5941, + [6424] = 5943, + [6425] = 5946, + [6426] = 5950, + [6427] = 5951, + [6428] = 5953, + [6429] = 5954, + [6430] = 5957, + [6431] = 6431, + [6432] = 5961, + [6433] = 5962, + [6434] = 6434, + [6435] = 5969, + [6436] = 6436, + [6437] = 6437, + [6438] = 5971, + [6439] = 5975, + [6440] = 5977, + [6441] = 5981, + [6442] = 6442, + [6443] = 5983, + [6444] = 5985, + [6445] = 5992, + [6446] = 5995, + [6447] = 6003, + [6448] = 6448, + [6449] = 6004, + [6450] = 6007, + [6451] = 4910, + [6452] = 6452, + [6453] = 6453, + [6454] = 6454, + [6455] = 6455, + [6456] = 6456, + [6457] = 6457, + [6458] = 6458, + [6459] = 6459, + [6460] = 6460, + [6461] = 4312, + [6462] = 6008, + [6463] = 6012, + [6464] = 6015, + [6465] = 6017, + [6466] = 6018, + [6467] = 6028, + [6468] = 6031, + [6469] = 6033, + [6470] = 6034, + [6471] = 6045, + [6472] = 6048, + [6473] = 6053, + [6474] = 6054, + [6475] = 6055, + [6476] = 6059, + [6477] = 6061, + [6478] = 6062, + [6479] = 6065, + [6480] = 6066, + [6481] = 6067, + [6482] = 6070, + [6483] = 6072, + [6484] = 6075, + [6485] = 6077, + [6486] = 6079, + [6487] = 6080, + [6488] = 6084, + [6489] = 6087, + [6490] = 6088, + [6491] = 6092, + [6492] = 6093, + [6493] = 6097, + [6494] = 6102, + [6495] = 6107, + [6496] = 6108, + [6497] = 6112, + [6498] = 6116, + [6499] = 6118, + [6500] = 6120, + [6501] = 6121, + [6502] = 6125, + [6503] = 6128, + [6504] = 6131, + [6505] = 6136, + [6506] = 4313, + [6507] = 6140, + [6508] = 6141, + [6509] = 6143, + [6510] = 6145, + [6511] = 6151, + [6512] = 6153, + [6513] = 6158, + [6514] = 6163, + [6515] = 4314, + [6516] = 6169, + [6517] = 6180, + [6518] = 6186, + [6519] = 6188, + [6520] = 4315, + [6521] = 4316, + [6522] = 4317, + [6523] = 6190, + [6524] = 4318, + [6525] = 6194, + [6526] = 6197, + [6527] = 6198, + [6528] = 6200, + [6529] = 4319, + [6530] = 4320, + [6531] = 6201, + [6532] = 4321, + [6533] = 4322, + [6534] = 6205, + [6535] = 6206, + [6536] = 4323, + [6537] = 4324, + [6538] = 4325, + [6539] = 6210, + [6540] = 6213, + [6541] = 4326, + [6542] = 6215, + [6543] = 6218, + [6544] = 6220, + [6545] = 4327, + [6546] = 6222, + [6547] = 6226, + [6548] = 4328, + [6549] = 4329, + [6550] = 6229, + [6551] = 6231, + [6552] = 6238, + [6553] = 4330, + [6554] = 6241, + [6555] = 6244, + [6556] = 4331, + [6557] = 4918, + [6558] = 4332, + [6559] = 4333, + [6560] = 6248, + [6561] = 6249, + [6562] = 6251, + [6563] = 6252, + [6564] = 4334, + [6565] = 4919, + [6566] = 6253, + [6567] = 6257, + [6568] = 6260, + [6569] = 6262, + [6570] = 4335, + [6571] = 6268, + [6572] = 4921, + [6573] = 4336, + [6574] = 4337, + [6575] = 6271, + [6576] = 6272, + [6577] = 4338, + [6578] = 4339, + [6579] = 4340, + [6580] = 4341, + [6581] = 6273, + [6582] = 6275, + [6583] = 6276, + [6584] = 4925, + [6585] = 4342, + [6586] = 4343, + [6587] = 6281, + [6588] = 4927, + [6589] = 4344, + [6590] = 6284, + [6591] = 4345, + [6592] = 4346, + [6593] = 6286, + [6594] = 6287, + [6595] = 4347, + [6596] = 4929, + [6597] = 4348, + [6598] = 6297, + [6599] = 4349, + [6600] = 4936, + [6601] = 6300, + [6602] = 4350, + [6603] = 4351, + [6604] = 4937, + [6605] = 6303, + [6606] = 6308, + [6607] = 6314, + [6608] = 6320, + [6609] = 6323, + [6610] = 6324, + [6611] = 4352, + [6612] = 4939, + [6613] = 4353, + [6614] = 6328, + [6615] = 6329, + [6616] = 4354, + [6617] = 4355, + [6618] = 6331, + [6619] = 4941, + [6620] = 4356, + [6621] = 6332, + [6622] = 6333, + [6623] = 6336, + [6624] = 4943, + [6625] = 6337, + [6626] = 6340, + [6627] = 4357, + [6628] = 6341, + [6629] = 4358, + [6630] = 6345, + [6631] = 6346, + [6632] = 4949, + [6633] = 4359, + [6634] = 4360, + [6635] = 6349, + [6636] = 4361, + [6637] = 4362, + [6638] = 6350, + [6639] = 6351, + [6640] = 6355, + [6641] = 6358, + [6642] = 4363, + [6643] = 6359, + [6644] = 6363, + [6645] = 6364, + [6646] = 4364, + [6647] = 6366, + [6648] = 6367, + [6649] = 4365, + [6650] = 4951, + [6651] = 4366, + [6652] = 6372, + [6653] = 6375, + [6654] = 6377, + [6655] = 6380, + [6656] = 4367, + [6657] = 6381, + [6658] = 6384, + [6659] = 6386, + [6660] = 4368, + [6661] = 6388, + [6662] = 6389, + [6663] = 4369, + [6664] = 4370, + [6665] = 4371, + [6666] = 6393, + [6667] = 6399, + [6668] = 6407, + [6669] = 6409, + [6670] = 6411, + [6671] = 4372, + [6672] = 6413, + [6673] = 6419, + [6674] = 6422, + [6675] = 6431, + [6676] = 6434, + [6677] = 6436, + [6678] = 6437, + [6679] = 4373, + [6680] = 4374, + [6681] = 4375, + [6682] = 4376, + [6683] = 4377, + [6684] = 4378, + [6685] = 4379, + [6686] = 4380, + [6687] = 4381, + [6688] = 4382, + [6689] = 4953, + [6690] = 4383, + [6691] = 4384, + [6692] = 4519, + [6693] = 4385, + [6694] = 4386, + [6695] = 4387, + [6696] = 4954, + [6697] = 4388, + [6698] = 6442, + [6699] = 6448, + [6700] = 6452, + [6701] = 6453, + [6702] = 6454, + [6703] = 6455, + [6704] = 6456, + [6705] = 4389, + [6706] = 4390, + [6707] = 4956, + [6708] = 4391, + [6709] = 4392, + [6710] = 4393, + [6711] = 4394, + [6712] = 4395, + [6713] = 4396, + [6714] = 6457, + [6715] = 6458, + [6716] = 6459, + [6717] = 6460, + [6718] = 6044, + [6719] = 3661, + [6720] = 3665, + [6721] = 3665, + [6722] = 3661, + [6723] = 6723, + [6724] = 6724, + [6725] = 6725, + [6726] = 6726, + [6727] = 6723, + [6728] = 6724, + [6729] = 6729, + [6730] = 6730, + [6731] = 6731, + [6732] = 6732, + [6733] = 6726, + [6734] = 6734, + [6735] = 6735, + [6736] = 6731, + [6737] = 6732, + [6738] = 6738, + [6739] = 6739, + [6740] = 6739, + [6741] = 6738, + [6742] = 6742, + [6743] = 6742, + [6744] = 6744, + [6745] = 6730, + [6746] = 6738, + [6747] = 6742, + [6748] = 6748, + [6749] = 6749, + [6750] = 6750, + [6751] = 6729, + [6752] = 6749, + [6753] = 6753, + [6754] = 6749, + [6755] = 6749, + [6756] = 6749, + [6757] = 6749, + [6758] = 6758, + [6759] = 6759, + [6760] = 6760, + [6761] = 6760, + [6762] = 6762, + [6763] = 6763, + [6764] = 6764, + [6765] = 6765, + [6766] = 6766, + [6767] = 6767, + [6768] = 6768, + [6769] = 6769, + [6770] = 6765, + [6771] = 6771, + [6772] = 6767, + [6773] = 6773, + [6774] = 6774, + [6775] = 6775, + [6776] = 6776, + [6777] = 6777, + [6778] = 6778, + [6779] = 6767, + [6780] = 6780, + [6781] = 6781, + [6782] = 6782, + [6783] = 6783, + [6784] = 6767, + [6785] = 6767, + [6786] = 6759, + [6787] = 6787, + [6788] = 6788, + [6789] = 6789, + [6790] = 6790, + [6791] = 6791, + [6792] = 6767, + [6793] = 6793, + [6794] = 6794, + [6795] = 6795, + [6796] = 6796, + [6797] = 6797, + [6798] = 6798, + [6799] = 6799, + [6800] = 6800, + [6801] = 6767, + [6802] = 6767, + [6803] = 6803, + [6804] = 6767, + [6805] = 6767, + [6806] = 6767, + [6807] = 6767, + [6808] = 6808, + [6809] = 6809, + [6810] = 6810, + [6811] = 6811, + [6812] = 6812, + [6813] = 6813, + [6814] = 6814, + [6815] = 6815, + [6816] = 6814, + [6817] = 6817, + [6818] = 6818, + [6819] = 6795, + [6820] = 6820, + [6821] = 6811, + [6822] = 6813, + [6823] = 6810, + [6824] = 6812, + [6825] = 6815, + [6826] = 6814, + [6827] = 6827, + [6828] = 6820, + [6829] = 6818, + [6830] = 6827, + [6831] = 6818, + [6832] = 6827, + [6833] = 6820, + [6834] = 6811, + [6835] = 6827, + [6836] = 6796, + [6837] = 6818, + [6838] = 6797, + [6839] = 6820, + [6840] = 6811, + [6841] = 6813, + [6842] = 6810, + [6843] = 6812, + [6844] = 6815, + [6845] = 6768, + [6846] = 6827, + [6847] = 6814, + [6848] = 6813, + [6849] = 6810, + [6850] = 6812, + [6851] = 6815, + [6852] = 6814, + [6853] = 6818, + [6854] = 6827, + [6855] = 6798, + [6856] = 6820, + [6857] = 6811, + [6858] = 6813, + [6859] = 6810, + [6860] = 6812, + [6861] = 6815, + [6862] = 6817, + [6863] = 6814, + [6864] = 6811, + [6865] = 6865, + [6866] = 6866, + [6867] = 6818, + [6868] = 6818, + [6869] = 6827, + [6870] = 6870, + [6871] = 6812, + [6872] = 6820, + [6873] = 6811, + [6874] = 6815, + [6875] = 6813, + [6876] = 6810, + [6877] = 6812, + [6878] = 6815, + [6879] = 6814, + [6880] = 6818, + [6881] = 6813, + [6882] = 6820, + [6883] = 6811, + [6884] = 6813, + [6885] = 6810, + [6886] = 6814, + [6887] = 6812, + [6888] = 6888, + [6889] = 6818, + [6890] = 6827, + [6891] = 6766, + [6892] = 6810, + [6893] = 6827, + [6894] = 6815, + [6895] = 6814, + [6896] = 6812, + [6897] = 6820, + [6898] = 6811, + [6899] = 6813, + [6900] = 6810, + [6901] = 6812, + [6902] = 6815, + [6903] = 6814, + [6904] = 6815, + [6905] = 6820, + [6906] = 6811, + [6907] = 6813, + [6908] = 6810, + [6909] = 6812, + [6910] = 6815, + [6911] = 6814, + [6912] = 6820, + [6913] = 6913, + [6914] = 6820, + [6915] = 6818, + [6916] = 6818, + [6917] = 6811, + [6918] = 6813, + [6919] = 6810, + [6920] = 6812, + [6921] = 6815, + [6922] = 6814, + [6923] = 6818, + [6924] = 6818, + [6925] = 6818, + [6926] = 6827, + [6927] = 6811, + [6928] = 6820, + [6929] = 6813, + [6930] = 6810, + [6931] = 6827, + [6932] = 6827, + [6933] = 6913, + [6934] = 6913, + [6935] = 6935, + [6936] = 6936, + [6937] = 6937, + [6938] = 6913, + [6939] = 6937, + [6940] = 6940, + [6941] = 6935, + [6942] = 6762, + [6943] = 6758, + [6944] = 6937, + [6945] = 6945, + [6946] = 6946, + [6947] = 6947, + [6948] = 6948, + [6949] = 6949, + [6950] = 6950, + [6951] = 6951, + [6952] = 6952, + [6953] = 6953, + [6954] = 6936, + [6955] = 6935, + [6956] = 6936, + [6957] = 6957, + [6958] = 6935, + [6959] = 6936, + [6960] = 6960, + [6961] = 6937, + [6962] = 6962, + [6963] = 6947, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, + [6968] = 6803, + [6969] = 6788, + [6970] = 5392, + [6971] = 6865, + [6972] = 5401, + [6973] = 6973, + [6974] = 5025, + [6975] = 6975, + [6976] = 5392, + [6977] = 5401, + [6978] = 6317, + [6979] = 6342, + [6980] = 4562, + [6981] = 4573, + [6982] = 6808, + [6983] = 6777, + [6984] = 6866, + [6985] = 6317, + [6986] = 6791, + [6987] = 6342, + [6988] = 6800, + [6989] = 6771, + [6990] = 6773, + [6991] = 4562, + [6992] = 6992, + [6993] = 6799, + [6994] = 4573, + [6995] = 6995, + [6996] = 6996, + [6997] = 6997, + [6998] = 6998, + [6999] = 6999, + [7000] = 6776, + [7001] = 6790, + [7002] = 7002, + [7003] = 6789, + [7004] = 6780, + [7005] = 7005, + [7006] = 7006, + [7007] = 7007, + [7008] = 6778, + [7009] = 7009, + [7010] = 7010, + [7011] = 7011, + [7012] = 7012, + [7013] = 7013, + [7014] = 6781, + [7015] = 7015, + [7016] = 6753, + [7017] = 7017, + [7018] = 6948, + [7019] = 6945, + [7020] = 6946, + [7021] = 6949, + [7022] = 6950, + [7023] = 6951, + [7024] = 6952, + [7025] = 6953, + [7026] = 6960, + [7027] = 7027, + [7028] = 6945, + [7029] = 6946, + [7030] = 6949, + [7031] = 6950, + [7032] = 6951, + [7033] = 6952, + [7034] = 6953, + [7035] = 6960, + [7036] = 6870, + [7037] = 6947, + [7038] = 6888, + [7039] = 6947, + [7040] = 6948, + [7041] = 6787, + [7042] = 6945, + [7043] = 6946, + [7044] = 7044, + [7045] = 6750, + [7046] = 6949, + [7047] = 6950, + [7048] = 6951, + [7049] = 6782, + [7050] = 6783, + [7051] = 6952, + [7052] = 6948, + [7053] = 6953, + [7054] = 6960, + [7055] = 6809, + [7056] = 6793, + [7057] = 6794, + [7058] = 5025, + [7059] = 6750, + [7060] = 6753, + [7061] = 7061, + [7062] = 7062, + [7063] = 7063, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 7013, + [7068] = 6763, + [7069] = 6750, + [7070] = 7063, + [7071] = 6753, + [7072] = 6913, + [7073] = 7063, + [7074] = 6750, + [7075] = 6764, + [7076] = 6940, + [7077] = 7009, + [7078] = 6762, + [7079] = 7009, + [7080] = 5025, + [7081] = 6758, + [7082] = 6758, + [7083] = 6957, + [7084] = 4562, + [7085] = 6753, + [7086] = 6750, + [7087] = 6753, + [7088] = 6750, + [7089] = 6962, + [7090] = 6957, + [7091] = 6753, + [7092] = 5392, + [7093] = 5401, + [7094] = 6940, + [7095] = 6762, + [7096] = 6762, + [7097] = 6962, + [7098] = 4573, + [7099] = 6758, + [7100] = 6753, + [7101] = 6750, + [7102] = 6317, + [7103] = 6342, + [7104] = 6962, + [7105] = 6940, + [7106] = 7009, + [7107] = 6913, + [7108] = 7013, + [7109] = 6753, + [7110] = 7063, + [7111] = 7013, + [7112] = 6957, + [7113] = 6865, + [7114] = 7064, + [7115] = 6967, + [7116] = 7015, + [7117] = 6803, + [7118] = 6790, + [7119] = 6870, + [7120] = 6777, + [7121] = 7027, + [7122] = 7065, + [7123] = 7044, + [7124] = 7066, + [7125] = 7005, + [7126] = 6973, + [7127] = 6975, + [7128] = 6997, + [7129] = 6999, + [7130] = 7007, + [7131] = 7012, + [7132] = 6888, + [7133] = 7061, + [7134] = 7062, + [7135] = 6995, + [7136] = 6973, + [7137] = 6996, + [7138] = 6998, + [7139] = 7002, + [7140] = 7006, + [7141] = 7010, + [7142] = 6995, + [7143] = 6975, + [7144] = 7065, + [7145] = 6964, + [7146] = 6992, + [7147] = 7064, + [7148] = 7011, + [7149] = 7017, + [7150] = 6965, + [7151] = 6865, + [7152] = 6866, + [7153] = 6996, + [7154] = 7064, + [7155] = 6967, + [7156] = 7156, + [7157] = 7015, + [7158] = 6998, + [7159] = 7002, + [7160] = 7006, + [7161] = 7061, + [7162] = 6787, + [7163] = 7062, + [7164] = 7010, + [7165] = 6967, + [7166] = 7015, + [7167] = 6808, + [7168] = 6788, + [7169] = 6789, + [7170] = 7044, + [7171] = 7066, + [7172] = 7005, + [7173] = 6997, + [7174] = 6999, + [7175] = 7007, + [7176] = 7012, + [7177] = 6774, + [7178] = 6775, + [7179] = 7061, + [7180] = 7062, + [7181] = 6791, + [7182] = 5025, + [7183] = 6799, + [7184] = 6803, + [7185] = 6777, + [7186] = 6995, + [7187] = 6996, + [7188] = 6998, + [7189] = 7002, + [7190] = 7006, + [7191] = 6778, + [7192] = 7010, + [7193] = 5392, + [7194] = 5392, + [7195] = 5401, + [7196] = 6787, + [7197] = 6788, + [7198] = 6789, + [7199] = 7065, + [7200] = 6964, + [7201] = 6771, + [7202] = 6992, + [7203] = 6317, + [7204] = 6342, + [7205] = 6780, + [7206] = 6781, + [7207] = 6782, + [7208] = 6783, + [7209] = 6809, + [7210] = 6793, + [7211] = 6794, + [7212] = 7011, + [7213] = 7027, + [7214] = 4573, + [7215] = 6800, + [7216] = 6773, + [7217] = 6776, + [7218] = 7017, + [7219] = 6790, + [7220] = 6964, + [7221] = 6870, + [7222] = 6992, + [7223] = 5401, + [7224] = 6888, + [7225] = 6808, + [7226] = 6865, + [7227] = 6866, + [7228] = 6317, + [7229] = 6791, + [7230] = 5025, + [7231] = 6342, + [7232] = 6799, + [7233] = 6778, + [7234] = 6771, + [7235] = 6803, + [7236] = 6777, + [7237] = 6778, + [7238] = 5392, + [7239] = 5401, + [7240] = 6787, + [7241] = 6788, + [7242] = 6789, + [7243] = 6771, + [7244] = 6317, + [7245] = 6342, + [7246] = 6780, + [7247] = 6781, + [7248] = 6782, + [7249] = 6966, + [7250] = 6783, + [7251] = 6809, + [7252] = 6793, + [7253] = 6794, + [7254] = 4562, + [7255] = 6973, + [7256] = 4573, + [7257] = 6800, + [7258] = 6773, + [7259] = 6776, + [7260] = 6790, + [7261] = 6780, + [7262] = 6763, + [7263] = 6764, + [7264] = 7027, + [7265] = 5025, + [7266] = 6781, + [7267] = 6782, + [7268] = 6975, + [7269] = 6763, + [7270] = 6783, + [7271] = 6809, + [7272] = 6870, + [7273] = 6888, + [7274] = 6793, + [7275] = 6794, + [7276] = 6764, + [7277] = 7011, + [7278] = 6966, + [7279] = 4562, + [7280] = 6808, + [7281] = 4573, + [7282] = 7282, + [7283] = 7044, + [7284] = 7066, + [7285] = 7005, + [7286] = 6763, + [7287] = 6997, + [7288] = 6999, + [7289] = 7007, + [7290] = 7012, + [7291] = 6791, + [7292] = 6764, + [7293] = 6800, + [7294] = 7017, + [7295] = 6965, + [7296] = 6774, + [7297] = 6965, + [7298] = 6775, + [7299] = 6773, + [7300] = 6776, + [7301] = 6866, + [7302] = 6966, + [7303] = 6799, + [7304] = 4562, + [7305] = 6775, + [7306] = 6913, + [7307] = 6774, + [7308] = 6774, + [7309] = 6775, + [7310] = 6775, + [7311] = 6774, + [7312] = 6774, + [7313] = 6775, + [7314] = 7282, + [7315] = 6913, + [7316] = 7156, + [7317] = 6913, + [7318] = 6913, + [7319] = 6774, + [7320] = 7282, + [7321] = 7156, + [7322] = 7282, + [7323] = 7156, + [7324] = 6775, + [7325] = 6913, + [7326] = 6913, + [7327] = 6774, + [7328] = 6775, + [7329] = 6950, + [7330] = 6948, + [7331] = 6960, + [7332] = 6952, + [7333] = 6951, + [7334] = 6935, + [7335] = 6947, + [7336] = 6946, + [7337] = 6953, + [7338] = 6936, + [7339] = 6913, + [7340] = 6953, + [7341] = 6947, + [7342] = 6951, + [7343] = 6949, + [7344] = 6945, + [7345] = 6950, + [7346] = 6952, + [7347] = 6937, + [7348] = 6946, + [7349] = 6945, + [7350] = 6949, + [7351] = 6960, + [7352] = 6948, + [7353] = 7353, + [7354] = 7013, + [7355] = 6913, + [7356] = 6753, + [7357] = 6750, + [7358] = 7009, + [7359] = 6946, + [7360] = 6937, + [7361] = 6951, + [7362] = 6949, + [7363] = 6945, + [7364] = 6950, + [7365] = 6947, + [7366] = 6947, + [7367] = 6935, + [7368] = 6951, + [7369] = 6952, + [7370] = 6937, + [7371] = 6948, + [7372] = 6947, + [7373] = 6946, + [7374] = 6758, + [7375] = 6953, + [7376] = 6948, + [7377] = 6960, + [7378] = 6953, + [7379] = 6947, + [7380] = 6952, + [7381] = 6957, + [7382] = 6949, + [7383] = 7383, + [7384] = 6960, + [7385] = 6950, + [7386] = 6945, + [7387] = 6946, + [7388] = 6949, + [7389] = 6950, + [7390] = 6951, + [7391] = 6936, + [7392] = 6945, + [7393] = 6952, + [7394] = 6947, + [7395] = 6952, + [7396] = 6960, + [7397] = 6946, + [7398] = 6936, + [7399] = 6935, + [7400] = 6945, + [7401] = 6960, + [7402] = 6950, + [7403] = 6951, + [7404] = 6962, + [7405] = 6952, + [7406] = 6945, + [7407] = 6951, + [7408] = 6913, + [7409] = 6948, + [7410] = 6913, + [7411] = 6948, + [7412] = 6949, + [7413] = 6949, + [7414] = 6763, + [7415] = 6950, + [7416] = 6940, + [7417] = 6948, + [7418] = 6953, + [7419] = 6946, + [7420] = 6762, + [7421] = 6960, + [7422] = 6764, + [7423] = 6953, + [7424] = 6953, + [7425] = 7007, + [7426] = 6791, + [7427] = 6777, + [7428] = 6799, + [7429] = 6995, + [7430] = 6778, + [7431] = 6787, + [7432] = 6788, + [7433] = 6789, + [7434] = 6771, + [7435] = 6780, + [7436] = 6781, + [7437] = 6782, + [7438] = 6783, + [7439] = 6809, + [7440] = 6793, + [7441] = 6794, + [7442] = 6800, + [7443] = 6773, + [7444] = 6776, + [7445] = 6790, + [7446] = 6996, + [7447] = 6998, + [7448] = 7002, + [7449] = 7006, + [7450] = 7010, + [7451] = 6952, + [7452] = 7353, + [7453] = 7044, + [7454] = 6945, + [7455] = 6946, + [7456] = 6949, + [7457] = 6936, + [7458] = 6950, + [7459] = 6951, + [7460] = 7065, + [7461] = 6964, + [7462] = 6947, + [7463] = 6992, + [7464] = 7066, + [7465] = 7005, + [7466] = 6948, + [7467] = 6997, + [7468] = 6999, + [7469] = 7011, + [7470] = 6965, + [7471] = 6913, + [7472] = 6808, + [7473] = 6960, + [7474] = 7017, + [7475] = 6913, + [7476] = 7012, + [7477] = 6791, + [7478] = 6865, + [7479] = 6866, + [7480] = 6937, + [7481] = 6799, + [7482] = 7482, + [7483] = 6913, + [7484] = 6803, + [7485] = 6778, + [7486] = 6787, + [7487] = 6788, + [7488] = 6789, + [7489] = 6771, + [7490] = 6953, + [7491] = 6780, + [7492] = 6781, + [7493] = 6782, + [7494] = 6783, + [7495] = 6809, + [7496] = 6793, + [7497] = 6794, + [7498] = 6800, + [7499] = 6774, + [7500] = 6775, + [7501] = 6773, + [7502] = 6776, + [7503] = 6790, + [7504] = 6966, + [7505] = 7027, + [7506] = 6870, + [7507] = 6888, + [7508] = 7353, + [7509] = 6935, + [7510] = 7061, + [7511] = 7062, + [7512] = 7064, + [7513] = 6913, + [7514] = 7353, + [7515] = 7515, + [7516] = 6967, + [7517] = 7517, + [7518] = 6973, + [7519] = 6975, + [7520] = 7015, + [7521] = 7353, + [7522] = 6962, + [7523] = 7523, + [7524] = 6940, + [7525] = 6962, + [7526] = 7526, + [7527] = 7523, + [7528] = 6762, + [7529] = 7523, + [7530] = 7523, + [7531] = 6769, + [7532] = 6758, + [7533] = 7533, + [7534] = 7534, + [7535] = 7523, + [7536] = 7536, + [7537] = 6763, + [7538] = 7523, + [7539] = 7539, + [7540] = 6764, + [7541] = 7523, + [7542] = 6762, + [7543] = 7523, + [7544] = 6957, + [7545] = 7523, + [7546] = 6759, + [7547] = 6758, + [7548] = 6957, + [7549] = 7549, + [7550] = 6765, + [7551] = 7523, + [7552] = 6940, + [7553] = 7027, + [7554] = 6973, + [7555] = 7010, + [7556] = 7027, + [7557] = 6965, + [7558] = 6865, + [7559] = 6866, + [7560] = 6975, + [7561] = 6778, + [7562] = 5025, + [7563] = 7563, + [7564] = 6766, + [7565] = 7064, + [7566] = 6957, + [7567] = 5392, + [7568] = 6967, + [7569] = 7015, + [7570] = 5401, + [7571] = 7011, + [7572] = 7539, + [7573] = 6808, + [7574] = 6973, + [7575] = 6975, + [7576] = 6966, + [7577] = 4562, + [7578] = 4573, + [7579] = 7534, + [7580] = 6940, + [7581] = 6758, + [7582] = 7582, + [7583] = 7062, + [7584] = 7539, + [7585] = 6780, + [7586] = 7586, + [7587] = 7587, + [7588] = 6762, + [7589] = 6781, + [7590] = 6791, + [7591] = 5025, + [7592] = 6995, + [7593] = 7044, + [7594] = 7066, + [7595] = 7005, + [7596] = 7596, + [7597] = 6771, + [7598] = 6997, + [7599] = 6999, + [7600] = 7007, + [7601] = 7012, + [7602] = 7061, + [7603] = 7062, + [7604] = 6782, + [7605] = 6799, + [7606] = 6783, + [7607] = 6809, + [7608] = 6787, + [7609] = 6788, + [7610] = 6996, + [7611] = 6789, + [7612] = 6759, + [7613] = 6803, + [7614] = 6799, + [7615] = 6777, + [7616] = 7065, + [7617] = 6765, + [7618] = 6777, + [7619] = 6995, + [7620] = 6996, + [7621] = 6998, + [7622] = 7002, + [7623] = 7006, + [7624] = 6964, + [7625] = 7010, + [7626] = 6793, + [7627] = 6765, + [7628] = 6998, + [7629] = 7065, + [7630] = 6964, + [7631] = 6778, + [7632] = 6992, + [7633] = 7061, + [7634] = 6962, + [7635] = 5392, + [7636] = 5401, + [7637] = 6787, + [7638] = 6788, + [7639] = 6992, + [7640] = 6789, + [7641] = 6865, + [7642] = 6866, + [7643] = 6771, + [7644] = 7011, + [7645] = 7017, + [7646] = 7646, + [7647] = 6317, + [7648] = 6342, + [7649] = 6780, + [7650] = 6781, + [7651] = 7017, + [7652] = 6782, + [7653] = 6965, + [7654] = 6769, + [7655] = 6870, + [7656] = 6800, + [7657] = 6783, + [7658] = 6888, + [7659] = 6809, + [7660] = 6794, + [7661] = 6793, + [7662] = 6794, + [7663] = 6795, + [7664] = 7064, + [7665] = 6967, + [7666] = 7015, + [7667] = 4562, + [7668] = 4573, + [7669] = 6800, + [7670] = 6773, + [7671] = 6776, + [7672] = 6769, + [7673] = 6790, + [7674] = 6870, + [7675] = 6888, + [7676] = 6317, + [7677] = 6796, + [7678] = 6342, + [7679] = 6797, + [7680] = 7002, + [7681] = 6808, + [7682] = 7006, + [7683] = 6798, + [7684] = 7044, + [7685] = 6773, + [7686] = 7066, + [7687] = 7005, + [7688] = 6776, + [7689] = 6870, + [7690] = 6764, + [7691] = 6997, + [7692] = 6999, + [7693] = 7007, + [7694] = 7536, + [7695] = 7012, + [7696] = 6966, + [7697] = 6791, + [7698] = 6790, + [7699] = 6888, + [7700] = 7526, + [7701] = 6803, + [7702] = 6763, + [7703] = 7533, + [7704] = 6759, + [7705] = 7062, + [7706] = 6798, + [7707] = 7002, + [7708] = 6870, + [7709] = 6975, + [7710] = 7539, + [7711] = 7010, + [7712] = 7066, + [7713] = 6803, + [7714] = 7005, + [7715] = 6992, + [7716] = 6763, + [7717] = 6764, + [7718] = 7011, + [7719] = 6808, + [7720] = 6967, + [7721] = 7721, + [7722] = 7722, + [7723] = 7015, + [7724] = 6965, + [7725] = 6870, + [7726] = 6997, + [7727] = 6966, + [7728] = 6888, + [7729] = 6795, + [7730] = 6796, + [7731] = 6797, + [7732] = 6798, + [7733] = 6798, + [7734] = 6865, + [7735] = 6866, + [7736] = 6870, + [7737] = 6888, + [7738] = 6766, + [7739] = 6795, + [7740] = 6998, + [7741] = 7006, + [7742] = 7742, + [7743] = 7017, + [7744] = 6999, + [7745] = 6797, + [7746] = 7007, + [7747] = 7044, + [7748] = 7012, + [7749] = 7721, + [7750] = 6795, + [7751] = 7751, + [7752] = 7752, + [7753] = 7065, + [7754] = 7027, + [7755] = 6888, + [7756] = 6796, + [7757] = 6996, + [7758] = 6995, + [7759] = 6766, + [7760] = 7526, + [7761] = 6964, + [7762] = 7533, + [7763] = 7534, + [7764] = 7536, + [7765] = 6777, + [7766] = 6796, + [7767] = 6797, + [7768] = 6766, + [7769] = 7515, + [7770] = 7517, + [7771] = 6763, + [7772] = 6764, + [7773] = 7064, + [7774] = 7061, + [7775] = 7482, + [7776] = 7722, + [7777] = 7539, + [7778] = 6973, + [7779] = 7009, + [7780] = 6764, + [7781] = 7781, + [7782] = 7009, + [7783] = 7539, + [7784] = 7784, + [7785] = 6870, + [7786] = 6888, + [7787] = 6870, + [7788] = 7009, + [7789] = 6888, + [7790] = 6763, + [7791] = 6789, + [7792] = 6798, + [7793] = 7752, + [7794] = 6791, + [7795] = 6799, + [7796] = 6778, + [7797] = 6787, + [7798] = 6788, + [7799] = 6771, + [7800] = 6780, + [7801] = 6781, + [7802] = 6782, + [7803] = 6783, + [7804] = 6809, + [7805] = 6793, + [7806] = 6794, + [7807] = 6800, + [7808] = 6773, + [7809] = 6776, + [7810] = 6790, + [7811] = 6866, + [7812] = 6766, + [7813] = 7751, + [7814] = 6870, + [7815] = 6888, + [7816] = 6795, + [7817] = 6870, + [7818] = 6796, + [7819] = 6888, + [7820] = 6797, + [7821] = 6865, + [7822] = 7822, + [7823] = 7823, + [7824] = 7824, + [7825] = 7825, + [7826] = 7825, + [7827] = 7827, + [7828] = 7824, + [7829] = 7829, + [7830] = 7824, + [7831] = 7827, + [7832] = 7827, + [7833] = 7825, + [7834] = 7827, + [7835] = 7824, + [7836] = 7827, + [7837] = 7829, + [7838] = 7827, + [7839] = 7827, + [7840] = 7827, + [7841] = 7827, + [7842] = 7827, + [7843] = 7827, + [7844] = 7827, + [7845] = 7829, + [7846] = 7825, + [7847] = 7847, + [7848] = 7848, + [7849] = 7849, + [7850] = 7848, + [7851] = 7851, + [7852] = 7852, + [7853] = 7853, + [7854] = 7849, + [7855] = 7855, + [7856] = 7852, + [7857] = 7857, + [7858] = 7857, + [7859] = 7848, + [7860] = 7857, + [7861] = 7861, + [7862] = 7851, + [7863] = 7847, + [7864] = 7852, + [7865] = 7865, + [7866] = 7865, + [7867] = 7848, + [7868] = 7849, + [7869] = 7851, + [7870] = 7847, + [7871] = 7853, + [7872] = 7855, + [7873] = 7851, + [7874] = 7857, + [7875] = 7861, + [7876] = 7855, + [7877] = 7849, + [7878] = 7878, + [7879] = 7852, + [7880] = 7853, + [7881] = 7881, + [7882] = 7882, + [7883] = 7855, + [7884] = 7884, + [7885] = 7865, + [7886] = 7886, + [7887] = 7865, + [7888] = 7853, + [7889] = 7847, + [7890] = 7890, + [7891] = 7891, + [7892] = 7892, + [7893] = 7891, + [7894] = 7891, + [7895] = 7895, + [7896] = 7892, + [7897] = 7897, + [7898] = 7897, + [7899] = 7899, + [7900] = 7900, + [7901] = 7900, + [7902] = 7902, + [7903] = 7900, + [7904] = 7904, + [7905] = 7902, + [7906] = 7900, + [7907] = 7902, + [7908] = 7904, + [7909] = 7909, + [7910] = 7910, + [7911] = 7899, + [7912] = 7910, + [7913] = 7909, + [7914] = 7909, + [7915] = 7902, + [7916] = 7899, + [7917] = 7899, + [7918] = 7910, + [7919] = 7909, + [7920] = 7910, + [7921] = 7825, + [7922] = 7922, + [7923] = 7825, + [7924] = 7824, + [7925] = 7824, + [7926] = 7926, + [7927] = 7926, + [7928] = 7886, + [7929] = 7929, + [7930] = 7884, + [7931] = 7931, + [7932] = 7929, + [7933] = 7933, + [7934] = 7878, + [7935] = 7882, + [7936] = 7881, + [7937] = 7929, + [7938] = 7926, + [7939] = 7929, + [7940] = 7926, + [7941] = 7825, + [7942] = 7824, + [7943] = 7825, + [7944] = 7824, + [7945] = 7825, + [7946] = 7824, + [7947] = 7824, + [7948] = 7824, + [7949] = 7825, + [7950] = 7825, + [7951] = 6798, + [7952] = 7824, + [7953] = 7953, + [7954] = 6797, + [7955] = 7825, + [7956] = 7956, + [7957] = 7956, + [7958] = 7751, + [7959] = 7959, + [7960] = 6795, + [7961] = 6766, + [7962] = 6796, + [7963] = 7752, + [7964] = 7964, + [7965] = 7964, + [7966] = 7966, + [7967] = 7967, + [7968] = 7968, + [7969] = 7969, + [7970] = 7970, + [7971] = 6795, + [7972] = 6796, + [7973] = 6797, + [7974] = 6798, + [7975] = 7975, + [7976] = 7976, + [7977] = 7977, + [7978] = 7751, + [7979] = 7979, + [7980] = 7967, + [7981] = 7976, + [7982] = 7752, + [7983] = 7983, + [7984] = 7979, + [7985] = 7967, + [7986] = 7976, + [7987] = 7979, + [7988] = 7975, + [7989] = 7966, + [7990] = 7968, + [7991] = 6766, + [7992] = 6866, + [7993] = 6870, + [7994] = 6888, + [7995] = 6865, + [7996] = 7996, + [7997] = 7997, + [7998] = 7997, + [7999] = 7999, + [8000] = 8000, + [8001] = 7997, + [8002] = 8002, + [8003] = 7997, + [8004] = 7997, + [8005] = 7997, + [8006] = 7997, + [8007] = 7997, + [8008] = 7997, + [8009] = 7997, + [8010] = 8010, + [8011] = 8011, + [8012] = 8012, + [8013] = 8013, + [8014] = 8014, + [8015] = 8015, + [8016] = 8016, + [8017] = 8017, + [8018] = 6766, + [8019] = 8019, + [8020] = 7977, + [8021] = 6865, + [8022] = 6866, + [8023] = 7751, + [8024] = 7752, + [8025] = 8000, + [8026] = 8002, + [8027] = 8010, + [8028] = 6798, + [8029] = 8011, + [8030] = 8030, + [8031] = 8031, + [8032] = 8032, + [8033] = 8033, + [8034] = 8034, + [8035] = 8035, + [8036] = 7977, + [8037] = 6795, + [8038] = 6796, + [8039] = 6797, + [8040] = 6798, + [8041] = 7969, + [8042] = 6766, + [8043] = 7751, + [8044] = 8044, + [8045] = 8045, + [8046] = 8046, + [8047] = 7969, + [8048] = 8048, + [8049] = 6870, + [8050] = 6888, + [8051] = 7970, + [8052] = 7970, + [8053] = 7977, + [8054] = 7752, + [8055] = 8055, + [8056] = 7969, + [8057] = 6795, + [8058] = 6796, + [8059] = 6797, + [8060] = 7970, + [8061] = 8061, + [8062] = 8062, + [8063] = 8063, + [8064] = 8064, + [8065] = 8065, + [8066] = 8014, + [8067] = 8015, + [8068] = 8016, + [8069] = 8017, + [8070] = 8012, + [8071] = 8019, + [8072] = 8046, + [8073] = 8045, + [8074] = 8035, + [8075] = 8045, + [8076] = 8046, + [8077] = 8013, + [8078] = 7996, + [8079] = 8079, + [8080] = 8080, + [8081] = 8044, + [8082] = 8014, + [8083] = 8015, + [8084] = 8044, + [8085] = 8055, + [8086] = 8086, + [8087] = 8030, + [8088] = 8016, + [8089] = 8014, + [8090] = 8015, + [8091] = 8016, + [8092] = 8017, + [8093] = 8093, + [8094] = 8017, + [8095] = 8013, + [8096] = 8012, + [8097] = 8097, + [8098] = 8098, + [8099] = 8019, + [8100] = 8080, + [8101] = 8032, + [8102] = 7999, + [8103] = 8030, + [8104] = 8012, + [8105] = 8105, + [8106] = 8055, + [8107] = 8107, + [8108] = 8108, + [8109] = 8030, + [8110] = 8019, + [8111] = 8111, + [8112] = 8112, + [8113] = 8113, + [8114] = 8114, + [8115] = 8098, + [8116] = 8105, + [8117] = 8107, + [8118] = 8108, + [8119] = 8111, + [8120] = 8112, + [8121] = 8113, + [8122] = 8114, + [8123] = 8123, + [8124] = 8124, + [8125] = 8125, + [8126] = 8126, + [8127] = 8127, + [8128] = 8128, + [8129] = 8129, + [8130] = 8130, + [8131] = 8131, + [8132] = 8132, + [8133] = 8133, + [8134] = 8134, + [8135] = 8135, + [8136] = 8136, + [8137] = 8137, + [8138] = 8138, + [8139] = 8139, + [8140] = 8140, + [8141] = 8141, + [8142] = 8142, + [8143] = 8143, + [8144] = 8144, + [8145] = 8145, + [8146] = 8133, + [8147] = 8062, + [8148] = 8063, + [8149] = 8064, + [8150] = 8065, + [8151] = 8097, + [8152] = 8093, + [8153] = 8033, + [8154] = 8097, + [8155] = 8155, + [8156] = 8123, + [8157] = 8124, + [8158] = 8080, + [8159] = 8034, + [8160] = 8125, + [8161] = 8126, + [8162] = 8127, + [8163] = 8093, + [8164] = 8055, + [8165] = 8044, + [8166] = 8128, + [8167] = 8086, + [8168] = 8013, + [8169] = 8129, + [8170] = 8170, + [8171] = 8130, + [8172] = 8131, + [8173] = 8173, + [8174] = 8132, + [8175] = 8175, + [8176] = 8134, + [8177] = 8135, + [8178] = 8136, + [8179] = 8137, + [8180] = 8180, + [8181] = 8138, + [8182] = 8139, + [8183] = 8045, + [8184] = 8046, + [8185] = 8155, + [8186] = 8140, + [8187] = 8061, + [8188] = 8188, + [8189] = 8180, + [8190] = 8141, + [8191] = 8142, + [8192] = 8143, + [8193] = 8144, + [8194] = 8145, + [8195] = 8175, + [8196] = 8139, + [8197] = 8197, + [8198] = 8198, + [8199] = 8199, + [8200] = 8200, + [8201] = 8111, + [8202] = 8202, + [8203] = 8112, + [8204] = 8113, + [8205] = 8114, + [8206] = 8206, + [8207] = 8207, + [8208] = 8208, + [8209] = 8123, + [8210] = 8124, + [8211] = 8211, + [8212] = 8145, + [8213] = 8098, + [8214] = 8125, + [8215] = 8126, + [8216] = 8127, + [8217] = 8217, + [8218] = 8128, + [8219] = 8129, + [8220] = 8170, + [8221] = 8130, + [8222] = 8131, + [8223] = 8132, + [8224] = 8175, + [8225] = 8134, + [8226] = 8188, + [8227] = 8127, + [8228] = 8133, + [8229] = 8062, + [8230] = 8063, + [8231] = 8098, + [8232] = 8064, + [8233] = 8233, + [8234] = 8234, + [8235] = 8045, + [8236] = 8046, + [8237] = 8217, + [8238] = 8105, + [8239] = 8107, + [8240] = 8240, + [8241] = 8108, + [8242] = 8242, + [8243] = 8243, + [8244] = 8244, + [8245] = 8245, + [8246] = 8246, + [8247] = 8247, + [8248] = 8173, + [8249] = 8135, + [8250] = 8247, + [8251] = 8136, + [8252] = 8252, + [8253] = 8253, + [8254] = 8197, + [8255] = 8198, + [8256] = 8135, + [8257] = 8111, + [8258] = 8112, + [8259] = 8113, + [8260] = 8114, + [8261] = 8123, + [8262] = 8124, + [8263] = 8136, + [8264] = 8137, + [8265] = 8265, + [8266] = 8266, + [8267] = 8199, + [8268] = 8125, + [8269] = 8126, + [8270] = 8127, + [8271] = 8271, + [8272] = 8128, + [8273] = 8129, + [8274] = 8130, + [8275] = 8138, + [8276] = 8131, + [8277] = 8132, + [8278] = 8175, + [8279] = 8134, + [8280] = 8137, + [8281] = 8135, + [8282] = 8139, + [8283] = 8136, + [8284] = 8137, + [8285] = 8140, + [8286] = 8141, + [8287] = 8170, + [8288] = 8142, + [8289] = 8138, + [8290] = 8143, + [8291] = 8144, + [8292] = 8173, + [8293] = 8140, + [8294] = 8141, + [8295] = 8142, + [8296] = 8143, + [8297] = 8144, + [8298] = 8145, + [8299] = 8299, + [8300] = 8133, + [8301] = 8062, + [8302] = 8063, + [8303] = 8303, + [8304] = 8064, + [8305] = 8305, + [8306] = 8271, + [8307] = 8307, + [8308] = 8065, + [8309] = 8309, + [8310] = 8138, + [8311] = 8145, + [8312] = 8133, + [8313] = 8062, + [8314] = 8063, + [8315] = 8064, + [8316] = 8316, + [8317] = 8105, + [8318] = 8107, + [8319] = 8111, + [8320] = 8112, + [8321] = 8113, + [8322] = 8114, + [8323] = 8123, + [8324] = 8124, + [8325] = 8045, + [8326] = 8046, + [8327] = 8108, + [8328] = 8188, + [8329] = 8329, + [8330] = 8330, + [8331] = 8331, + [8332] = 8332, + [8333] = 8333, + [8334] = 8334, + [8335] = 8335, + [8336] = 8336, + [8337] = 8139, + [8338] = 8338, + [8339] = 8339, + [8340] = 8252, + [8341] = 8341, + [8342] = 8342, + [8343] = 8343, + [8344] = 8344, + [8345] = 8140, + [8346] = 8141, + [8347] = 8142, + [8348] = 8128, + [8349] = 8143, + [8350] = 8144, + [8351] = 8351, + [8352] = 8129, + [8353] = 8265, + [8354] = 8266, + [8355] = 8130, + [8356] = 8105, + [8357] = 8107, + [8358] = 8108, + [8359] = 8246, + [8360] = 8098, + [8361] = 7586, + [8362] = 8170, + [8363] = 8131, + [8364] = 8065, + [8365] = 8132, + [8366] = 8175, + [8367] = 8134, + [8368] = 8098, + [8369] = 8105, + [8370] = 8107, + [8371] = 8108, + [8372] = 8111, + [8373] = 8112, + [8374] = 8113, + [8375] = 8114, + [8376] = 8123, + [8377] = 8124, + [8378] = 8065, + [8379] = 8125, + [8380] = 8126, + [8381] = 8127, + [8382] = 8128, + [8383] = 8129, + [8384] = 8130, + [8385] = 8131, + [8386] = 8132, + [8387] = 8175, + [8388] = 8134, + [8389] = 8135, + [8390] = 8136, + [8391] = 8137, + [8392] = 8138, + [8393] = 8139, + [8394] = 8140, + [8395] = 8141, + [8396] = 8142, + [8397] = 8143, + [8398] = 8144, + [8399] = 8145, + [8400] = 8133, + [8401] = 8062, + [8402] = 8063, + [8403] = 8064, + [8404] = 8065, + [8405] = 8188, + [8406] = 8244, + [8407] = 8098, + [8408] = 8105, + [8409] = 8107, + [8410] = 8108, + [8411] = 8111, + [8412] = 8112, + [8413] = 8113, + [8414] = 8114, + [8415] = 8123, + [8416] = 8124, + [8417] = 8125, + [8418] = 8126, + [8419] = 8127, + [8420] = 8128, + [8421] = 8129, + [8422] = 8130, + [8423] = 8131, + [8424] = 8132, + [8425] = 8175, + [8426] = 8134, + [8427] = 8135, + [8428] = 8136, + [8429] = 8137, + [8430] = 8138, + [8431] = 8139, + [8432] = 8140, + [8433] = 8141, + [8434] = 8142, + [8435] = 8143, + [8436] = 8144, + [8437] = 8145, + [8438] = 8133, + [8439] = 8062, + [8440] = 8063, + [8441] = 8064, + [8442] = 8065, + [8443] = 8098, + [8444] = 8105, + [8445] = 8107, + [8446] = 8108, + [8447] = 8111, + [8448] = 8112, + [8449] = 8113, + [8450] = 8114, + [8451] = 8123, + [8452] = 8124, + [8453] = 8125, + [8454] = 8126, + [8455] = 8127, + [8456] = 8128, + [8457] = 8129, + [8458] = 8130, + [8459] = 8131, + [8460] = 8132, + [8461] = 8175, + [8462] = 8134, + [8463] = 8135, + [8464] = 8136, + [8465] = 8137, + [8466] = 8138, + [8467] = 8139, + [8468] = 8140, + [8469] = 8141, + [8470] = 8142, + [8471] = 8143, + [8472] = 8144, + [8473] = 8145, + [8474] = 8133, + [8475] = 8062, + [8476] = 8063, + [8477] = 8064, + [8478] = 8065, + [8479] = 8253, + [8480] = 8173, + [8481] = 8481, + [8482] = 8482, + [8483] = 8483, + [8484] = 8484, + [8485] = 8485, + [8486] = 8486, + [8487] = 8125, + [8488] = 8126, + [8489] = 8489, + [8490] = 8489, + [8491] = 8336, + [8492] = 8303, + [8493] = 8305, + [8494] = 8307, + [8495] = 8211, + [8496] = 8242, + [8497] = 8234, + [8498] = 8240, + [8499] = 8309, + [8500] = 8316, + [8501] = 8242, + [8502] = 8240, + [8503] = 8351, + [8504] = 8202, + [8505] = 8338, + [8506] = 8339, + [8507] = 8211, + [8508] = 8206, + [8509] = 8207, + [8510] = 8208, + [8511] = 8243, + [8512] = 8243, + [8513] = 8329, + [8514] = 8330, + [8515] = 8331, + [8516] = 8332, + [8517] = 8333, + [8518] = 8489, + [8519] = 8245, + [8520] = 8334, + [8521] = 8329, + [8522] = 8335, + [8523] = 8336, + [8524] = 8242, + [8525] = 8341, + [8526] = 8342, + [8527] = 8343, + [8528] = 8344, + [8529] = 8351, + [8530] = 8330, + [8531] = 8331, + [8532] = 8332, + [8533] = 8333, + [8534] = 8334, + [8535] = 8335, + [8536] = 8173, + [8537] = 8336, + [8538] = 8316, + [8539] = 8245, + [8540] = 8234, + [8541] = 8173, + [8542] = 8316, + [8543] = 8351, + [8544] = 8206, + [8545] = 8243, + [8546] = 8329, + [8547] = 8330, + [8548] = 8548, + [8549] = 8331, + [8550] = 8332, + [8551] = 8338, + [8552] = 8339, + [8553] = 8207, + [8554] = 8208, + [8555] = 8342, + [8556] = 8343, + [8557] = 8344, + [8558] = 8245, + [8559] = 8299, + [8560] = 8299, + [8561] = 8303, + [8562] = 8305, + [8563] = 8307, + [8564] = 8309, + [8565] = 8045, + [8566] = 8046, + [8567] = 8333, + [8568] = 8568, + [8569] = 8569, + [8570] = 8334, + [8571] = 8335, + [8572] = 8481, + [8573] = 8482, + [8574] = 8483, + [8575] = 8484, + [8576] = 8485, + [8577] = 8486, + [8578] = 8578, + [8579] = 8338, + [8580] = 8339, + [8581] = 8489, + [8582] = 8341, + [8583] = 8207, + [8584] = 8342, + [8585] = 8240, + [8586] = 8208, + [8587] = 8343, + [8588] = 8588, + [8589] = 8589, + [8590] = 8344, + [8591] = 8481, + [8592] = 8482, + [8593] = 8483, + [8594] = 8484, + [8595] = 8200, + [8596] = 8485, + [8597] = 8486, + [8598] = 8481, + [8599] = 8482, + [8600] = 8234, + [8601] = 8483, + [8602] = 8484, + [8603] = 8485, + [8604] = 8486, + [8605] = 8299, + [8606] = 8303, + [8607] = 8305, + [8608] = 8307, + [8609] = 8309, + [8610] = 8200, + [8611] = 8200, + [8612] = 8202, + [8613] = 8202, + [8614] = 8206, + [8615] = 8211, + [8616] = 8341, + [8617] = 8617, + [8618] = 8618, + [8619] = 8619, + [8620] = 8620, + [8621] = 8621, + [8622] = 8622, + [8623] = 8568, + [8624] = 8624, + [8625] = 8625, + [8626] = 8626, + [8627] = 8569, + [8628] = 8568, + [8629] = 8569, + [8630] = 8548, + [8631] = 8568, + [8632] = 8569, + [8633] = 8633, + [8634] = 8634, + [8635] = 8635, + [8636] = 8636, + [8637] = 8637, + [8638] = 8588, + [8639] = 8639, + [8640] = 8640, + [8641] = 8589, + [8642] = 8642, + [8643] = 8643, + [8644] = 8644, + [8645] = 8645, + [8646] = 8646, + [8647] = 8647, + [8648] = 8633, + [8649] = 8649, + [8650] = 8650, + [8651] = 8651, + [8652] = 8617, + [8653] = 8653, + [8654] = 8624, + [8655] = 8626, + [8656] = 8642, + [8657] = 8643, + [8658] = 8658, + [8659] = 8659, + [8660] = 8660, + [8661] = 8619, + [8662] = 8620, + [8663] = 8621, + [8664] = 8622, + [8665] = 8665, + [8666] = 8649, + [8667] = 8667, + [8668] = 8668, + [8669] = 8669, + [8670] = 8670, + [8671] = 8671, + [8672] = 8672, + [8673] = 8673, + [8674] = 8674, + [8675] = 8675, + [8676] = 8650, + [8677] = 8677, + [8678] = 8588, + [8679] = 8679, + [8680] = 8680, + [8681] = 8681, + [8682] = 8682, + [8683] = 8683, + [8684] = 8640, + [8685] = 8589, + [8686] = 8686, + [8687] = 8687, + [8688] = 8688, + [8689] = 8667, + [8690] = 8690, + [8691] = 8679, + [8692] = 8173, + [8693] = 8668, + [8694] = 8669, + [8695] = 8670, + [8696] = 8671, + [8697] = 8697, + [8698] = 8698, + [8699] = 8699, + [8700] = 8700, + [8701] = 8701, + [8702] = 8702, + [8703] = 8703, + [8704] = 8704, + [8705] = 8705, + [8706] = 8706, + [8707] = 8707, + [8708] = 8708, + [8709] = 8709, + [8710] = 8710, + [8711] = 8711, + [8712] = 8712, + [8713] = 8713, + [8714] = 8714, + [8715] = 8715, + [8716] = 8716, + [8717] = 8717, + [8718] = 8718, + [8719] = 8719, + [8720] = 8720, + [8721] = 8721, + [8722] = 8722, + [8723] = 8723, + [8724] = 8724, + [8725] = 8725, + [8726] = 8726, + [8727] = 8727, + [8728] = 8728, + [8729] = 8729, + [8730] = 8730, + [8731] = 8731, + [8732] = 8732, + [8733] = 8733, + [8734] = 8734, + [8735] = 8735, + [8736] = 8736, + [8737] = 8737, + [8738] = 8738, + [8739] = 8739, + [8740] = 8740, + [8741] = 8741, + [8742] = 8742, + [8743] = 8743, + [8744] = 8744, + [8745] = 8745, + [8746] = 8746, + [8747] = 8747, + [8748] = 8748, + [8749] = 8749, + [8750] = 8750, + [8751] = 8751, + [8752] = 8752, + [8753] = 8753, + [8754] = 8754, + [8755] = 8755, + [8756] = 8756, + [8757] = 8757, + [8758] = 8758, + [8759] = 8759, + [8760] = 8760, + [8761] = 8761, + [8762] = 8762, + [8763] = 8763, + [8764] = 8764, + [8765] = 8660, + [8766] = 8766, + [8767] = 8767, + [8768] = 8768, + [8769] = 8769, + [8770] = 8770, + [8771] = 8771, + [8772] = 8772, + [8773] = 8773, + [8774] = 8774, + [8775] = 8775, + [8776] = 8776, + [8777] = 8777, + [8778] = 8778, + [8779] = 8779, + [8780] = 8780, + [8781] = 8781, + [8782] = 8782, + [8783] = 8783, + [8784] = 8784, + [8785] = 8785, + [8786] = 8786, + [8787] = 8787, + [8788] = 8788, + [8789] = 8789, + [8790] = 8790, + [8791] = 8791, + [8792] = 8792, + [8793] = 8793, + [8794] = 8794, + [8795] = 8795, + [8796] = 8796, + [8797] = 8797, + [8798] = 8798, + [8799] = 8799, + [8800] = 8800, + [8801] = 8801, + [8802] = 8802, + [8803] = 8803, + [8804] = 8804, + [8805] = 8805, + [8806] = 8806, + [8807] = 8807, + [8808] = 8808, + [8809] = 8809, + [8810] = 8810, + [8811] = 8811, + [8812] = 8812, + [8813] = 8813, + [8814] = 8814, + [8815] = 8815, + [8816] = 8816, + [8817] = 8817, + [8818] = 8818, + [8819] = 8819, + [8820] = 8820, + [8821] = 8821, + [8822] = 8822, + [8823] = 8823, + [8824] = 8824, + [8825] = 8825, + [8826] = 8651, + [8827] = 8636, + [8828] = 8680, + [8829] = 8681, + [8830] = 8672, + [8831] = 8673, + [8832] = 8644, + [8833] = 8674, + [8834] = 8675, + [8835] = 8645, + [8836] = 8646, + [8837] = 8658, + [8838] = 8659, + [8839] = 8548, + [8840] = 8588, + [8841] = 8589, + [8842] = 8682, + [8843] = 8637, + [8844] = 8844, + [8845] = 8683, + [8846] = 8846, + [8847] = 8847, + [8848] = 8548, + [8849] = 8849, + [8850] = 8850, + [8851] = 8851, + [8852] = 8852, + [8853] = 8853, + [8854] = 8854, + [8855] = 8855, + [8856] = 8856, + [8857] = 8857, + [8858] = 8858, + [8859] = 8859, + [8860] = 8860, + [8861] = 8861, + [8862] = 8862, + [8863] = 8863, + [8864] = 8864, + [8865] = 8865, + [8866] = 8866, + [8867] = 8867, + [8868] = 8868, + [8869] = 8869, + [8870] = 8870, + [8871] = 8871, + [8872] = 8872, + [8873] = 8873, + [8874] = 8874, + [8875] = 8875, + [8876] = 8876, + [8877] = 8877, + [8878] = 8878, + [8879] = 8879, + [8880] = 8880, + [8881] = 8881, + [8882] = 8882, + [8883] = 8883, + [8884] = 8884, + [8885] = 8885, + [8886] = 8876, + [8887] = 8717, + [8888] = 8846, + [8889] = 8847, + [8890] = 8718, + [8891] = 8719, + [8892] = 8720, + [8893] = 8721, + [8894] = 8722, + [8895] = 8723, + [8896] = 8724, + [8897] = 8725, + [8898] = 8726, + [8899] = 8727, + [8900] = 8728, + [8901] = 8729, + [8902] = 8730, + [8903] = 8731, + [8904] = 8732, + [8905] = 8733, + [8906] = 8734, + [8907] = 8735, + [8908] = 8736, + [8909] = 8737, + [8910] = 8738, + [8911] = 8739, + [8912] = 8740, + [8913] = 8741, + [8914] = 8742, + [8915] = 8743, + [8916] = 8744, + [8917] = 8745, + [8918] = 8746, + [8919] = 8747, + [8920] = 8748, + [8921] = 8749, + [8922] = 8750, + [8923] = 8751, + [8924] = 8752, + [8925] = 8753, + [8926] = 8754, + [8927] = 8698, + [8928] = 8701, + [8929] = 8755, + [8930] = 8756, + [8931] = 8757, + [8932] = 8758, + [8933] = 8759, + [8934] = 8760, + [8935] = 8761, + [8936] = 8762, + [8937] = 8699, + [8938] = 8763, + [8939] = 8764, + [8940] = 8885, + [8941] = 8766, + [8942] = 8767, + [8943] = 8768, + [8944] = 8769, + [8945] = 8770, + [8946] = 8771, + [8947] = 8772, + [8948] = 8700, + [8949] = 8773, + [8950] = 8774, + [8951] = 8775, + [8952] = 8776, + [8953] = 8777, + [8954] = 8778, + [8955] = 8779, + [8956] = 8780, + [8957] = 8781, + [8958] = 8782, + [8959] = 8783, + [8960] = 8784, + [8961] = 8785, + [8962] = 8786, + [8963] = 8787, + [8964] = 8788, + [8965] = 8789, + [8966] = 8702, + [8967] = 8790, + [8968] = 8791, + [8969] = 8792, + [8970] = 8703, + [8971] = 8793, + [8972] = 8794, + [8973] = 8795, + [8974] = 8796, + [8975] = 8797, + [8976] = 8798, + [8977] = 8799, + [8978] = 8800, + [8979] = 8801, + [8980] = 8802, + [8981] = 8803, + [8982] = 8804, + [8983] = 8805, + [8984] = 8806, + [8985] = 8807, + [8986] = 8808, + [8987] = 8809, + [8988] = 8810, + [8989] = 8811, + [8990] = 8812, + [8991] = 8711, + [8992] = 8813, + [8993] = 8814, + [8994] = 8815, + [8995] = 8816, + [8996] = 8817, + [8997] = 8818, + [8998] = 8819, + [8999] = 8820, + [9000] = 8821, + [9001] = 8822, + [9002] = 8846, + [9003] = 8823, + [9004] = 8824, + [9005] = 8825, + [9006] = 8847, + [9007] = 8704, + [9008] = 8705, + [9009] = 8665, + [9010] = 8706, + [9011] = 8707, + [9012] = 8015, + [9013] = 8708, + [9014] = 8709, + [9015] = 8639, + [9016] = 8634, + [9017] = 8846, + [9018] = 8847, + [9019] = 8710, + [9020] = 7969, + [9021] = 8712, + [9022] = 8844, + [9023] = 8713, + [9024] = 8677, + [9025] = 8714, + [9026] = 8665, + [9027] = 8635, + [9028] = 7970, + [9029] = 8012, + [9030] = 8635, + [9031] = 8639, + [9032] = 8701, + [9033] = 8647, + [9034] = 8715, + [9035] = 8716, + [9036] = 8717, + [9037] = 8711, + [9038] = 8718, + [9039] = 8647, + [9040] = 8719, + [9041] = 8720, + [9042] = 8721, + [9043] = 8722, + [9044] = 8723, + [9045] = 8724, + [9046] = 8725, + [9047] = 8726, + [9048] = 8634, + [9049] = 8727, + [9050] = 8728, + [9051] = 8729, + [9052] = 8686, + [9053] = 8730, + [9054] = 8687, + [9055] = 8688, + [9056] = 8731, + [9057] = 8732, + [9058] = 8733, + [9059] = 8690, + [9060] = 9060, + [9061] = 9060, + [9062] = 8686, + [9063] = 8697, + [9064] = 8653, + [9065] = 8687, + [9066] = 8634, + [9067] = 9060, + [9068] = 8734, + [9069] = 8735, + [9070] = 8635, + [9071] = 8736, + [9072] = 8737, + [9073] = 8738, + [9074] = 8739, + [9075] = 8740, + [9076] = 8741, + [9077] = 8742, + [9078] = 8743, + [9079] = 8744, + [9080] = 8745, + [9081] = 8746, + [9082] = 8747, + [9083] = 8748, + [9084] = 8749, + [9085] = 8750, + [9086] = 8751, + [9087] = 8752, + [9088] = 8753, + [9089] = 8754, + [9090] = 8688, + [9091] = 8755, + [9092] = 8690, + [9093] = 8618, + [9094] = 8756, + [9095] = 8757, + [9096] = 8758, + [9097] = 8625, + [9098] = 8759, + [9099] = 8844, + [9100] = 8760, + [9101] = 8761, + [9102] = 8762, + [9103] = 8763, + [9104] = 8019, + [9105] = 8625, + [9106] = 9060, + [9107] = 8618, + [9108] = 9060, + [9109] = 8764, + [9110] = 8885, + [9111] = 8766, + [9112] = 8767, + [9113] = 8768, + [9114] = 8769, + [9115] = 8770, + [9116] = 8771, + [9117] = 8772, + [9118] = 8773, + [9119] = 8774, + [9120] = 8775, + [9121] = 8776, + [9122] = 8777, + [9123] = 8778, + [9124] = 8779, + [9125] = 8780, + [9126] = 8701, + [9127] = 8781, + [9128] = 8711, + [9129] = 8782, + [9130] = 8783, + [9131] = 8784, + [9132] = 8785, + [9133] = 8786, + [9134] = 8787, + [9135] = 8788, + [9136] = 8789, + [9137] = 8790, + [9138] = 8697, + [9139] = 8698, + [9140] = 8699, + [9141] = 8700, + [9142] = 8702, + [9143] = 8703, + [9144] = 8704, + [9145] = 8705, + [9146] = 8706, + [9147] = 8707, + [9148] = 8708, + [9149] = 8709, + [9150] = 8710, + [9151] = 8712, + [9152] = 8713, + [9153] = 8714, + [9154] = 8715, + [9155] = 8716, + [9156] = 8717, + [9157] = 8718, + [9158] = 8719, + [9159] = 8720, + [9160] = 8721, + [9161] = 8722, + [9162] = 8723, + [9163] = 8724, + [9164] = 8725, + [9165] = 8726, + [9166] = 8727, + [9167] = 8728, + [9168] = 8729, + [9169] = 8730, + [9170] = 8731, + [9171] = 8732, + [9172] = 8733, + [9173] = 8734, + [9174] = 8735, + [9175] = 8736, + [9176] = 8737, + [9177] = 8738, + [9178] = 8739, + [9179] = 8740, + [9180] = 8791, + [9181] = 8741, + [9182] = 8742, + [9183] = 8743, + [9184] = 8744, + [9185] = 8745, + [9186] = 8746, + [9187] = 8747, + [9188] = 8748, + [9189] = 8749, + [9190] = 8750, + [9191] = 8751, + [9192] = 8752, + [9193] = 8753, + [9194] = 8754, + [9195] = 8755, + [9196] = 8756, + [9197] = 8757, + [9198] = 8758, + [9199] = 8792, + [9200] = 8759, + [9201] = 8760, + [9202] = 9060, + [9203] = 8762, + [9204] = 8763, + [9205] = 8764, + [9206] = 8885, + [9207] = 8766, + [9208] = 8767, + [9209] = 8768, + [9210] = 8769, + [9211] = 8770, + [9212] = 8771, + [9213] = 8772, + [9214] = 8773, + [9215] = 8774, + [9216] = 8775, + [9217] = 8776, + [9218] = 8777, + [9219] = 8778, + [9220] = 8779, + [9221] = 8780, + [9222] = 8781, + [9223] = 8782, + [9224] = 8783, + [9225] = 8784, + [9226] = 8785, + [9227] = 8786, + [9228] = 8787, + [9229] = 8788, + [9230] = 8789, + [9231] = 8790, + [9232] = 8791, + [9233] = 8792, + [9234] = 8793, + [9235] = 8794, + [9236] = 8795, + [9237] = 8796, + [9238] = 8797, + [9239] = 8798, + [9240] = 8799, + [9241] = 8800, + [9242] = 8801, + [9243] = 8802, + [9244] = 8803, + [9245] = 8804, + [9246] = 8805, + [9247] = 8806, + [9248] = 8807, + [9249] = 8808, + [9250] = 8809, + [9251] = 8810, + [9252] = 8811, + [9253] = 8812, + [9254] = 8813, + [9255] = 8814, + [9256] = 8815, + [9257] = 8816, + [9258] = 8817, + [9259] = 8818, + [9260] = 8819, + [9261] = 8820, + [9262] = 8821, + [9263] = 8822, + [9264] = 8823, + [9265] = 8824, + [9266] = 8825, + [9267] = 8677, + [9268] = 8647, + [9269] = 8793, + [9270] = 8686, + [9271] = 8794, + [9272] = 8795, + [9273] = 9060, + [9274] = 8639, + [9275] = 8796, + [9276] = 8014, + [9277] = 8797, + [9278] = 8798, + [9279] = 8849, + [9280] = 8799, + [9281] = 8800, + [9282] = 8801, + [9283] = 8690, + [9284] = 8850, + [9285] = 8851, + [9286] = 8012, + [9287] = 8802, + [9288] = 8852, + [9289] = 8853, + [9290] = 8854, + [9291] = 8855, + [9292] = 8803, + [9293] = 8856, + [9294] = 8653, + [9295] = 8804, + [9296] = 8857, + [9297] = 8858, + [9298] = 8805, + [9299] = 8859, + [9300] = 8860, + [9301] = 8618, + [9302] = 8861, + [9303] = 8862, + [9304] = 8863, + [9305] = 8864, + [9306] = 8865, + [9307] = 8806, + [9308] = 8866, + [9309] = 8867, + [9310] = 8868, + [9311] = 8014, + [9312] = 8687, + [9313] = 8807, + [9314] = 8869, + [9315] = 8870, + [9316] = 8871, + [9317] = 8872, + [9318] = 8873, + [9319] = 8874, + [9320] = 8875, + [9321] = 8876, + [9322] = 8877, + [9323] = 8878, + [9324] = 8688, + [9325] = 8808, + [9326] = 8879, + [9327] = 8880, + [9328] = 8881, + [9329] = 8882, + [9330] = 8625, + [9331] = 8883, + [9332] = 8019, + [9333] = 8809, + [9334] = 8810, + [9335] = 8884, + [9336] = 8849, + [9337] = 8850, + [9338] = 8811, + [9339] = 8851, + [9340] = 8852, + [9341] = 8853, + [9342] = 8854, + [9343] = 8855, + [9344] = 8856, + [9345] = 8857, + [9346] = 8858, + [9347] = 8859, + [9348] = 8860, + [9349] = 8861, + [9350] = 8862, + [9351] = 8863, + [9352] = 8864, + [9353] = 8865, + [9354] = 9060, + [9355] = 8866, + [9356] = 8867, + [9357] = 8868, + [9358] = 8869, + [9359] = 8870, + [9360] = 8871, + [9361] = 8872, + [9362] = 8873, + [9363] = 8874, + [9364] = 8875, + [9365] = 8665, + [9366] = 8876, + [9367] = 8877, + [9368] = 8878, + [9369] = 8879, + [9370] = 8880, + [9371] = 8881, + [9372] = 8882, + [9373] = 8883, + [9374] = 8884, + [9375] = 8653, + [9376] = 8812, + [9377] = 8813, + [9378] = 8814, + [9379] = 8815, + [9380] = 8816, + [9381] = 8817, + [9382] = 8818, + [9383] = 8819, + [9384] = 8820, + [9385] = 8821, + [9386] = 8822, + [9387] = 8823, + [9388] = 8824, + [9389] = 8825, + [9390] = 8015, + [9391] = 8697, + [9392] = 8698, + [9393] = 8016, + [9394] = 8699, + [9395] = 7977, + [9396] = 8700, + [9397] = 8702, + [9398] = 8017, + [9399] = 8703, + [9400] = 8704, + [9401] = 8705, + [9402] = 8706, + [9403] = 8707, + [9404] = 8708, + [9405] = 8709, + [9406] = 8710, + [9407] = 8712, + [9408] = 8713, + [9409] = 8714, + [9410] = 8715, + [9411] = 8849, + [9412] = 8016, + [9413] = 8850, + [9414] = 8851, + [9415] = 8852, + [9416] = 8853, + [9417] = 8854, + [9418] = 8855, + [9419] = 8856, + [9420] = 8857, + [9421] = 8858, + [9422] = 8859, + [9423] = 8860, + [9424] = 8861, + [9425] = 8862, + [9426] = 8863, + [9427] = 8864, + [9428] = 8865, + [9429] = 8866, + [9430] = 8867, + [9431] = 8868, + [9432] = 8017, + [9433] = 8869, + [9434] = 8870, + [9435] = 8871, + [9436] = 8872, + [9437] = 8873, + [9438] = 8874, + [9439] = 8875, + [9440] = 8677, + [9441] = 8877, + [9442] = 8878, + [9443] = 8879, + [9444] = 8880, + [9445] = 8881, + [9446] = 8882, + [9447] = 8883, + [9448] = 8884, + [9449] = 8844, + [9450] = 8716, + [9451] = 8761, + [9452] = 8064, + [9453] = 8142, + [9454] = 8114, + [9455] = 9455, + [9456] = 8105, + [9457] = 8107, + [9458] = 9455, + [9459] = 8135, + [9460] = 8123, + [9461] = 8136, + [9462] = 8137, + [9463] = 8108, + [9464] = 9464, + [9465] = 8124, + [9466] = 9466, + [9467] = 9466, + [9468] = 8125, + [9469] = 9455, + [9470] = 8126, + [9471] = 9455, + [9472] = 8127, + [9473] = 8143, + [9474] = 9455, + [9475] = 8144, + [9476] = 8128, + [9477] = 8129, + [9478] = 8130, + [9479] = 9455, + [9480] = 9480, + [9481] = 8131, + [9482] = 9466, + [9483] = 8145, + [9484] = 9484, + [9485] = 8132, + [9486] = 9480, + [9487] = 8098, + [9488] = 9464, + [9489] = 8844, + [9490] = 9464, + [9491] = 9455, + [9492] = 8098, + [9493] = 8175, + [9494] = 9494, + [9495] = 9480, + [9496] = 8065, + [9497] = 8105, + [9498] = 9455, + [9499] = 8111, + [9500] = 8107, + [9501] = 8108, + [9502] = 8134, + [9503] = 8112, + [9504] = 9466, + [9505] = 8844, + [9506] = 8113, + [9507] = 8111, + [9508] = 9455, + [9509] = 8112, + [9510] = 8113, + [9511] = 8114, + [9512] = 8123, + [9513] = 8124, + [9514] = 8125, + [9515] = 8126, + [9516] = 8127, + [9517] = 8128, + [9518] = 8129, + [9519] = 8130, + [9520] = 8131, + [9521] = 8132, + [9522] = 8175, + [9523] = 8134, + [9524] = 8135, + [9525] = 8136, + [9526] = 8137, + [9527] = 8133, + [9528] = 8138, + [9529] = 8139, + [9530] = 8062, + [9531] = 8140, + [9532] = 8063, + [9533] = 8141, + [9534] = 8142, + [9535] = 8143, + [9536] = 8144, + [9537] = 8145, + [9538] = 8133, + [9539] = 8062, + [9540] = 8063, + [9541] = 8064, + [9542] = 8065, + [9543] = 8138, + [9544] = 8139, + [9545] = 8140, + [9546] = 8141, + [9547] = 9464, + [9548] = 9480, + [9549] = 9455, + [9550] = 9550, + [9551] = 9551, + [9552] = 9552, + [9553] = 8014, + [9554] = 9552, + [9555] = 9555, + [9556] = 9556, + [9557] = 9555, + [9558] = 9558, + [9559] = 9551, + [9560] = 9558, + [9561] = 9552, + [9562] = 9555, + [9563] = 9563, + [9564] = 9558, + [9565] = 9565, + [9566] = 9555, + [9567] = 8844, + [9568] = 9555, + [9569] = 9552, + [9570] = 8012, + [9571] = 8351, + [9572] = 9550, + [9573] = 9558, + [9574] = 9555, + [9575] = 9558, + [9576] = 9558, + [9577] = 9550, + [9578] = 9565, + [9579] = 8019, + [9580] = 8016, + [9581] = 9558, + [9582] = 9552, + [9583] = 9552, + [9584] = 8017, + [9585] = 8030, + [9586] = 9586, + [9587] = 9565, + [9588] = 9565, + [9589] = 9565, + [9590] = 9555, + [9591] = 8014, + [9592] = 8012, + [9593] = 9551, + [9594] = 9565, + [9595] = 9565, + [9596] = 8351, + [9597] = 8015, + [9598] = 9552, + [9599] = 8017, + [9600] = 9555, + [9601] = 9558, + [9602] = 9565, + [9603] = 9552, + [9604] = 9555, + [9605] = 9605, + [9606] = 9552, + [9607] = 8015, + [9608] = 9565, + [9609] = 9555, + [9610] = 9552, + [9611] = 9551, + [9612] = 9552, + [9613] = 9551, + [9614] = 9550, + [9615] = 9615, + [9616] = 8016, + [9617] = 8014, + [9618] = 8015, + [9619] = 9558, + [9620] = 9551, + [9621] = 9555, + [9622] = 8016, + [9623] = 9623, + [9624] = 8019, + [9625] = 8012, + [9626] = 8017, + [9627] = 9551, + [9628] = 8019, + [9629] = 9629, + [9630] = 8351, + [9631] = 9551, + [9632] = 9632, + [9633] = 8030, + [9634] = 9634, + [9635] = 9634, + [9636] = 9636, + [9637] = 9634, + [9638] = 9634, + [9639] = 8030, + [9640] = 9640, + [9641] = 9641, + [9642] = 9642, + [9643] = 8030, + [9644] = 8015, + [9645] = 8012, + [9646] = 8016, + [9647] = 7969, + [9648] = 9648, + [9649] = 9649, + [9650] = 9649, + [9651] = 7977, + [9652] = 9652, + [9653] = 9653, + [9654] = 9654, + [9655] = 9655, + [9656] = 9656, + [9657] = 9649, + [9658] = 9658, + [9659] = 9659, + [9660] = 9660, + [9661] = 9649, + [9662] = 9662, + [9663] = 8017, + [9664] = 9664, + [9665] = 9649, + [9666] = 8014, + [9667] = 7969, + [9668] = 9649, + [9669] = 9669, + [9670] = 9670, + [9671] = 9649, + [9672] = 9672, + [9673] = 7970, + [9674] = 8019, + [9675] = 9649, + [9676] = 7970, + [9677] = 9677, + [9678] = 9649, + [9679] = 8014, + [9680] = 9649, + [9681] = 9681, + [9682] = 8019, + [9683] = 8015, + [9684] = 8016, + [9685] = 9685, + [9686] = 7977, + [9687] = 8017, + [9688] = 8012, + [9689] = 8873, + [9690] = 8849, + [9691] = 9691, + [9692] = 9652, + [9693] = 9669, + [9694] = 9641, + [9695] = 8863, + [9696] = 9696, + [9697] = 8864, + [9698] = 9698, + [9699] = 8865, + [9700] = 9700, + [9701] = 8866, + [9702] = 8853, + [9703] = 8867, + [9704] = 9704, + [9705] = 9696, + [9706] = 8883, + [9707] = 9707, + [9708] = 8854, + [9709] = 8855, + [9710] = 8856, + [9711] = 9652, + [9712] = 9712, + [9713] = 9707, + [9714] = 9698, + [9715] = 7969, + [9716] = 8019, + [9717] = 8857, + [9718] = 8858, + [9719] = 9655, + [9720] = 8850, + [9721] = 8012, + [9722] = 7970, + [9723] = 9654, + [9724] = 9691, + [9725] = 8868, + [9726] = 9726, + [9727] = 9727, + [9728] = 9728, + [9729] = 9698, + [9730] = 8851, + [9731] = 9731, + [9732] = 8859, + [9733] = 9733, + [9734] = 9652, + [9735] = 8884, + [9736] = 8869, + [9737] = 9737, + [9738] = 9707, + [9739] = 8014, + [9740] = 9740, + [9741] = 8870, + [9742] = 8871, + [9743] = 8861, + [9744] = 8015, + [9745] = 9745, + [9746] = 9746, + [9747] = 9747, + [9748] = 8852, + [9749] = 8016, + [9750] = 8880, + [9751] = 8872, + [9752] = 9696, + [9753] = 9753, + [9754] = 8881, + [9755] = 8862, + [9756] = 9664, + [9757] = 8882, + [9758] = 9712, + [9759] = 8874, + [9760] = 8875, + [9761] = 7977, + [9762] = 8017, + [9763] = 8876, + [9764] = 8877, + [9765] = 8878, + [9766] = 9766, + [9767] = 9767, + [9768] = 8879, + [9769] = 9769, + [9770] = 8860, + [9771] = 8719, + [9772] = 8879, + [9773] = 9773, + [9774] = 8885, + [9775] = 8856, + [9776] = 8766, + [9777] = 8860, + [9778] = 8767, + [9779] = 9773, + [9780] = 8768, + [9781] = 8769, + [9782] = 8770, + [9783] = 9672, + [9784] = 8762, + [9785] = 8849, + [9786] = 8771, + [9787] = 8750, + [9788] = 8751, + [9789] = 8772, + [9790] = 9790, + [9791] = 8703, + [9792] = 9792, + [9793] = 8880, + [9794] = 9767, + [9795] = 8881, + [9796] = 8882, + [9797] = 8859, + [9798] = 9798, + [9799] = 9790, + [9800] = 9792, + [9801] = 8861, + [9802] = 8883, + [9803] = 8860, + [9804] = 8773, + [9805] = 8869, + [9806] = 8774, + [9807] = 8775, + [9808] = 8698, + [9809] = 9809, + [9810] = 8869, + [9811] = 8749, + [9812] = 9812, + [9813] = 8870, + [9814] = 8862, + [9815] = 9815, + [9816] = 8854, + [9817] = 8871, + [9818] = 8872, + [9819] = 8759, + [9820] = 8853, + [9821] = 8776, + [9822] = 8777, + [9823] = 8778, + [9824] = 8884, + [9825] = 8854, + [9826] = 8779, + [9827] = 9641, + [9828] = 8705, + [9829] = 8780, + [9830] = 8781, + [9831] = 8753, + [9832] = 8763, + [9833] = 9773, + [9834] = 9834, + [9835] = 9835, + [9836] = 8782, + [9837] = 9790, + [9838] = 8706, + [9839] = 8712, + [9840] = 8883, + [9841] = 8870, + [9842] = 8872, + [9843] = 8871, + [9844] = 8707, + [9845] = 9677, + [9846] = 8866, + [9847] = 8783, + [9848] = 8850, + [9849] = 9792, + [9850] = 8862, + [9851] = 8867, + [9852] = 8853, + [9853] = 9812, + [9854] = 8784, + [9855] = 8754, + [9856] = 8884, + [9857] = 8863, + [9858] = 8713, + [9859] = 9859, + [9860] = 8884, + [9861] = 9861, + [9862] = 9798, + [9863] = 8872, + [9864] = 9864, + [9865] = 8785, + [9866] = 9866, + [9867] = 8786, + [9868] = 8869, + [9869] = 8873, + [9870] = 8874, + [9871] = 8760, + [9872] = 9872, + [9873] = 8873, + [9874] = 8874, + [9875] = 9875, + [9876] = 8873, + [9877] = 8874, + [9878] = 9878, + [9879] = 8875, + [9880] = 9880, + [9881] = 8715, + [9882] = 8716, + [9883] = 9883, + [9884] = 8875, + [9885] = 8864, + [9886] = 9835, + [9887] = 8752, + [9888] = 8879, + [9889] = 8717, + [9890] = 9834, + [9891] = 9767, + [9892] = 8875, + [9893] = 8851, + [9894] = 8718, + [9895] = 8857, + [9896] = 9834, + [9897] = 8882, + [9898] = 8787, + [9899] = 8858, + [9900] = 8714, + [9901] = 8868, + [9902] = 8788, + [9903] = 9812, + [9904] = 9904, + [9905] = 8876, + [9906] = 8789, + [9907] = 8790, + [9908] = 9908, + [9909] = 8863, + [9910] = 8876, + [9911] = 9672, + [9912] = 8877, + [9913] = 8704, + [9914] = 8720, + [9915] = 8742, + [9916] = 8721, + [9917] = 8878, + [9918] = 9918, + [9919] = 9685, + [9920] = 8854, + [9921] = 8868, + [9922] = 8858, + [9923] = 8722, + [9924] = 8791, + [9925] = 8855, + [9926] = 8723, + [9927] = 8792, + [9928] = 8877, + [9929] = 8793, + [9930] = 8699, + [9931] = 8864, + [9932] = 8724, + [9933] = 8708, + [9934] = 9773, + [9935] = 8794, + [9936] = 8856, + [9937] = 8725, + [9938] = 8865, + [9939] = 8700, + [9940] = 8878, + [9941] = 8795, + [9942] = 9672, + [9943] = 8876, + [9944] = 8726, + [9945] = 8861, + [9946] = 8796, + [9947] = 9792, + [9948] = 9948, + [9949] = 8797, + [9950] = 9792, + [9951] = 8747, + [9952] = 8798, + [9953] = 8799, + [9954] = 8800, + [9955] = 8727, + [9956] = 8755, + [9957] = 8866, + [9958] = 8801, + [9959] = 8802, + [9960] = 8728, + [9961] = 8857, + [9962] = 8803, + [9963] = 8709, + [9964] = 9964, + [9965] = 8877, + [9966] = 8858, + [9967] = 8855, + [9968] = 9968, + [9969] = 8850, + [9970] = 8878, + [9971] = 8849, + [9972] = 8804, + [9973] = 8743, + [9974] = 8805, + [9975] = 8748, + [9976] = 8852, + [9977] = 9685, + [9978] = 9978, + [9979] = 8862, + [9980] = 8851, + [9981] = 9981, + [9982] = 8806, + [9983] = 9948, + [9984] = 9984, + [9985] = 8744, + [9986] = 8863, + [9987] = 9773, + [9988] = 8864, + [9989] = 9984, + [9990] = 8807, + [9991] = 9685, + [9992] = 9992, + [9993] = 8710, + [9994] = 8808, + [9995] = 9773, + [9996] = 9773, + [9997] = 8809, + [9998] = 8849, + [9999] = 8729, + [10000] = 8810, + [10001] = 9792, + [10002] = 8870, + [10003] = 8697, + [10004] = 8811, + [10005] = 8730, + [10006] = 9792, + [10007] = 8812, + [10008] = 9992, + [10009] = 9834, + [10010] = 8745, + [10011] = 8881, + [10012] = 9767, + [10013] = 10013, + [10014] = 9984, + [10015] = 8761, + [10016] = 9798, + [10017] = 9992, + [10018] = 10018, + [10019] = 8871, + [10020] = 8746, + [10021] = 8813, + [10022] = 8731, + [10023] = 8814, + [10024] = 8732, + [10025] = 8815, + [10026] = 8866, + [10027] = 8850, + [10028] = 8867, + [10029] = 8816, + [10030] = 8867, + [10031] = 9641, + [10032] = 8879, + [10033] = 9835, + [10034] = 8733, + [10035] = 8852, + [10036] = 10036, + [10037] = 8857, + [10038] = 8851, + [10039] = 10039, + [10040] = 8817, + [10041] = 9798, + [10042] = 10042, + [10043] = 8818, + [10044] = 8819, + [10045] = 8764, + [10046] = 8856, + [10047] = 8820, + [10048] = 8865, + [10049] = 8821, + [10050] = 9880, + [10051] = 8822, + [10052] = 9677, + [10053] = 8859, + [10054] = 8823, + [10055] = 8880, + [10056] = 8824, + [10057] = 8825, + [10058] = 9812, + [10059] = 10059, + [10060] = 8868, + [10061] = 8860, + [10062] = 8881, + [10063] = 8734, + [10064] = 8882, + [10065] = 9773, + [10066] = 9978, + [10067] = 8756, + [10068] = 8735, + [10069] = 9677, + [10070] = 8757, + [10071] = 9809, + [10072] = 10018, + [10073] = 8861, + [10074] = 9835, + [10075] = 8702, + [10076] = 8736, + [10077] = 9981, + [10078] = 9908, + [10079] = 9948, + [10080] = 8852, + [10081] = 8758, + [10082] = 9792, + [10083] = 8737, + [10084] = 8859, + [10085] = 8738, + [10086] = 8883, + [10087] = 8739, + [10088] = 8853, + [10089] = 8865, + [10090] = 8740, + [10091] = 8741, + [10092] = 8880, + [10093] = 8855, + [10094] = 8772, + [10095] = 8724, + [10096] = 10096, + [10097] = 10097, + [10098] = 8814, + [10099] = 8815, + [10100] = 9809, + [10101] = 10101, + [10102] = 8816, + [10103] = 10103, + [10104] = 8817, + [10105] = 10105, + [10106] = 8725, + [10107] = 10107, + [10108] = 8703, + [10109] = 10109, + [10110] = 10110, + [10111] = 8787, + [10112] = 10112, + [10113] = 10113, + [10114] = 10114, + [10115] = 8726, + [10116] = 10116, + [10117] = 10117, + [10118] = 10118, + [10119] = 10119, + [10120] = 10120, + [10121] = 10121, + [10122] = 10122, + [10123] = 8727, + [10124] = 10124, + [10125] = 8728, + [10126] = 8729, + [10127] = 8730, + [10128] = 7996, + [10129] = 10101, + [10130] = 8697, + [10131] = 10131, + [10132] = 10132, + [10133] = 8731, + [10134] = 10134, + [10135] = 10135, + [10136] = 8732, + [10137] = 9733, + [10138] = 10105, + [10139] = 9655, + [10140] = 10140, + [10141] = 10141, + [10142] = 10107, + [10143] = 10143, + [10144] = 8697, + [10145] = 8733, + [10146] = 10146, + [10147] = 8788, + [10148] = 8797, + [10149] = 8798, + [10150] = 8799, + [10151] = 8800, + [10152] = 10152, + [10153] = 8801, + [10154] = 8802, + [10155] = 8803, + [10156] = 8804, + [10157] = 8805, + [10158] = 8806, + [10159] = 8807, + [10160] = 10160, + [10161] = 10161, + [10162] = 8808, + [10163] = 8809, + [10164] = 8810, + [10165] = 10165, + [10166] = 8811, + [10167] = 10167, + [10168] = 8699, + [10169] = 8812, + [10170] = 8813, + [10171] = 8814, + [10172] = 8815, + [10173] = 8816, + [10174] = 10174, + [10175] = 10175, + [10176] = 10176, + [10177] = 8817, + [10178] = 8704, + [10179] = 7999, + [10180] = 10180, + [10181] = 8705, + [10182] = 10182, + [10183] = 10131, + [10184] = 10184, + [10185] = 10185, + [10186] = 10186, + [10187] = 8706, + [10188] = 10188, + [10189] = 8707, + [10190] = 10190, + [10191] = 10191, + [10192] = 10192, + [10193] = 10193, + [10194] = 10194, + [10195] = 10195, + [10196] = 10196, + [10197] = 10121, + [10198] = 10135, + [10199] = 10199, + [10200] = 10200, + [10201] = 9866, + [10202] = 8700, + [10203] = 10203, + [10204] = 10204, + [10205] = 10205, + [10206] = 10206, + [10207] = 10207, + [10208] = 10208, + [10209] = 10209, + [10210] = 10210, + [10211] = 10211, + [10212] = 10212, + [10213] = 10213, + [10214] = 10214, + [10215] = 10215, + [10216] = 10216, + [10217] = 10217, + [10218] = 10218, + [10219] = 9864, + [10220] = 10220, + [10221] = 8698, + [10222] = 10222, + [10223] = 10223, + [10224] = 10224, + [10225] = 8789, + [10226] = 8756, + [10227] = 10227, + [10228] = 10228, + [10229] = 8790, + [10230] = 8791, + [10231] = 10231, + [10232] = 8708, + [10233] = 10233, + [10234] = 8702, + [10235] = 10143, + [10236] = 10152, + [10237] = 10167, + [10238] = 10182, + [10239] = 10200, + [10240] = 10220, + [10241] = 10227, + [10242] = 10242, + [10243] = 10243, + [10244] = 10244, + [10245] = 10245, + [10246] = 10246, + [10247] = 10247, + [10248] = 10248, + [10249] = 10249, + [10250] = 10250, + [10251] = 10251, + [10252] = 8709, + [10253] = 8792, + [10254] = 10242, + [10255] = 10255, + [10256] = 9670, + [10257] = 10257, + [10258] = 9878, + [10259] = 10259, + [10260] = 10260, + [10261] = 10261, + [10262] = 8757, + [10263] = 10263, + [10264] = 8699, + [10265] = 8700, + [10266] = 8710, + [10267] = 10267, + [10268] = 8703, + [10269] = 10269, + [10270] = 10270, + [10271] = 10271, + [10272] = 10272, + [10273] = 10273, + [10274] = 10274, + [10275] = 10275, + [10276] = 10276, + [10277] = 10277, + [10278] = 10243, + [10279] = 10279, + [10280] = 10280, + [10281] = 10281, + [10282] = 10282, + [10283] = 9670, + [10284] = 8702, + [10285] = 10285, + [10286] = 10286, + [10287] = 8703, + [10288] = 8712, + [10289] = 10289, + [10290] = 10290, + [10291] = 10291, + [10292] = 8793, + [10293] = 10293, + [10294] = 10223, + [10295] = 10267, + [10296] = 10296, + [10297] = 10297, + [10298] = 10298, + [10299] = 10203, + [10300] = 10244, + [10301] = 10246, + [10302] = 10257, + [10303] = 10286, + [10304] = 10298, + [10305] = 10305, + [10306] = 10306, + [10307] = 10307, + [10308] = 10308, + [10309] = 9864, + [10310] = 10310, + [10311] = 8794, + [10312] = 9731, + [10313] = 9861, + [10314] = 8704, + [10315] = 8705, + [10316] = 8713, + [10317] = 8706, + [10318] = 8697, + [10319] = 8707, + [10320] = 10320, + [10321] = 9670, + [10322] = 10322, + [10323] = 10323, + [10324] = 10324, + [10325] = 10325, + [10326] = 10326, + [10327] = 10327, + [10328] = 10328, + [10329] = 10329, + [10330] = 10330, + [10331] = 10331, + [10332] = 10332, + [10333] = 10333, + [10334] = 10334, + [10335] = 10335, + [10336] = 10336, + [10337] = 10337, + [10338] = 10338, + [10339] = 10339, + [10340] = 10097, + [10341] = 10103, + [10342] = 10110, + [10343] = 10114, + [10344] = 10120, + [10345] = 10122, + [10346] = 10124, + [10347] = 10305, + [10348] = 10348, + [10349] = 10323, + [10350] = 8708, + [10351] = 10351, + [10352] = 10116, + [10353] = 8709, + [10354] = 9733, + [10355] = 10199, + [10356] = 10218, + [10357] = 10222, + [10358] = 10228, + [10359] = 10245, + [10360] = 10255, + [10361] = 10263, + [10362] = 10282, + [10363] = 10290, + [10364] = 10293, + [10365] = 10310, + [10366] = 10348, + [10367] = 10351, + [10368] = 10368, + [10369] = 10369, + [10370] = 10370, + [10371] = 10371, + [10372] = 10372, + [10373] = 10109, + [10374] = 10132, + [10375] = 10134, + [10376] = 10141, + [10377] = 10146, + [10378] = 10174, + [10379] = 10188, + [10380] = 10259, + [10381] = 10381, + [10382] = 10289, + [10383] = 8714, + [10384] = 10384, + [10385] = 10385, + [10386] = 10386, + [10387] = 10387, + [10388] = 10388, + [10389] = 10389, + [10390] = 10390, + [10391] = 10391, + [10392] = 10392, + [10393] = 10393, + [10394] = 10394, + [10395] = 10395, + [10396] = 10396, + [10397] = 10397, + [10398] = 10398, + [10399] = 10399, + [10400] = 10400, + [10401] = 10401, + [10402] = 10402, + [10403] = 10403, + [10404] = 9655, + [10405] = 10405, + [10406] = 10406, + [10407] = 10407, + [10408] = 10408, + [10409] = 10409, + [10410] = 10113, + [10411] = 10411, + [10412] = 10412, + [10413] = 10381, + [10414] = 8710, + [10415] = 10415, + [10416] = 8712, + [10417] = 8713, + [10418] = 10306, + [10419] = 10117, + [10420] = 10368, + [10421] = 8714, + [10422] = 10269, + [10423] = 10096, + [10424] = 10118, + [10425] = 10119, + [10426] = 8715, + [10427] = 8716, + [10428] = 10428, + [10429] = 10140, + [10430] = 8717, + [10431] = 10307, + [10432] = 10432, + [10433] = 8718, + [10434] = 10296, + [10435] = 10435, + [10436] = 9866, + [10437] = 8719, + [10438] = 8720, + [10439] = 10405, + [10440] = 8721, + [10441] = 8722, + [10442] = 8723, + [10443] = 8724, + [10444] = 8795, + [10445] = 8725, + [10446] = 8726, + [10447] = 8727, + [10448] = 8728, + [10449] = 8729, + [10450] = 8730, + [10451] = 8758, + [10452] = 8796, + [10453] = 10453, + [10454] = 10454, + [10455] = 8731, + [10456] = 8818, + [10457] = 8819, + [10458] = 10308, + [10459] = 8732, + [10460] = 8820, + [10461] = 8821, + [10462] = 8822, + [10463] = 10101, + [10464] = 8733, + [10465] = 8823, + [10466] = 8824, + [10467] = 9878, + [10468] = 8785, + [10469] = 10469, + [10470] = 10160, + [10471] = 8818, + [10472] = 8819, + [10473] = 10473, + [10474] = 10474, + [10475] = 8820, + [10476] = 8821, + [10477] = 8822, + [10478] = 10478, + [10479] = 8823, + [10480] = 8824, + [10481] = 8734, + [10482] = 8735, + [10483] = 8736, + [10484] = 10411, + [10485] = 9875, + [10486] = 8737, + [10487] = 8738, + [10488] = 10247, + [10489] = 10117, + [10490] = 10118, + [10491] = 9918, + [10492] = 10119, + [10493] = 8739, + [10494] = 8740, + [10495] = 10495, + [10496] = 8741, + [10497] = 10297, + [10498] = 8742, + [10499] = 8743, + [10500] = 8744, + [10501] = 8745, + [10502] = 8746, + [10503] = 8747, + [10504] = 8748, + [10505] = 8749, + [10506] = 8750, + [10507] = 8751, + [10508] = 8752, + [10509] = 8753, + [10510] = 8754, + [10511] = 10435, + [10512] = 10105, + [10513] = 8755, + [10514] = 10184, + [10515] = 10107, + [10516] = 8756, + [10517] = 8757, + [10518] = 8758, + [10519] = 8759, + [10520] = 8760, + [10521] = 10521, + [10522] = 8761, + [10523] = 8762, + [10524] = 8763, + [10525] = 10385, + [10526] = 8764, + [10527] = 8885, + [10528] = 8766, + [10529] = 8767, + [10530] = 8768, + [10531] = 10531, + [10532] = 8769, + [10533] = 8770, + [10534] = 10534, + [10535] = 8771, + [10536] = 10536, + [10537] = 10161, + [10538] = 8772, + [10539] = 8773, + [10540] = 8774, + [10541] = 8775, + [10542] = 8776, + [10543] = 8777, + [10544] = 10544, + [10545] = 8778, + [10546] = 9672, + [10547] = 8780, + [10548] = 8781, + [10549] = 8782, + [10550] = 8783, + [10551] = 8784, + [10552] = 10552, + [10553] = 10435, + [10554] = 10204, + [10555] = 8785, + [10556] = 8759, + [10557] = 9685, + [10558] = 8786, + [10559] = 8787, + [10560] = 8788, + [10561] = 8789, + [10562] = 10205, + [10563] = 8790, + [10564] = 8791, + [10565] = 8792, + [10566] = 10185, + [10567] = 8793, + [10568] = 8794, + [10569] = 10270, + [10570] = 8795, + [10571] = 8715, + [10572] = 8796, + [10573] = 8716, + [10574] = 8797, + [10575] = 8764, + [10576] = 8798, + [10577] = 10112, + [10578] = 8885, + [10579] = 8799, + [10580] = 8766, + [10581] = 8760, + [10582] = 8800, + [10583] = 8767, + [10584] = 8768, + [10585] = 8769, + [10586] = 8801, + [10587] = 10206, + [10588] = 8770, + [10589] = 8802, + [10590] = 10590, + [10591] = 8771, + [10592] = 8803, + [10593] = 8804, + [10594] = 8805, + [10595] = 8772, + [10596] = 8806, + [10597] = 8807, + [10598] = 8808, + [10599] = 8717, + [10600] = 8809, + [10601] = 8810, + [10602] = 8773, + [10603] = 8774, + [10604] = 8811, + [10605] = 8775, + [10606] = 8776, + [10607] = 10386, + [10608] = 8777, + [10609] = 8812, + [10610] = 8778, + [10611] = 8779, + [10612] = 8780, + [10613] = 8813, + [10614] = 8781, + [10615] = 8782, + [10616] = 8814, + [10617] = 8783, + [10618] = 8815, + [10619] = 8816, + [10620] = 10096, + [10621] = 8817, + [10622] = 8784, + [10623] = 8785, + [10624] = 8818, + [10625] = 10207, + [10626] = 8786, + [10627] = 8819, + [10628] = 8820, + [10629] = 8821, + [10630] = 8822, + [10631] = 8787, + [10632] = 8823, + [10633] = 8788, + [10634] = 8824, + [10635] = 8825, + [10636] = 8718, + [10637] = 8789, + [10638] = 9866, + [10639] = 8790, + [10640] = 8791, + [10641] = 8719, + [10642] = 8792, + [10643] = 8720, + [10644] = 8721, + [10645] = 8793, + [10646] = 10387, + [10647] = 8722, + [10648] = 8723, + [10649] = 8794, + [10650] = 8724, + [10651] = 10388, + [10652] = 8725, + [10653] = 10320, + [10654] = 10208, + [10655] = 8726, + [10656] = 8727, + [10657] = 8728, + [10658] = 8729, + [10659] = 8795, + [10660] = 10186, + [10661] = 8730, + [10662] = 10389, + [10663] = 8796, + [10664] = 8731, + [10665] = 8732, + [10666] = 10666, + [10667] = 10271, + [10668] = 8733, + [10669] = 10669, + [10670] = 10324, + [10671] = 10412, + [10672] = 10248, + [10673] = 10673, + [10674] = 10325, + [10675] = 10272, + [10676] = 10209, + [10677] = 8698, + [10678] = 10289, + [10679] = 10273, + [10680] = 10531, + [10681] = 10140, + [10682] = 10390, + [10683] = 10326, + [10684] = 8825, + [10685] = 10391, + [10686] = 8761, + [10687] = 10274, + [10688] = 10392, + [10689] = 10249, + [10690] = 9733, + [10691] = 10101, + [10692] = 8786, + [10693] = 10160, + [10694] = 9655, + [10695] = 10327, + [10696] = 10696, + [10697] = 8698, + [10698] = 10393, + [10699] = 10275, + [10700] = 8762, + [10701] = 10328, + [10702] = 10495, + [10703] = 10105, + [10704] = 10107, + [10705] = 10406, + [10706] = 10112, + [10707] = 10192, + [10708] = 10329, + [10709] = 10531, + [10710] = 10394, + [10711] = 10250, + [10712] = 10395, + [10713] = 10112, + [10714] = 10193, + [10715] = 10590, + [10716] = 10330, + [10717] = 8763, + [10718] = 10718, + [10719] = 10719, + [10720] = 10276, + [10721] = 10101, + [10722] = 10105, + [10723] = 10107, + [10724] = 10112, + [10725] = 10396, + [10726] = 10726, + [10727] = 10331, + [10728] = 10277, + [10729] = 10495, + [10730] = 10397, + [10731] = 10251, + [10732] = 10279, + [10733] = 10194, + [10734] = 10726, + [10735] = 10453, + [10736] = 10736, + [10737] = 10454, + [10738] = 10332, + [10739] = 8734, + [10740] = 8735, + [10741] = 10210, + [10742] = 8736, + [10743] = 8737, + [10744] = 8738, + [10745] = 8739, + [10746] = 8740, + [10747] = 8741, + [10748] = 9677, + [10749] = 8742, + [10750] = 8743, + [10751] = 8744, + [10752] = 10752, + [10753] = 8745, + [10754] = 8746, + [10755] = 8747, + [10756] = 8748, + [10757] = 8749, + [10758] = 8750, + [10759] = 8751, + [10760] = 8752, + [10761] = 8753, + [10762] = 10762, + [10763] = 10211, + [10764] = 8754, + [10765] = 8755, + [10766] = 10766, + [10767] = 10767, + [10768] = 10212, + [10769] = 10140, + [10770] = 8756, + [10771] = 8757, + [10772] = 10453, + [10773] = 8758, + [10774] = 8759, + [10775] = 8760, + [10776] = 8761, + [10777] = 10454, + [10778] = 8762, + [10779] = 10369, + [10780] = 10213, + [10781] = 10195, + [10782] = 10101, + [10783] = 10783, + [10784] = 8763, + [10785] = 10160, + [10786] = 9861, + [10787] = 10214, + [10788] = 10495, + [10789] = 10105, + [10790] = 10215, + [10791] = 10590, + [10792] = 10107, + [10793] = 9878, + [10794] = 8715, + [10795] = 10398, + [10796] = 10796, + [10797] = 10797, + [10798] = 10216, + [10799] = 10531, + [10800] = 10281, + [10801] = 10801, + [10802] = 8734, + [10803] = 8735, + [10804] = 10399, + [10805] = 8736, + [10806] = 8737, + [10807] = 8738, + [10808] = 8739, + [10809] = 8740, + [10810] = 10190, + [10811] = 8716, + [10812] = 8741, + [10813] = 8742, + [10814] = 8743, + [10815] = 8744, + [10816] = 10400, + [10817] = 8745, + [10818] = 8746, + [10819] = 8747, + [10820] = 10401, + [10821] = 8748, + [10822] = 8749, + [10823] = 10402, + [10824] = 10112, + [10825] = 8717, + [10826] = 10175, + [10827] = 10590, + [10828] = 10217, + [10829] = 8704, + [10830] = 8705, + [10831] = 8706, + [10832] = 8718, + [10833] = 8707, + [10834] = 10407, + [10835] = 10835, + [10836] = 10836, + [10837] = 10837, + [10838] = 8708, + [10839] = 8709, + [10840] = 10333, + [10841] = 10408, + [10842] = 8797, + [10843] = 10334, + [10844] = 8710, + [10845] = 8798, + [10846] = 10335, + [10847] = 8799, + [10848] = 8800, + [10849] = 10849, + [10850] = 8712, + [10851] = 10336, + [10852] = 8801, + [10853] = 10176, + [10854] = 8713, + [10855] = 10101, + [10856] = 8802, + [10857] = 8803, + [10858] = 8804, + [10859] = 8805, + [10860] = 10860, + [10861] = 10337, + [10862] = 8806, + [10863] = 10105, + [10864] = 8719, + [10865] = 10107, + [10866] = 8807, + [10867] = 8714, + [10868] = 10338, + [10869] = 10370, + [10870] = 8720, + [10871] = 8721, + [10872] = 8808, + [10873] = 10112, + [10874] = 10371, + [10875] = 8699, + [10876] = 10196, + [10877] = 8722, + [10878] = 8809, + [10879] = 8700, + [10880] = 8723, + [10881] = 10372, + [10882] = 8810, + [10883] = 10409, + [10884] = 10339, + [10885] = 8811, + [10886] = 10101, + [10887] = 8750, + [10888] = 10105, + [10889] = 10107, + [10890] = 8751, + [10891] = 10112, + [10892] = 8752, + [10893] = 10403, + [10894] = 8753, + [10895] = 8812, + [10896] = 10140, + [10897] = 10160, + [10898] = 10101, + [10899] = 8764, + [10900] = 10105, + [10901] = 8885, + [10902] = 10107, + [10903] = 8766, + [10904] = 10112, + [10905] = 8767, + [10906] = 8768, + [10907] = 8769, + [10908] = 8770, + [10909] = 8771, + [10910] = 8754, + [10911] = 8784, + [10912] = 10191, + [10913] = 8773, + [10914] = 8825, + [10915] = 8774, + [10916] = 8775, + [10917] = 8776, + [10918] = 8777, + [10919] = 8813, + [10920] = 8778, + [10921] = 10101, + [10922] = 10105, + [10923] = 8702, + [10924] = 10107, + [10925] = 8779, + [10926] = 10112, + [10927] = 8780, + [10928] = 8781, + [10929] = 10140, + [10930] = 10160, + [10931] = 10140, + [10932] = 10160, + [10933] = 8782, + [10934] = 8755, + [10935] = 10140, + [10936] = 8783, + [10937] = 10160, + [10938] = 8779, + [10939] = 10939, + [10940] = 10940, + [10941] = 10941, + [10942] = 10942, + [10943] = 10943, + [10944] = 10944, + [10945] = 10944, + [10946] = 10946, + [10947] = 10947, + [10948] = 10948, + [10949] = 10949, + [10950] = 10950, + [10951] = 10951, + [10952] = 7999, + [10953] = 10322, + [10954] = 10954, + [10955] = 10955, + [10956] = 10956, + [10957] = 10943, + [10958] = 10944, + [10959] = 10947, + [10960] = 10960, + [10961] = 10961, + [10962] = 10962, + [10963] = 10944, + [10964] = 9984, + [10965] = 10965, + [10966] = 10966, + [10967] = 10967, + [10968] = 10968, + [10969] = 10969, + [10970] = 10970, + [10971] = 10971, + [10972] = 10969, + [10973] = 10973, + [10974] = 7878, + [10975] = 10965, + [10976] = 10976, + [10977] = 10977, + [10978] = 10978, + [10979] = 10979, + [10980] = 10960, + [10981] = 10976, + [10982] = 10943, + [10983] = 10983, + [10984] = 10984, + [10985] = 7996, + [10986] = 10944, + [10987] = 10987, + [10988] = 10835, + [10989] = 10849, + [10990] = 10990, + [10991] = 10970, + [10992] = 10978, + [10993] = 10993, + [10994] = 10977, + [10995] = 10995, + [10996] = 10996, + [10997] = 10997, + [10998] = 10998, + [10999] = 10999, + [11000] = 10968, + [11001] = 11001, + [11002] = 10801, + [11003] = 11003, + [11004] = 11004, + [11005] = 10947, + [11006] = 11006, + [11007] = 11004, + [11008] = 11008, + [11009] = 11009, + [11010] = 11010, + [11011] = 11011, + [11012] = 11012, + [11013] = 11013, + [11014] = 11014, + [11015] = 10976, + [11016] = 10977, + [11017] = 11017, + [11018] = 11018, + [11019] = 10521, + [11020] = 10534, + [11021] = 10536, + [11022] = 10947, + [11023] = 11023, + [11024] = 10955, + [11025] = 10961, + [11026] = 10939, + [11027] = 11027, + [11028] = 11028, + [11029] = 11029, + [11030] = 11030, + [11031] = 11031, + [11032] = 11032, + [11033] = 11033, + [11034] = 11034, + [11035] = 11035, + [11036] = 11036, + [11037] = 11037, + [11038] = 11038, + [11039] = 10990, + [11040] = 10947, + [11041] = 11041, + [11042] = 11042, + [11043] = 11043, + [11044] = 11044, + [11045] = 11045, + [11046] = 11046, + [11047] = 11043, + [11048] = 10943, + [11049] = 11049, + [11050] = 10224, + [11051] = 10944, + [11052] = 9733, + [11053] = 10987, + [11054] = 11054, + [11055] = 11055, + [11056] = 11056, + [11057] = 10835, + [11058] = 10849, + [11059] = 10943, + [11060] = 10970, + [11061] = 11061, + [11062] = 11062, + [11063] = 10947, + [11064] = 8033, + [11065] = 11065, + [11066] = 10965, + [11067] = 11067, + [11068] = 10478, + [11069] = 11069, + [11070] = 11010, + [11071] = 11071, + [11072] = 11072, + [11073] = 10521, + [11074] = 11074, + [11075] = 11075, + [11076] = 10835, + [11077] = 10849, + [11078] = 11031, + [11079] = 10534, + [11080] = 10536, + [11081] = 11081, + [11082] = 11082, + [11083] = 11083, + [11084] = 10970, + [11085] = 11033, + [11086] = 11086, + [11087] = 11035, + [11088] = 11088, + [11089] = 11044, + [11090] = 10536, + [11091] = 10943, + [11092] = 10944, + [11093] = 10970, + [11094] = 11061, + [11095] = 10944, + [11096] = 11096, + [11097] = 10947, + [11098] = 11098, + [11099] = 11099, + [11100] = 11100, + [11101] = 11045, + [11102] = 11062, + [11103] = 11103, + [11104] = 10946, + [11105] = 11012, + [11106] = 11065, + [11107] = 10801, + [11108] = 11108, + [11109] = 11109, + [11110] = 11110, + [11111] = 11017, + [11112] = 11112, + [11113] = 11113, + [11114] = 10948, + [11115] = 11115, + [11116] = 11116, + [11117] = 11117, + [11118] = 10993, + [11119] = 10996, + [11120] = 10944, + [11121] = 11013, + [11122] = 10837, + [11123] = 11018, + [11124] = 10949, + [11125] = 10950, + [11126] = 10943, + [11127] = 10944, + [11128] = 11128, + [11129] = 10943, + [11130] = 10944, + [11131] = 11110, + [11132] = 10291, + [11133] = 11112, + [11134] = 10970, + [11135] = 11113, + [11136] = 10951, + [11137] = 11115, + [11138] = 10947, + [11139] = 11139, + [11140] = 11116, + [11141] = 11117, + [11142] = 11001, + [11143] = 11143, + [11144] = 11103, + [11145] = 11145, + [11146] = 11146, + [11147] = 11065, + [11148] = 10801, + [11149] = 10966, + [11150] = 11150, + [11151] = 11082, + [11152] = 10947, + [11153] = 11083, + [11154] = 11046, + [11155] = 10973, + [11156] = 11156, + [11157] = 11003, + [11158] = 11065, + [11159] = 10970, + [11160] = 11075, + [11161] = 11161, + [11162] = 11086, + [11163] = 8035, + [11164] = 10943, + [11165] = 10944, + [11166] = 10970, + [11167] = 10943, + [11168] = 10947, + [11169] = 10261, + [11170] = 11071, + [11171] = 10998, + [11172] = 8032, + [11173] = 10999, + [11174] = 11054, + [11175] = 11055, + [11176] = 11088, + [11177] = 11069, + [11178] = 11178, + [11179] = 10962, + [11180] = 10995, + [11181] = 11181, + [11182] = 11009, + [11183] = 11014, + [11184] = 10521, + [11185] = 10534, + [11186] = 8034, + [11187] = 10978, + [11188] = 11188, + [11189] = 11189, + [11190] = 11190, + [11191] = 11191, + [11192] = 11192, + [11193] = 11193, + [11194] = 11143, + [11195] = 11103, + [11196] = 11145, + [11197] = 11146, + [11198] = 11198, + [11199] = 11199, + [11200] = 11200, + [11201] = 11201, + [11202] = 11202, + [11203] = 11203, + [11204] = 11204, + [11205] = 7878, + [11206] = 11206, + [11207] = 11207, + [11208] = 11208, + [11209] = 11209, + [11210] = 11037, + [11211] = 11041, + [11212] = 11212, + [11213] = 11067, + [11214] = 11214, + [11215] = 11096, + [11216] = 11216, + [11217] = 11098, + [11218] = 11218, + [11219] = 11219, + [11220] = 11198, + [11221] = 11221, + [11222] = 11222, + [11223] = 11223, + [11224] = 11224, + [11225] = 11225, + [11226] = 11226, + [11227] = 11227, + [11228] = 11228, + [11229] = 10954, + [11230] = 11230, + [11231] = 11231, + [11232] = 11023, + [11233] = 11027, + [11234] = 11029, + [11235] = 11034, + [11236] = 11036, + [11237] = 11237, + [11238] = 11038, + [11239] = 11239, + [11240] = 11240, + [11241] = 11241, + [11242] = 11242, + [11243] = 11243, + [11244] = 11244, + [11245] = 11245, + [11246] = 11246, + [11247] = 11247, + [11248] = 11248, + [11249] = 11249, + [11250] = 11250, + [11251] = 11251, + [11252] = 11252, + [11253] = 11253, + [11254] = 11254, + [11255] = 11255, + [11256] = 11256, + [11257] = 11161, + [11258] = 11258, + [11259] = 11259, + [11260] = 11260, + [11261] = 11261, + [11262] = 11262, + [11263] = 11263, + [11264] = 11264, + [11265] = 11265, + [11266] = 11266, + [11267] = 11267, + [11268] = 11268, + [11269] = 11269, + [11270] = 11270, + [11271] = 10837, + [11272] = 11272, + [11273] = 11273, + [11274] = 11274, + [11275] = 11275, + [11276] = 11258, + [11277] = 11247, + [11278] = 11278, + [11279] = 11279, + [11280] = 11280, + [11281] = 11281, + [11282] = 11282, + [11283] = 10942, + [11284] = 11284, + [11285] = 11285, + [11286] = 11286, + [11287] = 11287, + [11288] = 11178, + [11289] = 11289, + [11290] = 11282, + [11291] = 11291, + [11292] = 11292, + [11293] = 11293, + [11294] = 11294, + [11295] = 11295, + [11296] = 11296, + [11297] = 11297, + [11298] = 11298, + [11299] = 11299, + [11300] = 11250, + [11301] = 11301, + [11302] = 11302, + [11303] = 11259, + [11304] = 11304, + [11305] = 11274, + [11306] = 11227, + [11307] = 11307, + [11308] = 11308, + [11309] = 11309, + [11310] = 11310, + [11311] = 11278, + [11312] = 11312, + [11313] = 11296, + [11314] = 11314, + [11315] = 11315, + [11316] = 11316, + [11317] = 11317, + [11318] = 11318, + [11319] = 11319, + [11320] = 11320, + [11321] = 11321, + [11322] = 11322, + [11323] = 11204, + [11324] = 11324, + [11325] = 11286, + [11326] = 11326, + [11327] = 11327, + [11328] = 11328, + [11329] = 11318, + [11330] = 11279, + [11331] = 11331, + [11332] = 11332, + [11333] = 11321, + [11334] = 11192, + [11335] = 11335, + [11336] = 11336, + [11337] = 11337, + [11338] = 11338, + [11339] = 11339, + [11340] = 11340, + [11341] = 11341, + [11342] = 11342, + [11343] = 11343, + [11344] = 11299, + [11345] = 11317, + [11346] = 11214, + [11347] = 11340, + [11348] = 11198, + [11349] = 11349, + [11350] = 11350, + [11351] = 11351, + [11352] = 11352, + [11353] = 11353, + [11354] = 11354, + [11355] = 11355, + [11356] = 11356, + [11357] = 11207, + [11358] = 10261, + [11359] = 11359, + [11360] = 11360, + [11361] = 11361, + [11362] = 11362, + [11363] = 11363, + [11364] = 11364, + [11365] = 11365, + [11366] = 11366, + [11367] = 11367, + [11368] = 11368, + [11369] = 11369, + [11370] = 11370, + [11371] = 11371, + [11372] = 11372, + [11373] = 11373, + [11374] = 11374, + [11375] = 11260, + [11376] = 11023, + [11377] = 11027, + [11378] = 11378, + [11379] = 11379, + [11380] = 11029, + [11381] = 11381, + [11382] = 11006, + [11383] = 11383, + [11384] = 11384, + [11385] = 11199, + [11386] = 11386, + [11387] = 11008, + [11388] = 10967, + [11389] = 10971, + [11390] = 10983, + [11391] = 11350, + [11392] = 11011, + [11393] = 11393, + [11394] = 11394, + [11395] = 11322, + [11396] = 11396, + [11397] = 11034, + [11398] = 11398, + [11399] = 11036, + [11400] = 11400, + [11401] = 11028, + [11402] = 11042, + [11403] = 11049, + [11404] = 11056, + [11405] = 11265, + [11406] = 11406, + [11407] = 11407, + [11408] = 11408, + [11409] = 11203, + [11410] = 11038, + [11411] = 11411, + [11412] = 11412, + [11413] = 11413, + [11414] = 11414, + [11415] = 11393, + [11416] = 11416, + [11417] = 11417, + [11418] = 11267, + [11419] = 11218, + [11420] = 11420, + [11421] = 11200, + [11422] = 11326, + [11423] = 11328, + [11424] = 11424, + [11425] = 11425, + [11426] = 11426, + [11427] = 11427, + [11428] = 11378, + [11429] = 11429, + [11430] = 11430, + [11431] = 11431, + [11432] = 11351, + [11433] = 11198, + [11434] = 11434, + [11435] = 7884, + [11436] = 11281, + [11437] = 11273, + [11438] = 11270, + [11439] = 11439, + [11440] = 11440, + [11441] = 11441, + [11442] = 11442, + [11443] = 11443, + [11444] = 11444, + [11445] = 11445, + [11446] = 11446, + [11447] = 11272, + [11448] = 11342, + [11449] = 11336, + [11450] = 11450, + [11451] = 11451, + [11452] = 11037, + [11453] = 11453, + [11454] = 11041, + [11455] = 11455, + [11456] = 11456, + [11457] = 11067, + [11458] = 11096, + [11459] = 11459, + [11460] = 11098, + [11461] = 11338, + [11462] = 11462, + [11463] = 11463, + [11464] = 11209, + [11465] = 11465, + [11466] = 11202, + [11467] = 11353, + [11468] = 11468, + [11469] = 11248, + [11470] = 11381, + [11471] = 11471, + [11472] = 11427, + [11473] = 11341, + [11474] = 11474, + [11475] = 11475, + [11476] = 11354, + [11477] = 11459, + [11478] = 11198, + [11479] = 11479, + [11480] = 11480, + [11481] = 11453, + [11482] = 11349, + [11483] = 11483, + [11484] = 11356, + [11485] = 11485, + [11486] = 11486, + [11487] = 11302, + [11488] = 11488, + [11489] = 11455, + [11490] = 11490, + [11491] = 11491, + [11492] = 11492, + [11493] = 11493, + [11494] = 11494, + [11495] = 11495, + [11496] = 11240, + [11497] = 11188, + [11498] = 11339, + [11499] = 11499, + [11500] = 11191, + [11501] = 11501, + [11502] = 11355, + [11503] = 11503, + [11504] = 11261, + [11505] = 11359, + [11506] = 11206, + [11507] = 11507, + [11508] = 11143, + [11509] = 11037, + [11510] = 11429, + [11511] = 11041, + [11512] = 11067, + [11513] = 11096, + [11514] = 11098, + [11515] = 11515, + [11516] = 11468, + [11517] = 11517, + [11518] = 11145, + [11519] = 11519, + [11520] = 11520, + [11521] = 11222, + [11522] = 11522, + [11523] = 11146, + [11524] = 11337, + [11525] = 11363, + [11526] = 11364, + [11527] = 11379, + [11528] = 11208, + [11529] = 11479, + [11530] = 11242, + [11531] = 11531, + [11532] = 11532, + [11533] = 11425, + [11534] = 11366, + [11535] = 11535, + [11536] = 11434, + [11537] = 11443, + [11538] = 11538, + [11539] = 11456, + [11540] = 11540, + [11541] = 11281, + [11542] = 11360, + [11543] = 11543, + [11544] = 11226, + [11545] = 11361, + [11546] = 11244, + [11547] = 11367, + [11548] = 11548, + [11549] = 11237, + [11550] = 11550, + [11551] = 11551, + [11552] = 11552, + [11553] = 11494, + [11554] = 11554, + [11555] = 11301, + [11556] = 11556, + [11557] = 11320, + [11558] = 11417, + [11559] = 11559, + [11560] = 11560, + [11561] = 11561, + [11562] = 11493, + [11563] = 11563, + [11564] = 11308, + [11565] = 11565, + [11566] = 11566, + [11567] = 11293, + [11568] = 11568, + [11569] = 11569, + [11570] = 11307, + [11571] = 11507, + [11572] = 11572, + [11573] = 11573, + [11574] = 11324, + [11575] = 11030, + [11576] = 7882, + [11577] = 11365, + [11578] = 7881, + [11579] = 11225, + [11580] = 11190, + [11581] = 11243, + [11582] = 11230, + [11583] = 11285, + [11584] = 11314, + [11585] = 11262, + [11586] = 11319, + [11587] = 11587, + [11588] = 11362, + [11589] = 11424, + [11590] = 11343, + [11591] = 11591, + [11592] = 11592, + [11593] = 11430, + [11594] = 11543, + [11595] = 11280, + [11596] = 11368, + [11597] = 11471, + [11598] = 11598, + [11599] = 11446, + [11600] = 11295, + [11601] = 11310, + [11602] = 11602, + [11603] = 11475, + [11604] = 10967, + [11605] = 11369, + [11606] = 10971, + [11607] = 11315, + [11608] = 11499, + [11609] = 11609, + [11610] = 10983, + [11611] = 11538, + [11612] = 11231, + [11613] = 11011, + [11614] = 11540, + [11615] = 11224, + [11616] = 11548, + [11617] = 11241, + [11618] = 11028, + [11619] = 11552, + [11620] = 11198, + [11621] = 11042, + [11622] = 11474, + [11623] = 11143, + [11624] = 11103, + [11625] = 11049, + [11626] = 11371, + [11627] = 11056, + [11628] = 11556, + [11629] = 11245, + [11630] = 11591, + [11631] = 11178, + [11632] = 11463, + [11633] = 11178, + [11634] = 11559, + [11635] = 11145, + [11636] = 11352, + [11637] = 11637, + [11638] = 11146, + [11639] = 11639, + [11640] = 11640, + [11641] = 11383, + [11642] = 11261, + [11643] = 11643, + [11644] = 11239, + [11645] = 11384, + [11646] = 11386, + [11647] = 11431, + [11648] = 11566, + [11649] = 11640, + [11650] = 11650, + [11651] = 11246, + [11652] = 11372, + [11653] = 11653, + [11654] = 11201, + [11655] = 11655, + [11656] = 11394, + [11657] = 11657, + [11658] = 11198, + [11659] = 11659, + [11660] = 11660, + [11661] = 11490, + [11662] = 11363, + [11663] = 11653, + [11664] = 11587, + [11665] = 11503, + [11666] = 11364, + [11667] = 11667, + [11668] = 11655, + [11669] = 10967, + [11670] = 11515, + [11671] = 11657, + [11672] = 11672, + [11673] = 11396, + [11674] = 11667, + [11675] = 11659, + [11676] = 11398, + [11677] = 10971, + [11678] = 11406, + [11679] = 11264, + [11680] = 11444, + [11681] = 11681, + [11682] = 11212, + [11683] = 11439, + [11684] = 11408, + [11685] = 11592, + [11686] = 10983, + [11687] = 11216, + [11688] = 11688, + [11689] = 11011, + [11690] = 11412, + [11691] = 11441, + [11692] = 11292, + [11693] = 11414, + [11694] = 11694, + [11695] = 11420, + [11696] = 11028, + [11697] = 11697, + [11698] = 11327, + [11699] = 11363, + [11700] = 11364, + [11701] = 11519, + [11702] = 11042, + [11703] = 7886, + [11704] = 11373, + [11705] = 11407, + [11706] = 11706, + [11707] = 11707, + [11708] = 11281, + [11709] = 11709, + [11710] = 11249, + [11711] = 11483, + [11712] = 11712, + [11713] = 11251, + [11714] = 11416, + [11715] = 11049, + [11716] = 11254, + [11717] = 11480, + [11718] = 11718, + [11719] = 11719, + [11720] = 11486, + [11721] = 11445, + [11722] = 11056, + [11723] = 11491, + [11724] = 11724, + [11725] = 11198, + [11726] = 11440, + [11727] = 11551, + [11728] = 11451, + [11729] = 11266, + [11730] = 11198, + [11731] = 11198, + [11732] = 11565, + [11733] = 11261, + [11734] = 11219, + [11735] = 11312, + [11736] = 11517, + [11737] = 11023, + [11738] = 11027, + [11739] = 11739, + [11740] = 11029, + [11741] = 11034, + [11742] = 11450, + [11743] = 11697, + [11744] = 11724, + [11745] = 11223, + [11746] = 11563, + [11747] = 11256, + [11748] = 11748, + [11749] = 11749, + [11750] = 11750, + [11751] = 11535, + [11752] = 11520, + [11753] = 11572, + [11754] = 11275, + [11755] = 11289, + [11756] = 11495, + [11757] = 11757, + [11758] = 11332, + [11759] = 11228, + [11760] = 11569, + [11761] = 11522, + [11762] = 11485, + [11763] = 11719, + [11764] = 11688, + [11765] = 11554, + [11766] = 11426, + [11767] = 11681, + [11768] = 11374, + [11769] = 11400, + [11770] = 11411, + [11771] = 11771, + [11772] = 11492, + [11773] = 11488, + [11774] = 11709, + [11775] = 11775, + [11776] = 11739, + [11777] = 11771, + [11778] = 11253, + [11779] = 11560, + [11780] = 11573, + [11781] = 11316, + [11782] = 11672, + [11783] = 11750, + [11784] = 11465, + [11785] = 11785, + [11786] = 11660, + [11787] = 11193, + [11788] = 11785, + [11789] = 11221, + [11790] = 11749, + [11791] = 11269, + [11792] = 11335, + [11793] = 11793, + [11794] = 11036, + [11795] = 11263, + [11796] = 11598, + [11797] = 11462, + [11798] = 11442, + [11799] = 11038, + [11800] = 11775, + [11801] = 11294, + [11802] = 11304, + [11803] = 11602, + [11804] = 11694, + [11805] = 11609, + [11806] = 11806, + [11807] = 11807, + [11808] = 11808, + [11809] = 11809, + [11810] = 11810, + [11811] = 11811, + [11812] = 11812, + [11813] = 11813, + [11814] = 11814, + [11815] = 11815, + [11816] = 11816, + [11817] = 11817, + [11818] = 7882, + [11819] = 11819, + [11820] = 11810, + [11821] = 11821, + [11822] = 11819, + [11823] = 11823, + [11824] = 11824, + [11825] = 11825, + [11826] = 11826, + [11827] = 11827, + [11828] = 11812, + [11829] = 11829, + [11830] = 10224, + [11831] = 11831, + [11832] = 11832, + [11833] = 11833, + [11834] = 11834, + [11835] = 11806, + [11836] = 4004, + [11837] = 11837, + [11838] = 11838, + [11839] = 11839, + [11840] = 11840, + [11841] = 11841, + [11842] = 11842, + [11843] = 11843, + [11844] = 11284, + [11845] = 11287, + [11846] = 11846, + [11847] = 11297, + [11848] = 11848, + [11849] = 11848, + [11850] = 11850, + [11851] = 11840, + [11852] = 11852, + [11853] = 11853, + [11854] = 11854, + [11855] = 11815, + [11856] = 11856, + [11857] = 11857, + [11858] = 11858, + [11859] = 11841, + [11860] = 11817, + [11861] = 11826, + [11862] = 11862, + [11863] = 11863, + [11864] = 11838, + [11865] = 11865, + [11866] = 11866, + [11867] = 11867, + [11868] = 11868, + [11869] = 11843, + [11870] = 11870, + [11871] = 11871, + [11872] = 11807, + [11873] = 11846, + [11874] = 11874, + [11875] = 11875, + [11876] = 10291, + [11877] = 11877, + [11878] = 10666, + [11879] = 11879, + [11880] = 11808, + [11881] = 11881, + [11882] = 11882, + [11883] = 11883, + [11884] = 11812, + [11885] = 11885, + [11886] = 11886, + [11887] = 11875, + [11888] = 11888, + [11889] = 11832, + [11890] = 11890, + [11891] = 11825, + [11892] = 11892, + [11893] = 11829, + [11894] = 10669, + [11895] = 11879, + [11896] = 11831, + [11897] = 11867, + [11898] = 11840, + [11899] = 11899, + [11900] = 11900, + [11901] = 11901, + [11902] = 11825, + [11903] = 11903, + [11904] = 11904, + [11905] = 11809, + [11906] = 11906, + [11907] = 11865, + [11908] = 11842, + [11909] = 11909, + [11910] = 10469, + [11911] = 11839, + [11912] = 11912, + [11913] = 11840, + [11914] = 11914, + [11915] = 11915, + [11916] = 11916, + [11917] = 11917, + [11918] = 11858, + [11919] = 10473, + [11920] = 4005, + [11921] = 11921, + [11922] = 11917, + [11923] = 10474, + [11924] = 11848, + [11925] = 11925, + [11926] = 11926, + [11927] = 11806, + [11928] = 11928, + [11929] = 7996, + [11930] = 11838, + [11931] = 11931, + [11932] = 11811, + [11933] = 11933, + [11934] = 11874, + [11935] = 11900, + [11936] = 11936, + [11937] = 11937, + [11938] = 11829, + [11939] = 11939, + [11940] = 11936, + [11941] = 11941, + [11942] = 11942, + [11943] = 11943, + [11944] = 7996, + [11945] = 11839, + [11946] = 11946, + [11947] = 11840, + [11948] = 7886, + [11949] = 11858, + [11950] = 11917, + [11951] = 11914, + [11952] = 11937, + [11953] = 11807, + [11954] = 11808, + [11955] = 11955, + [11956] = 11915, + [11957] = 11957, + [11958] = 11848, + [11959] = 11892, + [11960] = 11809, + [11961] = 11961, + [11962] = 11853, + [11963] = 11811, + [11964] = 11532, + [11965] = 11965, + [11966] = 11815, + [11967] = 11831, + [11968] = 11912, + [11969] = 11862, + [11970] = 11955, + [11971] = 11971, + [11972] = 11972, + [11973] = 11848, + [11974] = 11974, + [11975] = 11925, + [11976] = 11955, + [11977] = 11903, + [11978] = 11978, + [11979] = 10767, + [11980] = 11955, + [11981] = 11843, + [11982] = 11843, + [11983] = 11916, + [11984] = 11837, + [11985] = 11955, + [11986] = 11917, + [11987] = 11899, + [11988] = 11862, + [11989] = 11839, + [11990] = 11814, + [11991] = 11879, + [11992] = 11846, + [11993] = 11993, + [11994] = 11863, + [11995] = 11865, + [11996] = 11856, + [11997] = 11997, + [11998] = 11857, + [11999] = 11892, + [12000] = 11848, + [12001] = 11819, + [12002] = 11904, + [12003] = 11856, + [12004] = 12004, + [12005] = 11881, + [12006] = 11846, + [12007] = 12007, + [12008] = 11826, + [12009] = 11883, + [12010] = 11856, + [12011] = 11812, + [12012] = 11838, + [12013] = 11826, + [12014] = 11806, + [12015] = 11857, + [12016] = 12016, + [12017] = 11866, + [12018] = 12018, + [12019] = 11885, + [12020] = 11862, + [12021] = 11839, + [12022] = 11748, + [12023] = 11879, + [12024] = 12024, + [12025] = 11843, + [12026] = 11819, + [12027] = 11846, + [12028] = 11857, + [12029] = 11848, + [12030] = 11862, + [12031] = 11856, + [12032] = 11881, + [12033] = 11857, + [12034] = 7881, + [12035] = 11888, + [12036] = 11914, + [12037] = 11939, + [12038] = 11915, + [12039] = 11030, + [12040] = 11993, + [12041] = 11856, + [12042] = 11857, + [12043] = 11916, + [12044] = 12018, + [12045] = 11862, + [12046] = 12046, + [12047] = 11834, + [12048] = 11866, + [12049] = 12049, + [12050] = 11881, + [12051] = 11812, + [12052] = 12052, + [12053] = 11955, + [12054] = 11856, + [12055] = 11875, + [12056] = 11832, + [12057] = 11857, + [12058] = 11879, + [12059] = 11881, + [12060] = 11883, + [12061] = 11885, + [12062] = 11888, + [12063] = 11832, + [12064] = 10291, + [12065] = 11825, + [12066] = 12066, + [12067] = 11829, + [12068] = 11862, + [12069] = 11831, + [12070] = 11866, + [12071] = 11926, + [12072] = 11867, + [12073] = 11928, + [12074] = 11748, + [12075] = 7884, + [12076] = 11937, + [12077] = 11840, + [12078] = 11501, + [12079] = 11883, + [12080] = 11858, + [12081] = 11812, + [12082] = 11862, + [12083] = 11931, + [12084] = 12084, + [12085] = 6762, + [12086] = 11903, + [12087] = 11917, + [12088] = 12088, + [12089] = 11832, + [12090] = 11883, + [12091] = 12088, + [12092] = 11862, + [12093] = 11839, + [12094] = 11926, + [12095] = 11531, + [12096] = 11928, + [12097] = 12097, + [12098] = 11933, + [12099] = 11413, + [12100] = 11931, + [12101] = 11865, + [12102] = 12102, + [12103] = 12103, + [12104] = 11870, + [12105] = 11843, + [12106] = 12106, + [12107] = 6758, + [12108] = 11925, + [12109] = 11885, + [12110] = 12110, + [12111] = 11933, + [12112] = 11853, + [12113] = 12113, + [12114] = 11806, + [12115] = 11875, + [12116] = 11867, + [12117] = 10544, + [12118] = 11819, + [12119] = 11955, + [12120] = 11888, + [12121] = 11882, + [12122] = 12122, + [12123] = 11914, + [12124] = 11937, + [12125] = 11331, + [12126] = 11814, + [12127] = 11915, + [12128] = 11370, + [12129] = 11879, + [12130] = 11875, + [12131] = 12131, + [12132] = 11916, + [12133] = 11858, + [12134] = 11838, + [12135] = 11846, + [12136] = 11917, + [12137] = 11926, + [12138] = 11928, + [12139] = 11931, + [12140] = 11875, + [12141] = 11881, + [12142] = 11933, + [12143] = 11874, + [12144] = 11900, + [12145] = 11832, + [12146] = 11937, + [12147] = 11972, + [12148] = 11939, + [12149] = 11883, + [12150] = 11879, + [12151] = 11942, + [12152] = 11807, + [12153] = 11808, + [12154] = 11809, + [12155] = 11811, + [12156] = 12156, + [12157] = 12157, + [12158] = 11912, + [12159] = 11885, + [12160] = 4006, + [12161] = 11925, + [12162] = 11852, + [12163] = 8033, + [12164] = 12164, + [12165] = 11874, + [12166] = 12166, + [12167] = 11824, + [12168] = 11814, + [12169] = 11817, + [12170] = 12066, + [12171] = 11900, + [12172] = 11819, + [12173] = 11826, + [12174] = 11812, + [12175] = 11819, + [12176] = 11838, + [12177] = 11848, + [12178] = 11843, + [12179] = 11881, + [12180] = 11854, + [12181] = 11839, + [12182] = 11843, + [12183] = 11846, + [12184] = 12184, + [12185] = 11883, + [12186] = 12186, + [12187] = 11856, + [12188] = 11857, + [12189] = 11885, + [12190] = 11942, + [12191] = 11862, + [12192] = 12192, + [12193] = 12193, + [12194] = 12102, + [12195] = 11888, + [12196] = 11875, + [12197] = 11832, + [12198] = 11879, + [12199] = 11881, + [12200] = 11858, + [12201] = 11883, + [12202] = 11885, + [12203] = 10224, + [12204] = 11888, + [12205] = 11832, + [12206] = 11885, + [12207] = 11840, + [12208] = 11846, + [12209] = 12156, + [12210] = 11888, + [12211] = 11826, + [12212] = 4012, + [12213] = 11858, + [12214] = 12214, + [12215] = 11917, + [12216] = 11856, + [12217] = 11937, + [12218] = 11189, + [12219] = 11832, + [12220] = 11875, + [12221] = 11888, + [12222] = 10291, + [12223] = 11839, + [12224] = 12224, + [12225] = 11814, + [12226] = 11883, + [12227] = 11819, + [12228] = 11832, + [12229] = 11904, + [12230] = 11840, + [12231] = 11937, + [12232] = 11858, + [12233] = 12233, + [12234] = 11917, + [12235] = 11284, + [12236] = 11937, + [12237] = 11748, + [12238] = 11885, + [12239] = 11814, + [12240] = 11840, + [12241] = 11858, + [12242] = 11826, + [12243] = 11287, + [12244] = 11917, + [12245] = 11879, + [12246] = 11937, + [12247] = 11939, + [12248] = 11955, + [12249] = 11297, + [12250] = 4015, + [12251] = 11955, + [12252] = 11881, + [12253] = 11841, + [12254] = 11903, + [12255] = 12186, + [12256] = 11812, + [12257] = 11883, + [12258] = 11842, + [12259] = 12193, + [12260] = 11838, + [12261] = 11885, + [12262] = 12110, + [12263] = 11857, + [12264] = 11806, + [12265] = 12156, + [12266] = 11840, + [12267] = 11978, + [12268] = 11858, + [12269] = 11839, + [12270] = 11917, + [12271] = 10673, + [12272] = 11937, + [12273] = 11997, + [12274] = 11912, + [12275] = 11287, + [12276] = 11942, + [12277] = 12277, + [12278] = 11955, + [12279] = 12279, + [12280] = 10224, + [12281] = 11826, + [12282] = 11888, + [12283] = 11888, + [12284] = 11838, + [12285] = 12285, + [12286] = 12286, + [12287] = 12287, + [12288] = 12288, + [12289] = 4004, + [12290] = 12290, + [12291] = 12291, + [12292] = 12292, + [12293] = 12293, + [12294] = 12294, + [12295] = 12295, + [12296] = 12286, + [12297] = 12290, + [12298] = 12298, + [12299] = 12299, + [12300] = 12294, + [12301] = 12301, + [12302] = 12302, + [12303] = 12303, + [12304] = 12304, + [12305] = 4005, + [12306] = 12306, + [12307] = 12106, + [12308] = 12308, + [12309] = 12309, + [12310] = 12294, + [12311] = 12311, + [12312] = 4012, + [12313] = 12313, + [12314] = 12314, + [12315] = 12315, + [12316] = 12316, + [12317] = 12317, + [12318] = 12318, + [12319] = 12319, + [12320] = 12290, + [12321] = 12285, + [12322] = 12294, + [12323] = 12323, + [12324] = 12324, + [12325] = 12325, + [12326] = 12326, + [12327] = 12298, + [12328] = 12286, + [12329] = 12329, + [12330] = 12304, + [12331] = 12316, + [12332] = 12332, + [12333] = 12192, + [12334] = 12313, + [12335] = 12046, + [12336] = 12336, + [12337] = 12337, + [12338] = 12338, + [12339] = 12290, + [12340] = 12340, + [12341] = 8032, + [12342] = 12342, + [12343] = 12304, + [12344] = 12214, + [12345] = 12345, + [12346] = 12329, + [12347] = 12347, + [12348] = 11813, + [12349] = 11816, + [12350] = 12290, + [12351] = 12308, + [12352] = 12352, + [12353] = 12316, + [12354] = 12332, + [12355] = 12290, + [12356] = 12356, + [12357] = 12290, + [12358] = 12233, + [12359] = 10956, + [12360] = 12360, + [12361] = 12298, + [12362] = 12362, + [12363] = 12363, + [12364] = 12364, + [12365] = 10956, + [12366] = 12308, + [12367] = 4006, + [12368] = 12368, + [12369] = 12290, + [12370] = 12291, + [12371] = 12371, + [12372] = 11901, + [12373] = 11813, + [12374] = 12374, + [12375] = 12374, + [12376] = 12374, + [12377] = 12377, + [12378] = 12378, + [12379] = 12309, + [12380] = 12293, + [12381] = 8035, + [12382] = 12382, + [12383] = 12383, + [12384] = 12374, + [12385] = 12385, + [12386] = 12386, + [12387] = 12329, + [12388] = 12342, + [12389] = 12332, + [12390] = 12390, + [12391] = 12374, + [12392] = 8032, + [12393] = 12393, + [12394] = 11868, + [12395] = 12374, + [12396] = 8035, + [12397] = 12397, + [12398] = 10956, + [12399] = 8034, + [12400] = 12400, + [12401] = 12401, + [12402] = 12402, + [12403] = 12403, + [12404] = 12332, + [12405] = 12313, + [12406] = 12406, + [12407] = 12407, + [12408] = 11816, + [12409] = 12409, + [12410] = 12410, + [12411] = 12411, + [12412] = 12374, + [12413] = 12291, + [12414] = 12414, + [12415] = 12415, + [12416] = 4015, + [12417] = 12417, + [12418] = 12418, + [12419] = 12419, + [12420] = 12288, + [12421] = 12421, + [12422] = 12422, + [12423] = 12301, + [12424] = 12424, + [12425] = 12425, + [12426] = 12426, + [12427] = 12294, + [12428] = 12304, + [12429] = 12402, + [12430] = 12430, + [12431] = 12431, + [12432] = 12432, + [12433] = 12315, + [12434] = 12410, + [12435] = 12304, + [12436] = 8034, + [12437] = 12383, + [12438] = 12286, + [12439] = 12439, + [12440] = 12292, + [12441] = 12313, + [12442] = 12442, + [12443] = 12443, + [12444] = 8033, + [12445] = 12415, + [12446] = 12446, + [12447] = 12316, + [12448] = 12448, + [12449] = 12374, + [12450] = 12294, + [12451] = 12304, + [12452] = 12294, + [12453] = 12304, + [12454] = 12352, + [12455] = 12308, + [12456] = 12456, + [12457] = 12294, + [12458] = 12458, + [12459] = 12304, + [12460] = 12378, + [12461] = 12329, + [12462] = 12462, + [12463] = 12463, + [12464] = 12464, + [12465] = 12465, + [12466] = 12466, + [12467] = 12467, + [12468] = 12468, + [12469] = 12469, + [12470] = 12470, + [12471] = 12471, + [12472] = 12472, + [12473] = 12473, + [12474] = 12474, + [12475] = 12475, + [12476] = 12476, + [12477] = 12477, + [12478] = 12478, + [12479] = 6758, + [12480] = 12480, + [12481] = 12481, + [12482] = 12482, + [12483] = 12483, + [12484] = 12484, + [12485] = 12485, + [12486] = 12475, + [12487] = 12487, + [12488] = 12472, + [12489] = 12489, + [12490] = 12485, + [12491] = 12491, + [12492] = 12492, + [12493] = 12493, + [12494] = 12494, + [12495] = 12495, + [12496] = 12496, + [12497] = 12497, + [12498] = 12496, + [12499] = 12499, + [12500] = 12500, + [12501] = 12463, + [12502] = 12472, + [12503] = 12474, + [12504] = 12504, + [12505] = 12475, + [12506] = 12506, + [12507] = 12507, + [12508] = 12485, + [12509] = 12476, + [12510] = 12466, + [12511] = 12511, + [12512] = 12512, + [12513] = 12513, + [12514] = 12470, + [12515] = 12515, + [12516] = 12475, + [12517] = 12491, + [12518] = 12518, + [12519] = 12481, + [12520] = 12470, + [12521] = 12511, + [12522] = 12466, + [12523] = 12474, + [12524] = 12524, + [12525] = 12525, + [12526] = 12526, + [12527] = 12527, + [12528] = 12528, + [12529] = 12463, + [12530] = 12524, + [12531] = 12531, + [12532] = 6762, + [12533] = 12480, + [12534] = 12485, + [12535] = 12475, + [12536] = 12480, + [12537] = 12515, + [12538] = 12497, + [12539] = 12527, + [12540] = 12540, + [12541] = 12474, + [12542] = 12480, + [12543] = 12470, + [12544] = 12467, + [12545] = 12545, + [12546] = 12481, + [12547] = 12545, + [12548] = 12548, + [12549] = 12549, + [12550] = 12497, + [12551] = 12485, + [12552] = 12476, + [12553] = 12553, + [12554] = 12554, + [12555] = 12555, + [12556] = 12556, + [12557] = 9636, + [12558] = 12558, + [12559] = 12466, + [12560] = 12495, + [12561] = 12561, + [12562] = 12472, + [12563] = 12563, + [12564] = 12469, + [12565] = 12565, + [12566] = 12566, + [12567] = 12567, + [12568] = 12496, + [12569] = 12569, + [12570] = 12570, + [12571] = 12474, + [12572] = 12468, + [12573] = 12526, + [12574] = 12527, + [12575] = 12575, + [12576] = 12576, + [12577] = 12577, + [12578] = 12476, + [12579] = 12563, + [12580] = 12493, + [12581] = 12581, + [12582] = 12582, + [12583] = 12583, + [12584] = 12584, + [12585] = 12463, + [12586] = 12480, + [12587] = 12567, + [12588] = 12526, + [12589] = 12527, + [12590] = 12527, + [12591] = 12497, + [12592] = 12463, + [12593] = 12593, + [12594] = 12496, + [12595] = 12466, + [12596] = 12596, + [12597] = 12597, + [12598] = 12598, + [12599] = 12480, + [12600] = 12476, + [12601] = 12601, + [12602] = 12466, + [12603] = 12545, + [12604] = 12604, + [12605] = 12605, + [12606] = 12496, + [12607] = 12495, + [12608] = 12608, + [12609] = 12609, + [12610] = 12493, + [12611] = 12480, + [12612] = 12612, + [12613] = 12613, + [12614] = 12614, + [12615] = 12615, + [12616] = 12470, + [12617] = 12485, + [12618] = 12545, + [12619] = 12481, + [12620] = 12475, + [12621] = 12527, + [12622] = 12497, + [12623] = 12545, + [12624] = 12624, + [12625] = 12507, + [12626] = 12474, + [12627] = 12627, + [12628] = 12628, + [12629] = 12480, + [12630] = 12630, + [12631] = 12475, + [12632] = 12582, + [12633] = 12612, + [12634] = 12496, + [12635] = 12635, + [12636] = 12467, + [12637] = 12478, + [12638] = 12472, + [12639] = 12639, + [12640] = 12598, + [12641] = 12593, + [12642] = 9640, + [12643] = 12527, + [12644] = 12476, + [12645] = 12645, + [12646] = 12527, + [12647] = 12468, + [12648] = 12463, + [12649] = 12649, + [12650] = 12650, + [12651] = 12628, + [12652] = 12487, + [12653] = 12528, + [12654] = 12496, + [12655] = 12499, + [12656] = 12485, + [12657] = 12481, + [12658] = 12467, + [12659] = 12659, + [12660] = 12639, + [12661] = 12480, + [12662] = 12662, + [12663] = 12496, + [12664] = 12548, + [12665] = 12665, + [12666] = 12545, + [12667] = 12474, + [12668] = 12472, + [12669] = 12480, + [12670] = 12481, + [12671] = 12569, + [12672] = 12475, + [12673] = 12673, + [12674] = 12472, + [12675] = 12675, + [12676] = 12526, + [12677] = 12540, + [12678] = 12526, + [12679] = 11868, + [12680] = 12570, + [12681] = 12515, + [12682] = 12570, + [12683] = 12649, + [12684] = 12497, + [12685] = 12685, + [12686] = 12482, + [12687] = 12687, + [12688] = 12688, + [12689] = 12555, + [12690] = 12476, + [12691] = 12485, + [12692] = 12692, + [12693] = 12598, + [12694] = 12575, + [12695] = 12570, + [12696] = 12601, + [12697] = 12480, + [12698] = 12598, + [12699] = 12475, + [12700] = 12466, + [12701] = 12613, + [12702] = 12466, + [12703] = 12469, + [12704] = 12556, + [12705] = 12705, + [12706] = 12525, + [12707] = 12513, + [12708] = 12475, + [12709] = 12545, + [12710] = 12475, + [12711] = 12553, + [12712] = 12464, + [12713] = 12497, + [12714] = 12474, + [12715] = 12495, + [12716] = 12463, + [12717] = 12717, + [12718] = 12688, + [12719] = 12627, + [12720] = 12554, + [12721] = 12545, + [12722] = 12722, + [12723] = 12673, + [12724] = 12481, + [12725] = 12472, + [12726] = 12645, + [12727] = 12727, + [12728] = 12609, + [12729] = 12545, + [12730] = 12730, + [12731] = 12731, + [12732] = 12497, + [12733] = 12575, + [12734] = 12481, + [12735] = 12466, + [12736] = 12569, + [12737] = 12468, + [12738] = 12463, + [12739] = 12472, + [12740] = 12480, + [12741] = 12741, + [12742] = 12741, + [12743] = 12493, + [12744] = 12577, + [12745] = 12531, + [12746] = 12467, + [12747] = 12722, + [12748] = 12685, + [12749] = 12476, + [12750] = 12750, + [12751] = 12608, + [12752] = 12475, + [12753] = 12731, + [12754] = 12472, + [12755] = 12576, + [12756] = 12473, + [12757] = 12487, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_expression, + sym_expression_statement, + sym_parameter, + sym_pattern, + sym_primary_expression, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_expression] = {.index = 0, .length = 8}, + [sym_expression_statement] = {.index = 8, .length = 5}, + [sym_parameter] = {.index = 13, .length = 10}, + [sym_pattern] = {.index = 23, .length = 6}, + [sym_primary_expression] = {.index = 29, .length = 29}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_as_pattern, + sym_boolean_operator, + sym_comparison_operator, + sym_conditional_expression, + sym_lambda, + sym_named_expression, + sym_not_operator, + sym_primary_expression, + [8] = + sym_assignment, + sym_augmented_assignment, + sym_expression, + sym_tuple_expression, + sym_yield, + [13] = + sym_default_parameter, + sym_dictionary_splat_pattern, + sym_identifier, + sym_keyword_separator, + sym_list_splat_pattern, + sym_positional_separator, + sym_self_parameter, + sym_tuple_pattern, + sym_typed_default_parameter, + sym_typed_parameter, + [23] = + sym_attribute, + sym_identifier, + sym_list_pattern, + sym_list_splat_pattern, + sym_subscript, + sym_tuple_pattern, + [29] = + sym_attribute, + sym_await, + sym_binary_operator, + sym_call, + sym_comptime_expression, + sym_concatenated_string, + sym_dictionary, + sym_dictionary_comprehension, + sym_ellipsis, + sym_false, + sym_float, + sym_generator_expression, + sym_identifier, + sym_integer, + sym_list, + sym_list_comprehension, + sym_list_splat, + sym_mlir_type, + sym_none, + sym_parenthesized_expression, + sym_set, + sym_set_comprehension, + sym_string, + sym_struct_literal, + sym_subscript, + sym_transfer_expression, + sym_true, + sym_tuple, + sym_unary_operator, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {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, 0x1c8a}, {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}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {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}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {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}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {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}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {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}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {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}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {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}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; + +static const TSCharacterRange sym_identifier_character_set_2[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {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}, {0x897, 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, 0x1c8a}, {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}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, + {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, + {0x214e, 0x214e}, {0x2160, 0x2188}, {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, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, + {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 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}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {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}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 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}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {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}, {0x116d0, 0x116e3}, {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}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {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, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {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}, {0x1e5d0, 0x1e5fa}, {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}, {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(55); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(89); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(132); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(92); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(161); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(129); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(3); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '#') ADVANCE(135); + if (lookahead == '\\') ADVANCE(133); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '}') ADVANCE(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(134); + if (lookahead != 0) ADVANCE(135); + END_STATE(); + case 4: + if (lookahead == '\r') SKIP(4); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(99); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(95); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 5: + if (lookahead == '\r') SKIP(5); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(92); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 6: + if (lookahead == '\r') SKIP(6); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(22); + if (lookahead == '&') ADVANCE(23); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(94); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '/') ADVANCE(18); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(19); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(31); + if (lookahead == '@') ADVANCE(24); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(25); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(26); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 7: + if (lookahead == '\r') SKIP(7); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(89); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(97); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(96); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(92); + if (lookahead == '}') ADVANCE(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 8: + if (lookahead == '\r') SKIP(8); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(97); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(96); + if (lookahead == '|') ADVANCE(92); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(8); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 9: + if (lookahead == '\r') SKIP(9); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(97); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '|') ADVANCE(92); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(9); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 10: + if (lookahead == '\r') SKIP(10); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == 'e') ADVANCE(158); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 11: + if (lookahead == '\r') ADVANCE(1); + if ((!eof && lookahead == 00) || + lookahead == '\n') ADVANCE(161); + END_STATE(); + case 12: + if (lookahead == '\r') SKIP(12); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(99); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(95); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 13: + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(92); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(13); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 14: + if (lookahead == '\r') SKIP(14); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(99); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(98); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 15: + if (lookahead == '\r') SKIP(15); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(99); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(98); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 16: + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + END_STATE(); + case 17: + if (lookahead == '.') ADVANCE(128); + END_STATE(); + case 18: + if (lookahead == '/') ADVANCE(28); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 19: + if (lookahead == '<') ADVANCE(29); + END_STATE(); + case 20: + if (lookahead == '=') ADVANCE(110); + END_STATE(); + case 21: + if (lookahead == '=') ADVANCE(110); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); + END_STATE(); + case 22: + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 23: + if (lookahead == '=') ADVANCE(125); + END_STATE(); + case 24: + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 25: + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 26: + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 27: + if (lookahead == '=') ADVANCE(122); + END_STATE(); + case 28: + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 29: + if (lookahead == '=') ADVANCE(124); + END_STATE(); + case 30: + if (lookahead == '=') ADVANCE(123); + END_STATE(); + case 31: + if (lookahead == '>') ADVANCE(30); + END_STATE(); + case 32: + if (lookahead == '_') ADVANCE(38); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); + END_STATE(); + case 33: + if (lookahead == '_') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); + END_STATE(); + case 34: + if (lookahead == '_') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + END_STATE(); + case 35: + if (lookahead == '{') ADVANCE(51); + END_STATE(); + case 36: + if (lookahead == '}') ADVANCE(129); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 37: + if (lookahead == '+' || + lookahead == '-') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + END_STATE(); + case 38: + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); + END_STATE(); + case 39: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); + END_STATE(); + case 40: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + END_STATE(); + case 41: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + END_STATE(); + case 42: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + END_STATE(); + case 43: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 44: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + END_STATE(); + case 45: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 46: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + END_STATE(); + case 47: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 48: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + END_STATE(); + case 49: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + END_STATE(); + case 50: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); + END_STATE(); + case 51: + if (lookahead != 0 && + lookahead != '}') ADVANCE(36); + END_STATE(); + case 52: + if (eof) ADVANCE(55); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(100); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(94); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(89); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(81); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(86); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(92); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 53: + if (eof) ADVANCE(55); + if (lookahead == '\r') SKIP(53); + if (lookahead == '!') ADVANCE(50); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(59); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(74); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 54: + if (eof) ADVANCE(55); + if (lookahead == '\r') SKIP(54); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(93); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == '@') ADVANCE(85); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(54); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + END_STATE(); + case 55: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '=') ADVANCE(117); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(78); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '=') ADVANCE(117); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(123); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(68); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_except); + if (lookahead == '*') ADVANCE(84); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_except); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(122); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(109); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_except_STAR); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(116); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(75); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(75); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(115); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(82); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(125); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(124); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(114); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(114); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(67); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(66); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_AT_EQ); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 128: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 129: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 130: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_BSLASH); + ADVANCE_MAP( + 0, 161, + '\n', 129, + '\r', 2, + 'N', 35, + 'U', 49, + 'u', 45, + 'x', 43, + '"', 129, + '\'', 129, + '\\', 129, + 'a', 129, + 'b', 129, + 'f', 129, + 'n', 129, + 'r', 129, + 't', 129, + 'v', 129, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + END_STATE(); + case 133: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if ((!eof && lookahead == 00)) ADVANCE(135); + if (lookahead == '\r') ADVANCE(135); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); + END_STATE(); + case 134: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + ADVANCE_MAP( + '\r', 134, + '#', 135, + '\\', 133, + '\t', 134, + 0x0b, 134, + '\f', 134, + ' ', 134, + 0x200b, 134, + 0x2060, 134, + 0xfeff, 134, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '{' && + lookahead != '}') ADVANCE(135); + END_STATE(); + case 135: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); + END_STATE(); + case 136: + ACCEPT_TOKEN(sym_type_conversion); + END_STATE(); + case 137: + ACCEPT_TOKEN(sym_integer); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_integer); + ADVANCE_MAP( + '.', 147, + '_', 140, + 'B', 32, + 'b', 32, + 'E', 37, + 'e', 37, + 'O', 33, + 'o', 33, + 'X', 34, + 'x', 34, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym_integer); + ADVANCE_MAP( + '.', 147, + '_', 140, + 'E', 37, + 'e', 37, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(147); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(37); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(38); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(137); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(39); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(42); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_float); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(147); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(37); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(148); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(37); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(151); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(152); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(153); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(154); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(156); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(71); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(149); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(150); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(160); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_line_continuation); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == '\r') SKIP(0); + if (lookahead == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '_') ADVANCE(4); + if (lookahead == 'a') ADVANCE(5); + if (lookahead == 'b') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'd') ADVANCE(8); + if (lookahead == 'e') ADVANCE(9); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'g') ADVANCE(11); + if (lookahead == 'i') ADVANCE(12); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'm') ADVANCE(14); + if (lookahead == 'n') ADVANCE(15); + if (lookahead == 'o') ADVANCE(16); + if (lookahead == 'p') ADVANCE(17); + if (lookahead == 'r') ADVANCE(18); + if (lookahead == 's') ADVANCE(19); + if (lookahead == 't') ADVANCE(20); + if (lookahead == 'u') ADVANCE(21); + if (lookahead == 'v') ADVANCE(22); + if (lookahead == 'w') ADVANCE(23); + if (lookahead == 'y') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'a') ADVANCE(25); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(26); + END_STATE(); + case 3: + if (lookahead == 'r') ADVANCE(27); + END_STATE(); + case 4: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(28); + END_STATE(); + case 5: + if (lookahead == 'b') ADVANCE(29); + if (lookahead == 'n') ADVANCE(30); + if (lookahead == 's') ADVANCE(31); + if (lookahead == 'w') ADVANCE(32); + END_STATE(); + case 6: + if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'r') ADVANCE(34); + END_STATE(); + case 7: + if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'l') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); + END_STATE(); + case 8: + if (lookahead == 'e') ADVANCE(38); + END_STATE(); + case 9: + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 's') ADVANCE(40); + if (lookahead == 'x') ADVANCE(41); + END_STATE(); + case 10: + if (lookahead == 'i') ADVANCE(42); + if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'r') ADVANCE(45); + END_STATE(); + case 11: + if (lookahead == 'l') ADVANCE(46); + END_STATE(); + case 12: + if (lookahead == 'f') ADVANCE(47); + if (lookahead == 'm') ADVANCE(48); + if (lookahead == 'n') ADVANCE(49); + if (lookahead == 's') ADVANCE(50); + END_STATE(); + case 13: + if (lookahead == 'a') ADVANCE(51); + END_STATE(); + case 14: + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'u') ADVANCE(53); + END_STATE(); + case 15: + if (lookahead == 'o') ADVANCE(54); + END_STATE(); + case 16: + if (lookahead == 'r') ADVANCE(55); + if (lookahead == 'u') ADVANCE(56); + if (lookahead == 'w') ADVANCE(57); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'r') ADVANCE(59); + END_STATE(); + case 18: + if (lookahead == 'a') ADVANCE(60); + if (lookahead == 'e') ADVANCE(61); + END_STATE(); + case 19: + if (lookahead == 'e') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); + END_STATE(); + case 20: + if (lookahead == 'h') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); + END_STATE(); + case 21: + if (lookahead == 'n') ADVANCE(67); + END_STATE(); + case 22: + if (lookahead == 'a') ADVANCE(68); + END_STATE(); + case 23: + if (lookahead == 'h') ADVANCE(69); + if (lookahead == 'i') ADVANCE(70); + END_STATE(); + case 24: + if (lookahead == 'i') ADVANCE(71); + END_STATE(); + case 25: + if (lookahead == 'l') ADVANCE(72); + END_STATE(); + case 26: + if (lookahead == 'n') ADVANCE(73); + END_STATE(); + case 27: + if (lookahead == 'u') ADVANCE(74); + END_STATE(); + case 28: + if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'f') ADVANCE(77); + if (lookahead == 'm') ADVANCE(78); + END_STATE(); + case 29: + if (lookahead == 'i') ADVANCE(79); + END_STATE(); + case 30: + if (lookahead == 'd') ADVANCE(80); + END_STATE(); + case 31: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(81); + if (lookahead == 'y') ADVANCE(82); + END_STATE(); + case 32: + if (lookahead == 'a') ADVANCE(83); + END_STATE(); + case 33: + if (lookahead == 'r') ADVANCE(84); + END_STATE(); + case 34: + if (lookahead == 'e') ADVANCE(85); + END_STATE(); + case 35: + if (lookahead == 'p') ADVANCE(86); + if (lookahead == 's') ADVANCE(87); + END_STATE(); + case 36: + if (lookahead == 'a') ADVANCE(88); + END_STATE(); + case 37: + if (lookahead == 'm') ADVANCE(89); + if (lookahead == 'n') ADVANCE(90); + END_STATE(); + case 38: + if (lookahead == 'f') ADVANCE(91); + if (lookahead == 'i') ADVANCE(92); + if (lookahead == 'l') ADVANCE(93); + END_STATE(); + case 39: + if (lookahead == 'i') ADVANCE(94); + if (lookahead == 's') ADVANCE(95); + END_STATE(); + case 40: + if (lookahead == 'c') ADVANCE(96); + END_STATE(); + case 41: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); + case 42: + if (lookahead == 'n') ADVANCE(98); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 44: + if (lookahead == 'r') ADVANCE(99); + END_STATE(); + case 45: + if (lookahead == 'o') ADVANCE(100); + END_STATE(); + case 46: + if (lookahead == 'o') ADVANCE(101); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 48: + if (lookahead == 'p') ADVANCE(102); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'o') ADVANCE(104); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_is); + END_STATE(); + case 51: + if (lookahead == 'm') ADVANCE(105); + END_STATE(); + case 52: + if (lookahead == 't') ADVANCE(106); + END_STATE(); + case 53: + if (lookahead == 't') ADVANCE(107); + END_STATE(); + case 54: + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 56: + if (lookahead == 't') ADVANCE(110); + END_STATE(); + case 57: + if (lookahead == 'n') ADVANCE(111); + END_STATE(); + case 58: + if (lookahead == 's') ADVANCE(112); + END_STATE(); + case 59: + if (lookahead == 'i') ADVANCE(113); + END_STATE(); + case 60: + if (lookahead == 'i') ADVANCE(114); + END_STATE(); + case 61: + if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'f') ADVANCE(116); + if (lookahead == 't') ADVANCE(117); + END_STATE(); + case 62: + if (lookahead == 'l') ADVANCE(118); + END_STATE(); + case 63: + if (lookahead == 'r') ADVANCE(119); + END_STATE(); + case 64: + if (lookahead == 'i') ADVANCE(120); + END_STATE(); + case 65: + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'y') ADVANCE(122); + END_STATE(); + case 66: + if (lookahead == 'p') ADVANCE(123); + END_STATE(); + case 67: + if (lookahead == 'i') ADVANCE(124); + END_STATE(); + case 68: + if (lookahead == 'r') ADVANCE(125); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'i') ADVANCE(127); + END_STATE(); + case 70: + if (lookahead == 't') ADVANCE(128); + END_STATE(); + case 71: + if (lookahead == 'e') ADVANCE(129); + END_STATE(); + case 72: + if (lookahead == 's') ADVANCE(130); + END_STATE(); + case 73: + if (lookahead == 'e') ADVANCE(131); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(132); + END_STATE(); + case 75: + if (lookahead == 'o') ADVANCE(133); + END_STATE(); + case 76: + if (lookahead == 'x') ADVANCE(134); + END_STATE(); + case 77: + if (lookahead == 'u') ADVANCE(135); + END_STATE(); + case 78: + if (lookahead == 'l') ADVANCE(136); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_abi); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 81: + if (lookahead == 'e') ADVANCE(137); + END_STATE(); + case 82: + if (lookahead == 'n') ADVANCE(138); + END_STATE(); + case 83: + if (lookahead == 'i') ADVANCE(139); + END_STATE(); + case 84: + if (lookahead == 'r') ADVANCE(140); + END_STATE(); + case 85: + if (lookahead == 'a') ADVANCE(141); + END_STATE(); + case 86: + if (lookahead == 't') ADVANCE(142); + END_STATE(); + case 87: + if (lookahead == 'e') ADVANCE(143); + END_STATE(); + case 88: + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 89: + if (lookahead == 'p') ADVANCE(145); + END_STATE(); + case 90: + if (lookahead == 't') ADVANCE(146); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 92: + if (lookahead == 'n') ADVANCE(147); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_del); + END_STATE(); + case 94: + if (lookahead == 'f') ADVANCE(148); + END_STATE(); + case 95: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 96: + if (lookahead == 'a') ADVANCE(150); + END_STATE(); + case 97: + if (lookahead == 'c') ADVANCE(151); + END_STATE(); + case 98: + if (lookahead == 'a') ADVANCE(152); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 100: + if (lookahead == 'm') ADVANCE(153); + END_STATE(); + case 101: + if (lookahead == 'b') ADVANCE(154); + END_STATE(); + case 102: + if (lookahead == 'o') ADVANCE(155); + END_STATE(); + case 103: + if (lookahead == 'e') ADVANCE(156); + END_STATE(); + case 104: + if (lookahead == 'u') ADVANCE(157); + END_STATE(); + case 105: + if (lookahead == 'b') ADVANCE(158); + END_STATE(); + case 106: + if (lookahead == 'c') ADVANCE(159); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_mut); + END_STATE(); + case 108: + if (lookahead == 'l') ADVANCE(160); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_out); + END_STATE(); + case 111: + if (lookahead == 'e') ADVANCE(161); + END_STATE(); + case 112: + if (lookahead == 's') ADVANCE(162); + END_STATE(); + case 113: + if (lookahead == 'n') ADVANCE(163); + END_STATE(); + case 114: + if (lookahead == 's') ADVANCE(164); + END_STATE(); + case 115: + if (lookahead == 'd') ADVANCE(165); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); + case 117: + if (lookahead == 'u') ADVANCE(166); + END_STATE(); + case 118: + if (lookahead == 'f') ADVANCE(167); + END_STATE(); + case 119: + if (lookahead == 'u') ADVANCE(168); + END_STATE(); + case 120: + if (lookahead == 'n') ADVANCE(169); + END_STATE(); + case 121: + if (lookahead == 'i') ADVANCE(170); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 123: + if (lookahead == 'e') ADVANCE(171); + END_STATE(); + case 124: + if (lookahead == 'f') ADVANCE(172); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 126: + if (lookahead == 'r') ADVANCE(173); + END_STATE(); + case 127: + if (lookahead == 'l') ADVANCE(174); + END_STATE(); + case 128: + if (lookahead == 'h') ADVANCE(175); + END_STATE(); + case 129: + if (lookahead == 'l') ADVANCE(176); + END_STATE(); + case 130: + if (lookahead == 'e') ADVANCE(177); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_none); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 133: + if (lookahead == 'm') ADVANCE(178); + END_STATE(); + case 134: + if (lookahead == 't') ADVANCE(179); + END_STATE(); + case 135: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 136: + if (lookahead == 'i') ADVANCE(181); + END_STATE(); + case 137: + if (lookahead == 'r') ADVANCE(182); + END_STATE(); + case 138: + if (lookahead == 'c') ADVANCE(183); + END_STATE(); + case 139: + if (lookahead == 't') ADVANCE(184); + END_STATE(); + case 140: + if (lookahead == 'o') ADVANCE(185); + END_STATE(); + case 141: + if (lookahead == 'k') ADVANCE(186); + END_STATE(); + case 142: + if (lookahead == 'u') ADVANCE(187); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 144: + if (lookahead == 's') ADVANCE(188); + END_STATE(); + case 145: + if (lookahead == 't') ADVANCE(189); + END_STATE(); + case 146: + if (lookahead == 'i') ADVANCE(190); + END_STATE(); + case 147: + if (lookahead == 'i') ADVANCE(191); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 150: + if (lookahead == 'p') ADVANCE(192); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_exec); + END_STATE(); + case 152: + if (lookahead == 'l') ADVANCE(193); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 154: + if (lookahead == 'a') ADVANCE(194); + END_STATE(); + case 155: + if (lookahead == 'r') ADVANCE(195); + END_STATE(); + case 156: + if (lookahead == 'r') ADVANCE(196); + END_STATE(); + case 157: + if (lookahead == 't') ADVANCE(197); + END_STATE(); + case 158: + if (lookahead == 'd') ADVANCE(198); + END_STATE(); + case 159: + if (lookahead == 'h') ADVANCE(199); + END_STATE(); + case 160: + if (lookahead == 'o') ADVANCE(200); + END_STATE(); + case 161: + if (lookahead == 'd') ADVANCE(201); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_pass); + END_STATE(); + case 163: + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 164: + if (lookahead == 'e') ADVANCE(203); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_read); + END_STATE(); + case 166: + if (lookahead == 'r') ADVANCE(204); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_self); + END_STATE(); + case 168: + if (lookahead == 'c') ADVANCE(205); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_thin); + END_STATE(); + case 170: + if (lookahead == 't') ADVANCE(206); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 172: + if (lookahead == 'i') ADVANCE(207); + END_STATE(); + case 173: + if (lookahead == 'e') ADVANCE(208); + END_STATE(); + case 174: + if (lookahead == 'e') ADVANCE(209); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 176: + if (lookahead == 'd') ADVANCE(210); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 178: + if (lookahead == 'p') ADVANCE(211); + END_STATE(); + case 179: + if (lookahead == 'e') ADVANCE(212); + END_STATE(); + case 180: + if (lookahead == 'u') ADVANCE(213); + END_STATE(); + case 181: + if (lookahead == 'r') ADVANCE(214); + END_STATE(); + case 182: + if (lookahead == 't') ADVANCE(215); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 185: + if (lookahead == 'w') ADVANCE(216); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 187: + if (lookahead == 'r') ADVANCE(217); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 189: + if (lookahead == 'i') ADVANCE(218); + END_STATE(); + case 190: + if (lookahead == 'n') ADVANCE(219); + END_STATE(); + case 191: + if (lookahead == 't') ADVANCE(220); + END_STATE(); + case 192: + if (lookahead == 'i') ADVANCE(221); + END_STATE(); + case 193: + if (lookahead == 'l') ADVANCE(222); + END_STATE(); + case 194: + if (lookahead == 'l') ADVANCE(223); + END_STATE(); + case 195: + if (lookahead == 't') ADVANCE(224); + END_STATE(); + case 196: + if (lookahead == 'r') ADVANCE(225); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_inout); + END_STATE(); + case 198: + if (lookahead == 'a') ADVANCE(226); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 200: + if (lookahead == 'c') ADVANCE(227); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_owned); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_print); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == 's') ADVANCE(228); + END_STATE(); + case 204: + if (lookahead == 'n') ADVANCE(229); + END_STATE(); + case 205: + if (lookahead == 't') ADVANCE(230); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 207: + if (lookahead == 'e') ADVANCE(231); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 211: + if (lookahead == 't') ADVANCE(232); + END_STATE(); + case 212: + if (lookahead == 'n') ADVANCE(233); + END_STATE(); + case 213: + if (lookahead == 'r') ADVANCE(234); + END_STATE(); + case 214: + if (lookahead == '_') ADVANCE(235); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_assert); + END_STATE(); + case 216: + if (lookahead == 'e') ADVANCE(236); + END_STATE(); + case 217: + if (lookahead == 'i') ADVANCE(237); + END_STATE(); + case 218: + if (lookahead == 'm') ADVANCE(238); + END_STATE(); + case 219: + if (lookahead == 'u') ADVANCE(239); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_deinit); + END_STATE(); + case 221: + if (lookahead == 'n') ADVANCE(240); + END_STATE(); + case 222: + if (lookahead == 'y') ADVANCE(241); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_global); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 225: + if (lookahead == 'e') ADVANCE(242); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_lambda); + END_STATE(); + case 227: + if (lookahead == 'a') ADVANCE(243); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_raises); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 231: + if (lookahead == 'd') ADVANCE(244); + END_STATE(); + case 232: + if (lookahead == 'i') ADVANCE(245); + END_STATE(); + case 233: + if (lookahead == 's') ADVANCE(246); + END_STATE(); + case 234: + if (lookahead == 'e') ADVANCE(247); + END_STATE(); + case 235: + if (lookahead == 'r') ADVANCE(248); + if (lookahead == 't') ADVANCE(249); + END_STATE(); + case 236: + if (lookahead == 'd') ADVANCE(250); + END_STATE(); + case 237: + if (lookahead == 'n') ADVANCE(251); + END_STATE(); + case 238: + if (lookahead == 'e') ADVANCE(252); + END_STATE(); + case 239: + if (lookahead == 'e') ADVANCE(253); + END_STATE(); + case 240: + if (lookahead == 'g') ADVANCE(254); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 242: + if (lookahead == 'd') ADVANCE(255); + END_STATE(); + case 243: + if (lookahead == 'l') ADVANCE(256); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_unified); + END_STATE(); + case 245: + if (lookahead == 'm') ADVANCE(257); + END_STATE(); + case 246: + if (lookahead == 'i') ADVANCE(258); + END_STATE(); + case 247: + if (lookahead == '_') ADVANCE(259); + END_STATE(); + case 248: + if (lookahead == 'e') ADVANCE(260); + END_STATE(); + case 249: + if (lookahead == 'y') ADVANCE(261); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_borrowed); + END_STATE(); + case 251: + if (lookahead == 'g') ADVANCE(262); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_comptime); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_escaping); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_inferred); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 257: + if (lookahead == 'e') ADVANCE(263); + END_STATE(); + case 258: + if (lookahead == 'o') ADVANCE(264); + END_STATE(); + case 259: + if (lookahead == '_') ADVANCE(265); + END_STATE(); + case 260: + if (lookahead == 'g') ADVANCE(266); + END_STATE(); + case 261: + if (lookahead == 'p') ADVANCE(267); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_capturing); + END_STATE(); + case 263: + if (lookahead == '_') ADVANCE(268); + END_STATE(); + case 264: + if (lookahead == 'n') ADVANCE(269); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym___future__); + END_STATE(); + case 266: + if (lookahead == 'i') ADVANCE(270); + END_STATE(); + case 267: + if (lookahead == 'e') ADVANCE(271); + END_STATE(); + case 268: + if (lookahead == 'a') ADVANCE(272); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym___extension); + END_STATE(); + case 270: + if (lookahead == 'o') ADVANCE(273); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym___mlir_type); + END_STATE(); + case 272: + if (lookahead == 's') ADVANCE(274); + END_STATE(); + case 273: + if (lookahead == 'n') ADVANCE(275); + END_STATE(); + case 274: + if (lookahead == 's') ADVANCE(276); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym___mlir_region); + END_STATE(); + case 276: + if (lookahead == 'e') ADVANCE(277); + END_STATE(); + case 277: + if (lookahead == 'r') ADVANCE(278); + END_STATE(); + case 278: + if (lookahead == 't') ADVANCE(279); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym___comptime_assert); + END_STATE(); + default: + return false; + } +} + +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [7] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [8] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [9] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [10] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [11] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [12] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [13] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [16] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [17] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [18] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [19] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [20] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [21] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [22] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [23] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [24] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [25] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [26] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [27] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [28] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [29] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [30] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [31] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [33] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [35] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [36] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [37] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [38] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [39] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [40] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [41] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [43] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [44] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [48] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [49] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [50] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [51] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [52] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [53] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [54] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [55] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [56] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [57] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [58] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [59] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [60] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [61] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [62] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [63] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [64] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [65] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [66] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [67] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [68] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [69] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [71] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [74] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [75] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [76] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [77] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [78] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [79] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [80] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [81] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [82] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [83] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [84] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [85] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [86] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [87] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [88] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [89] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [90] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [91] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [92] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [93] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [94] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [95] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [96] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [97] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [98] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [99] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [100] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [101] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [102] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [103] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [104] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [105] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [106] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [107] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [108] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [109] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [110] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [111] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [112] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [113] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [114] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [115] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [116] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [117] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [118] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [119] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [120] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [121] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [122] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [123] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [124] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [125] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [126] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [127] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [128] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [129] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [130] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [131] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [132] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [133] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [134] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [135] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [136] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [137] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [138] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [139] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [140] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [141] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [142] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [143] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [144] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [145] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [146] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [147] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [148] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [149] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [150] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [151] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [152] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [153] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [154] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [155] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [156] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [157] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [158] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [159] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [160] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [161] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [162] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [163] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [164] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [165] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [166] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [167] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [168] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [169] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [170] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [171] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [172] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [173] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [174] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [175] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [176] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [177] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [178] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [179] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [180] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [181] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [182] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [183] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [184] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [185] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [186] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [187] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [188] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [189] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [190] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [191] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [192] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [193] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [194] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [195] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [196] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [197] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [198] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [199] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [200] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [201] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [202] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [203] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [204] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [205] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [206] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [207] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [208] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [209] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [210] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [211] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [212] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [213] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [214] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [215] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [216] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [217] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [218] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [219] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [220] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [221] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [222] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [223] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [224] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [225] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [226] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [227] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [228] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [229] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [230] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [231] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [232] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [233] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [234] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [235] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [236] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [237] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [238] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [239] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [240] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [241] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [242] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [243] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [244] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [245] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [246] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [247] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [248] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [249] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [250] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [251] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [252] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [253] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [254] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [255] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [256] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [257] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [258] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [259] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [260] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [261] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [262] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [263] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [264] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [265] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [266] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [267] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [268] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [269] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [270] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [271] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [272] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [273] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [274] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [275] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [276] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [277] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [278] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [279] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [280] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [281] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [282] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [283] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [284] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [285] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [286] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [287] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [288] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [289] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [290] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [291] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [292] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [293] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [294] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [295] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [296] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [297] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [298] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [299] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [300] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [301] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [302] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [303] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [304] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [305] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [306] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [307] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [308] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [309] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [310] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [311] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [312] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [313] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [314] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [315] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [316] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [317] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [318] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [319] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [320] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [321] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [322] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [323] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [324] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [325] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [326] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [327] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [328] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [329] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [330] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [331] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [332] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [333] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [334] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [335] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [336] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [337] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [338] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [339] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [340] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [341] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [342] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [343] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [344] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [345] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [346] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [347] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [348] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [349] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [350] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [351] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [352] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [353] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [354] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [355] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [356] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [357] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [358] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [359] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [360] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [361] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [362] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [363] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [364] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [365] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [366] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [367] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [368] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [369] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [370] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [371] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [372] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [373] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [374] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [375] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [376] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [377] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [378] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [379] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [380] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [381] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [382] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [383] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [384] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [385] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [386] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [387] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [388] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [389] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [390] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [391] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [392] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [393] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [394] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [395] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [396] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [397] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [398] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [399] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [400] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [401] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [402] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [403] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [404] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [405] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [406] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [407] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [408] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [409] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [410] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [411] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [412] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [413] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [414] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [415] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [416] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [417] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [418] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [419] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [420] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [421] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [422] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [423] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [424] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [425] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [426] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [427] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [428] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [429] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [430] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [431] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [432] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [433] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [434] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [435] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [436] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [437] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [438] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [439] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [440] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [441] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [442] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [443] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [444] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [445] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [446] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [447] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [448] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [449] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [450] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [451] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [452] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [453] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [454] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [455] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [456] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [457] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [458] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [459] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [460] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [461] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [462] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [463] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [464] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [465] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [466] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [467] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [468] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [469] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [470] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [471] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [472] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [473] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [474] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [475] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [476] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [477] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [478] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [479] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [480] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [481] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [482] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [483] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [484] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [485] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [486] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [487] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [488] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [489] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [490] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [491] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [492] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [493] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [494] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [495] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [496] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [497] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [498] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [499] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [500] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [501] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [502] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [503] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [504] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [505] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [506] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [507] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [508] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [509] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [510] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [511] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [512] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [513] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [514] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [515] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [516] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [517] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [518] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [519] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [520] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [521] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [522] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [523] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [524] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [525] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [526] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [527] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [528] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [529] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [530] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [531] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [532] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [533] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [534] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [535] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [536] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [537] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [538] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [539] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [540] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [541] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [542] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [543] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [544] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [545] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [546] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [547] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [548] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [549] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [550] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [551] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [552] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [553] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [554] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [555] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [556] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [557] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [558] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [559] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [560] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [561] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [562] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [563] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [564] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [565] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [566] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [567] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [568] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [569] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [570] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [571] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [572] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [573] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [574] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [575] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [576] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [577] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [578] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [579] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [580] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [581] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [582] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [583] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [584] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [585] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [586] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [587] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [588] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [589] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [590] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [591] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [592] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [593] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [594] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [595] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [596] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [597] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [598] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [599] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [600] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [601] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [602] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [603] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [604] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [605] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [606] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [607] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [608] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [609] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [610] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [611] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [612] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [613] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [614] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [615] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [616] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [617] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [618] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [619] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [620] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [622] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [623] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [624] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [625] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [626] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [627] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [628] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [629] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [630] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [631] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [632] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [633] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [634] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [635] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [636] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [637] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [638] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [639] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [640] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [641] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [642] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [643] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [644] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [645] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [646] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [647] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [648] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [649] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [650] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [651] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [652] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [653] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [654] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [655] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [656] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [657] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [658] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [659] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [660] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [661] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [662] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [663] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [664] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [665] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [666] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [667] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [668] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [669] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [670] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [671] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [672] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [673] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [674] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [675] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [676] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [677] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [678] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [679] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [680] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [681] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [682] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [683] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [684] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [685] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [686] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [687] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [688] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [689] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [690] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [691] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [692] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [693] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [694] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [695] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [697] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [698] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [699] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [700] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [705] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [706] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [708] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [709] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [710] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [711] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [712] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [713] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [716] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [717] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [719] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [720] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [721] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [722] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [723] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [724] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [726] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [727] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [728] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [729] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [730] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [731] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [733] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [736] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [737] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [738] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [739] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [740] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [741] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [742] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [744] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [745] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [746] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [747] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [748] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [749] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [751] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [752] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [753] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [754] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [755] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [756] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [758] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [759] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [760] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [761] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [763] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [764] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [765] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [768] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [769] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [770] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [771] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [772] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [774] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [775] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [776] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [777] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [778] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [779] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [780] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [781] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [782] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [783] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [784] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [785] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [787] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [788] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [789] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [790] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [791] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [793] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [794] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [795] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [796] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [797] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [798] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [799] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [800] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [801] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [802] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [803] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [804] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [805] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [807] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [808] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [809] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [810] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [811] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [812] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [813] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [814] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [815] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [816] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [817] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [819] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [820] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [821] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [822] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [823] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [824] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [825] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [826] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [827] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [828] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [829] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [830] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [832] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [833] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [834] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [835] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [836] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [837] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [838] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [839] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [840] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [841] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [842] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [843] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [844] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [845] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [846] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [847] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [848] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [849] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [850] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [851] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [852] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [853] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [854] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [855] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [856] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [857] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [858] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [859] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [860] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [861] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [862] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [863] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [864] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [865] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [866] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [867] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [868] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [869] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [870] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [871] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [872] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [873] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [874] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [875] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [876] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [877] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [878] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [879] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [880] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [881] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [882] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [883] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [884] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [885] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [886] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [887] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [888] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [889] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [890] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [891] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [892] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [893] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [894] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [895] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [896] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [897] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [898] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [899] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [900] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [901] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [902] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [903] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [904] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [905] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [906] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [907] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [908] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [909] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [910] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [911] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [912] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [913] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [914] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [915] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [916] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [917] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [918] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [919] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [920] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [921] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [922] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [924] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [925] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [926] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [927] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [928] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [929] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [930] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [931] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [932] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [933] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [934] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [935] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [936] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [937] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [938] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [939] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [940] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [941] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [942] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [943] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [944] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [945] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [946] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [947] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [948] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [949] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [950] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [951] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [952] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [953] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [954] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [955] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [956] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [957] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [958] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [959] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [960] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [961] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [962] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [963] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [964] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [965] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [966] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [967] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [968] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [969] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [970] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [971] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [972] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [973] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [974] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [975] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [976] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [977] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [978] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [979] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [980] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [981] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [982] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [983] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [984] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [985] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [986] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [987] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [988] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [989] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [990] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [991] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [992] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [993] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [994] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [995] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [996] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [997] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [998] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [999] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1000] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1001] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1002] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1003] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1004] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1005] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1006] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1007] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1008] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1009] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1010] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1011] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1012] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1013] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1014] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1015] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1016] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1017] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1018] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1019] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1020] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1021] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1022] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1023] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1024] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1025] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1026] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1027] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1028] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1029] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1030] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1031] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1032] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1033] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1034] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1035] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1036] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1037] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1038] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1039] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1040] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1041] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1042] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1043] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1044] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1045] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1046] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1047] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1048] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1049] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1050] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1051] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1052] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1053] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1054] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1055] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1056] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1057] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1058] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1059] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1060] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1061] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1062] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1063] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1064] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1065] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1066] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1067] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1068] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1069] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1070] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1071] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1072] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1073] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1074] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1075] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1076] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1077] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1078] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1079] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1080] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1081] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1082] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1083] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1084] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1085] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1086] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1087] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1088] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1089] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1090] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1091] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1092] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1093] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1094] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1095] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1096] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1097] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1098] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1099] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1100] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1101] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1102] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1103] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1104] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1105] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1106] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1107] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1108] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1109] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1110] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1111] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1112] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1113] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1114] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1115] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1116] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1117] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1118] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1119] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1120] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1121] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1122] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1123] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1124] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1125] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1126] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1127] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1128] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1129] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1130] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1131] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1132] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1133] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1134] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1135] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1136] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1137] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1138] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1139] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1140] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1141] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1142] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1143] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1144] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1145] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1146] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1147] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1148] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1150] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1151] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1152] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1153] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1154] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1155] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1156] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1157] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1158] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1159] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1161] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1162] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1163] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1164] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1165] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1166] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1167] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1168] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1169] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1171] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1174] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1175] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1177] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1178] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1179] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1180] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1181] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1182] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1183] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1184] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1185] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1186] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1187] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1189] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1190] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1191] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1192] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1193] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1194] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1195] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1196] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1197] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1198] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1201] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1202] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1203] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1204] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1205] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1206] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1207] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1208] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1209] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1210] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1211] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1212] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1213] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1214] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1215] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1216] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1217] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1218] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1219] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1220] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1221] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1222] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1223] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1224] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1225] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1226] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1227] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1228] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1229] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1230] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1231] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1232] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1233] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1234] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1235] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1236] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1237] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1238] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1239] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1240] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1241] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1242] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1243] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [1244] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1245] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1246] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1247] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1248] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1249] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1250] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1251] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1252] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1253] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1254] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1255] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1256] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1257] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1258] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1259] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1260] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1261] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1262] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1263] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1264] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1265] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1266] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1267] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1268] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1269] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1270] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1271] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1272] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1273] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1274] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1275] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1276] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1277] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1278] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1279] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1280] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1281] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1282] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1283] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1284] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1285] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1286] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1287] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1288] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1289] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1290] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1291] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1292] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1293] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1294] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1295] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1296] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1297] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1298] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1299] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1300] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1301] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1302] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1303] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1304] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1305] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1306] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1307] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1308] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1309] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1310] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1311] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1312] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1313] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1314] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1315] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1316] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1317] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1318] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1319] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1320] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1321] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1322] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1323] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1324] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1325] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1326] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1327] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1328] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1329] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1330] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1331] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1332] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1333] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1334] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1335] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1336] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1337] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1338] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1339] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1340] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1341] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1342] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1343] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1344] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1345] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1346] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1347] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1348] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1349] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1350] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1351] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1352] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1353] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1354] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1355] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1356] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1357] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1358] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1359] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1360] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1361] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1362] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1363] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1364] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1365] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1366] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1367] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1368] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1369] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1370] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1371] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1372] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1373] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1374] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1375] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1376] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1377] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1378] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1379] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1380] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1381] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1382] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1383] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1384] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1385] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1386] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1387] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1388] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1389] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1390] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1391] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1392] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1393] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1394] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1395] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1396] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1397] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1398] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1399] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1400] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1401] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1402] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1403] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1404] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1405] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1406] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1407] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1408] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1409] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1410] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1411] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1412] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1413] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1414] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1415] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1416] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1417] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1418] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1419] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1420] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1421] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1422] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1423] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1424] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1425] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1426] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1427] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1428] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1429] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1430] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1431] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1432] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1433] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1434] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1435] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1436] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1437] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1438] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1439] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1440] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1441] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1442] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1443] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1444] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1445] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1446] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1447] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1448] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1449] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1450] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1451] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1452] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1453] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1454] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1455] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1456] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1457] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1458] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1459] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1460] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1461] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1462] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1463] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1464] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1465] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1466] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1467] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1468] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1469] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1470] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1471] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1472] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1473] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1474] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1475] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1476] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1477] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1478] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1479] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1480] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1481] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1482] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1483] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1484] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1485] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1486] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1487] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1488] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1489] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1493] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1494] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1495] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1499] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1500] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1502] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1503] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1504] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1505] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1507] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1508] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1510] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1511] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1513] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1514] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1515] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1517] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1518] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1519] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1520] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1521] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1522] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1523] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1524] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1525] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1527] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1528] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1529] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1532] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1533] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1534] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1535] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1536] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1537] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1538] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1539] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1540] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1542] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1543] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1544] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1545] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1546] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1547] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1548] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1549] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1550] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1551] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1552] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1553] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1554] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1555] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1556] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1557] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1558] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1559] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1560] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1561] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1562] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1563] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1564] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1565] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1566] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1567] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1568] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1569] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1570] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1571] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1572] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1573] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1574] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1575] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1576] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1577] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1578] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1579] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1580] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1581] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1582] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1583] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1584] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1585] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1586] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1587] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1588] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1589] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1590] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1591] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1592] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1593] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1594] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1595] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1596] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1597] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1598] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1599] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1600] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1601] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1602] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1603] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1604] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1605] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1606] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1607] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1608] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1609] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1610] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1611] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1612] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1613] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1614] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1615] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1616] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1617] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1618] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1619] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1620] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1621] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1622] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1623] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1624] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1625] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1626] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1627] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1628] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1629] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1630] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1631] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1634] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1635] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1636] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1637] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1638] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1639] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1640] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1641] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1644] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1645] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1646] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1647] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1648] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1649] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1650] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1651] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1652] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1653] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1654] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1656] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1657] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1658] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1659] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1660] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1661] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1662] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1663] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1664] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1665] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1666] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1667] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1668] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1669] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1670] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1671] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1672] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1673] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1674] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1675] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1676] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1677] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1678] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1679] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1680] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1681] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1682] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1683] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1684] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1685] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1686] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1687] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1688] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1689] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1690] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1691] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1692] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1693] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1694] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1695] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1696] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1697] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1698] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1699] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1700] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1701] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1702] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1703] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1704] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1705] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1706] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1707] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1708] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1709] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1710] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1711] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1712] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1713] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1714] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1715] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1716] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1717] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1718] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1719] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1720] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1721] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1722] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1723] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1724] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1725] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1726] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1727] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1728] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1729] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1730] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1731] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1732] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1733] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1734] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1735] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1736] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1737] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1738] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1739] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1740] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1741] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1742] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1743] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1744] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1745] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1746] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1747] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1748] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1749] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1750] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1751] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1752] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1753] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1754] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1755] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1756] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1757] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1758] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1759] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1760] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1761] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1762] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1763] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1764] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1765] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1766] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1767] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1768] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1769] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1770] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1771] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1772] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1773] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1774] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1775] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1776] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1777] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1778] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1779] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1780] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1781] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1782] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [1783] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1784] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1785] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1786] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1787] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1788] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1789] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1790] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1791] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1792] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1793] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1794] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1795] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1796] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1797] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1798] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1799] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1800] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1801] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1802] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1803] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1804] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1805] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1806] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1807] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1808] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1809] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1810] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1811] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1812] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1813] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1814] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1815] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1816] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1817] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1818] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1819] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1820] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1821] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1822] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1823] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1824] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1825] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1826] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1827] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1828] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1829] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1830] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1831] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1832] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1833] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1834] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1835] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1836] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1837] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1838] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1839] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1840] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1841] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1842] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1843] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1844] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1845] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1846] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1847] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1848] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [1849] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1850] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1851] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [1852] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [1853] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1854] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1855] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1856] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [1857] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1858] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1859] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1860] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1861] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1862] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 4}, + [1863] = {.lex_state = 13, .external_lex_state = 5, .reserved_word_set_id = 4}, + [1864] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 5}, + [1865] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [1866] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [1867] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 7}, + [1868] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 7}, + [1869] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, + [1870] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 6}, + [1871] = {.lex_state = 12, .external_lex_state = 5, .reserved_word_set_id = 9}, + [1872] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 9}, + [1873] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 10}, + [1874] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 6}, + [1875] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 11}, + [1876] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 11}, + [1877] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 6}, + [1878] = {.lex_state = 12, .external_lex_state = 5, .reserved_word_set_id = 9}, + [1879] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 9}, + [1880] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 8}, + [1881] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 6}, + [1882] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 6}, + [1883] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 9}, + [1884] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 9}, + [1885] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [1886] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [1887] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 6}, + [1888] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1889] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1890] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1891] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1892] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1893] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1894] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1895] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1896] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1897] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1898] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1899] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1900] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1901] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1902] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1903] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1904] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1905] = {.lex_state = 12, .external_lex_state = 5, .reserved_word_set_id = 13}, + [1906] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1907] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1908] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1909] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1910] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1911] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1912] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1913] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1914] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1915] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1916] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1917] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1918] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1919] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1920] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1921] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1922] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1923] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1924] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1925] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1926] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1927] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1928] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1929] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1930] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1931] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1932] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1933] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1934] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1935] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1936] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1937] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1938] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1939] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1940] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1941] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1942] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1943] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1944] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1945] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1946] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1947] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1948] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1949] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1950] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1951] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1952] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1953] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1954] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1955] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1956] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1957] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1958] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1959] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1960] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1961] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1962] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1963] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1964] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1965] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1966] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1967] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1968] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1969] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1970] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1971] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1972] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1973] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1974] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1975] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1976] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1977] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1978] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1979] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1980] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1981] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1982] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1983] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1984] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1985] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1986] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1987] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1988] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1989] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 12}, + [1990] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1991] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1992] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 13}, + [1993] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1994] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 14}, + [1995] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 11}, + [1996] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 13}, + [1997] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1998] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1999] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 15}, + [2000] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 14}, + [2001] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, + [2002] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 16}, + [2003] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 15}, + [2004] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 14}, + [2005] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 17}, + [2006] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, + [2007] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 16}, + [2008] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [2009] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 17}, + [2010] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [2011] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 14}, + [2012] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 16}, + [2013] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 15}, + [2014] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [2015] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [2016] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 4}, + [2017] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 4}, + [2018] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 16}, + [2019] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 17}, + [2020] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [2021] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2022] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2023] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2024] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2025] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2026] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2027] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2028] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2029] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2030] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, + [2031] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2032] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2033] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2034] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2035] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2036] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2037] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2038] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2039] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2040] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2041] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2042] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2043] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2044] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 16}, + [2045] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2046] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2047] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2048] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2049] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2050] = {.lex_state = 13, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2051] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 16}, + [2052] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2053] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2054] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2055] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2056] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2057] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2058] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2059] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2060] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2061] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2062] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2063] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [2064] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2065] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2066] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2067] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2068] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2069] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2070] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2071] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2072] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2073] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2074] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2075] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2076] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2077] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2078] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2079] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2080] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2081] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2082] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2083] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2084] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2085] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2086] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2087] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2088] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2089] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2090] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2091] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2092] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2093] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2094] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2095] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2096] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2097] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2098] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2099] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 16}, + [2100] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2101] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2102] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2103] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 16}, + [2104] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 16}, + [2105] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2106] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2107] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2108] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2109] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2110] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2111] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2112] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2113] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2114] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2115] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2116] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2117] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2118] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2119] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2120] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2121] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2122] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2123] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2124] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2125] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2126] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2127] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2128] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2129] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2130] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2131] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2132] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2133] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2134] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2135] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2136] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2137] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2138] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2139] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2140] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2141] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2142] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2143] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2144] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2145] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2146] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2147] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2148] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2149] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2150] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2151] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2152] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2153] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2154] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2155] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2156] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2157] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2158] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2159] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2160] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2161] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2162] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2163] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2164] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2165] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2166] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2167] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2168] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2169] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2170] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2171] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2172] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2173] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2174] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2175] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2176] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2177] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2178] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2179] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2180] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2181] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2182] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2183] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2184] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2185] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2186] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2187] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2188] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2189] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2190] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2191] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2192] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2193] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2194] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2195] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2196] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2197] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2198] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2199] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2200] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2201] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2202] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2203] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2204] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2205] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2206] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2207] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2208] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2209] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2210] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2211] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2212] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2213] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2214] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2215] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2216] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2217] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2218] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2219] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2220] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2221] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2222] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2223] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2224] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2225] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2226] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2227] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2228] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2229] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2230] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2231] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2232] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2233] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2234] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2235] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2236] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2237] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2238] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2239] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2240] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2241] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2242] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2243] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2244] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2245] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2246] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2247] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2248] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2249] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2250] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2251] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2252] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2253] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2254] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2255] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2256] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2257] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2258] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2259] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2260] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2261] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2262] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2263] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2264] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2265] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2266] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2267] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2268] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2269] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2270] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2271] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2272] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2273] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2274] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2275] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2276] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2277] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2278] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2279] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2280] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2281] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2282] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2283] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2284] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2285] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2286] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2287] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2288] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2289] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2290] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2291] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2292] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2293] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2294] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2295] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2296] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2297] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2298] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2299] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2300] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2301] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2302] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2303] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2304] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2305] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2306] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2307] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2308] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2309] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2310] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2311] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2312] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2313] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2314] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2315] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2316] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2317] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2318] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2319] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2320] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2321] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2322] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2323] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2324] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2325] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2326] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2327] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2328] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2329] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2330] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2331] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2332] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2333] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2334] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2335] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2336] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2337] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2338] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2339] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2340] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2341] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2342] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2343] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2344] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2345] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2346] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2347] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2348] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2349] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2350] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2351] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2352] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2353] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2354] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2355] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2356] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2357] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2358] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2359] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2360] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2361] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2362] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2363] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2364] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2365] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2366] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2367] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2368] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2369] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2370] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2371] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2372] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2373] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2374] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2375] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2376] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2377] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2378] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2379] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2380] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2381] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2382] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2383] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2384] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2385] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2386] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2387] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2388] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2389] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2390] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2391] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2392] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2393] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2394] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2395] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2396] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2397] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2398] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2399] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2400] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2401] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2402] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2403] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2404] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2405] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2406] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2407] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2408] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2409] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2410] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2411] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2412] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2413] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2414] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2415] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2416] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2417] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2418] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2419] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2420] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2421] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2422] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2423] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2424] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2425] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2426] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2427] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2428] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2429] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2430] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2431] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2432] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2433] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2434] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2435] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2436] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2437] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2438] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2439] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2440] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2441] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2442] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2443] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2444] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2445] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2446] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2447] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2448] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2449] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2450] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2451] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2452] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2453] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2454] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2455] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2456] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2457] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2458] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2459] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2460] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2461] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2462] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2463] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2464] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2465] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2466] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2467] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2468] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2469] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2470] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2471] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2472] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2473] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2474] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2475] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2476] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2477] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2478] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2479] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2480] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2481] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2482] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2483] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2484] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2485] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2486] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2487] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2488] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2489] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2490] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2491] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2492] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2493] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2494] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2495] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2496] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2497] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2498] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2499] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2500] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2501] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2502] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2503] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2504] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2505] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2506] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2507] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2508] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2509] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2510] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2511] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2512] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2513] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2514] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2515] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2516] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2517] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2518] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2519] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2520] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2521] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2522] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2523] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2524] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2525] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2526] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2527] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2528] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2529] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2530] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2531] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2532] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2533] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2534] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2535] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2536] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2537] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2538] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2539] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2540] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2541] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2542] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2543] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2544] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2545] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2546] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2547] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2548] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2549] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2550] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2551] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2552] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2553] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2554] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2555] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2556] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2557] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2558] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2559] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2560] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2561] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2562] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2563] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2564] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2565] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2566] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2567] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2568] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2569] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2570] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2571] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2572] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2573] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2574] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2575] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2576] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2577] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2578] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2579] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2580] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2581] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2582] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2583] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2584] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2585] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2586] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2587] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2588] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2589] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2590] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2591] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2592] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2593] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2594] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2595] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2596] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2597] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2598] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2599] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2600] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2601] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2602] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2603] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2604] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2605] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2606] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2607] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2608] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2609] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2610] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2611] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2612] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2613] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2614] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2615] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2616] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2617] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2618] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2619] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2620] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2621] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2622] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2623] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2624] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2625] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2626] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2627] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2628] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2629] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2630] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2631] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2632] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2633] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2634] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2635] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2636] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2637] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2638] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2639] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2640] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2641] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2642] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2643] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2644] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2645] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2646] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2647] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2648] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2649] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2650] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2651] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2652] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2653] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2654] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2655] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2656] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2657] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2658] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2659] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2660] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2661] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2662] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2663] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2664] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2665] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2666] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2667] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2668] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2669] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2670] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2671] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2672] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2673] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2674] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2675] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2676] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2677] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2678] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2679] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2680] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2681] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2682] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2683] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2684] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2685] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2686] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2687] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2688] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2689] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2690] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2691] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2692] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2693] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2694] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2695] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2696] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2697] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2698] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2699] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2700] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2701] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2702] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2703] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2704] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2705] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2706] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2707] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2708] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2709] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2710] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2711] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2712] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2713] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2714] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2715] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2716] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2717] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2718] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2719] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2720] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2721] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2722] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2723] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2724] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2725] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2726] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2727] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2728] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2729] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2730] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2731] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2732] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2733] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2734] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2735] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2736] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2737] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2738] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2739] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2740] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2741] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2742] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2743] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2744] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2745] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2746] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2747] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2748] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2749] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2750] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2751] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2752] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2753] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2754] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2755] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2756] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2757] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2758] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2759] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2760] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2761] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2762] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2763] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2764] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2765] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2766] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2767] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2768] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2769] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2770] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2771] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2772] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2773] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2774] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2775] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2776] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2777] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2778] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2779] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2780] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2781] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2782] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2783] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2784] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2785] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2786] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2787] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2788] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2789] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2790] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2791] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2792] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2793] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2794] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2795] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2796] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2797] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2798] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2799] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2800] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2801] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2802] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2803] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2804] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2805] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2806] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2807] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2808] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2809] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2810] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2811] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2812] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2813] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2814] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2815] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2816] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2817] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 21}, + [2818] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2819] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2820] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2821] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2822] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2823] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2824] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2825] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2826] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2827] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 20}, + [2828] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2829] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2830] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2831] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [2832] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2833] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2834] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2835] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2836] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2837] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [2838] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2839] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2840] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2841] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2842] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2843] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2844] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2845] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2846] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2847] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2848] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2849] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2850] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2851] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2852] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2853] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2854] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2855] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2856] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2857] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2858] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2859] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2860] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2861] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2862] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2863] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2864] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2865] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2866] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2867] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2868] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2869] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2870] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2871] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2872] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2873] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2874] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2875] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2876] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2877] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2878] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2879] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2880] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2881] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2882] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2883] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2884] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2885] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2886] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2887] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2888] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2889] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2890] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2891] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2892] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2893] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2894] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2895] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2896] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2897] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2898] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2899] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2900] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2901] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2902] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2903] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2904] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2905] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2906] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2907] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2908] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2909] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2910] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2911] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2912] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2913] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2914] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2915] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2916] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2917] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2918] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2919] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2920] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2921] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2922] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2923] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2924] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2925] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2926] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2927] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2928] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2929] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2930] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2931] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2932] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2933] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2934] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2935] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2936] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2937] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2938] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2939] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2940] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2941] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2942] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2943] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2944] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2945] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2946] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2947] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2948] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2949] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2950] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2951] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2952] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2953] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2954] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2955] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2956] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2957] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2958] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2959] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2960] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2961] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2962] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2963] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2964] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2965] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2966] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2967] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2968] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2969] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2970] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2971] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2972] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2973] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2974] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2975] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2976] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2977] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2978] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2979] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2980] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2981] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2982] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2983] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2984] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2985] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2986] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2987] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2988] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2989] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2990] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2991] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2992] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2993] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2994] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2995] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2996] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2997] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2998] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [2999] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3000] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3001] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3002] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3003] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3004] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3005] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3006] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3007] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3008] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3009] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3010] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3011] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3012] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3013] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3014] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3015] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3016] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3017] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3018] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3019] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3020] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3021] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3022] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3023] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3024] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3025] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3026] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3027] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3028] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3029] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3030] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3031] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3032] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3033] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3034] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3035] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3036] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3037] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3038] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3039] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3040] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3041] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3042] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3043] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3044] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3045] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3046] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3047] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3048] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3049] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3050] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3051] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3052] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3053] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3054] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3055] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3056] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3057] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3058] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3059] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3060] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3061] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3062] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3063] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3064] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3065] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3066] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3067] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3068] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3069] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3070] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3071] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3072] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3073] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3074] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3075] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3076] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3077] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3078] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3079] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3080] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3081] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3082] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3083] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3084] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3085] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3086] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3087] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3088] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3089] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3090] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3091] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3092] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3093] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3094] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3095] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3096] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3097] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3098] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3099] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3100] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3101] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3102] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3103] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3104] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3105] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3106] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3107] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3108] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3109] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3110] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3111] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3112] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3113] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3114] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3115] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3116] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3117] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3118] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3119] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3120] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3121] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3122] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3123] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3124] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3125] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3126] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3127] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3128] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3129] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3130] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3131] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3132] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3133] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3134] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3135] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3136] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3137] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3138] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3139] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3140] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3141] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3142] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3143] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3144] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3145] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3146] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3147] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3148] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3149] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3150] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3151] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3152] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3153] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3154] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3155] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3156] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3157] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3158] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3159] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3160] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3161] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3162] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3163] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3164] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3165] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3166] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3167] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3168] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3169] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3170] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3171] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3172] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3173] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3174] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3175] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3176] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3177] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3178] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3179] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3180] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3181] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3182] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3183] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3184] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3185] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3186] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3187] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3188] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3189] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3190] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3191] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3192] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3193] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3194] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3195] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3196] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3197] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3198] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3199] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3200] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3201] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3202] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3203] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3204] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3205] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3206] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3207] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3208] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3209] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3210] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3211] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3212] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3213] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3214] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3215] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3216] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3217] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3218] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3219] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3220] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3221] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3222] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3223] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3224] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3225] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3226] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3227] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3228] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3229] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3230] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3231] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3232] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3233] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3234] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3235] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3236] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3237] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3238] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3239] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3240] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3241] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3242] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3243] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3244] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3245] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3246] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3247] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3248] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3249] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3250] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3251] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3252] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3253] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3254] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3255] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3256] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3257] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3258] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3259] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3260] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3261] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3262] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3263] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3264] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3265] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3266] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3267] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3268] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3269] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3270] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3271] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3272] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3273] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3274] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3275] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3276] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3277] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3278] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3279] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3280] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3281] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3282] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3283] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3284] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3285] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3286] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3287] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3288] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3289] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3290] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3291] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3292] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3293] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3294] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3295] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3296] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3297] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3298] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3299] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3300] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3301] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3302] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3303] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3304] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3305] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3306] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3307] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3308] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3309] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3310] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3311] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3312] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3313] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3314] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3315] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3316] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3317] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3318] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3319] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3320] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3321] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3322] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3323] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3324] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3325] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3326] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3327] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3328] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3329] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3330] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3331] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3332] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3333] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3334] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3335] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3336] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3337] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3338] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3339] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3340] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3341] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3342] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3343] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3344] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3345] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3346] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3347] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3348] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3349] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3350] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3351] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3352] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3353] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3354] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3355] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3356] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3357] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3358] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3359] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3360] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3361] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3362] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3363] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3364] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3365] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3366] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3367] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3368] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3369] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3370] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3371] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3372] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3373] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3374] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3375] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3376] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3377] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3378] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3379] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3380] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3381] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3382] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3383] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3384] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3385] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3386] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3387] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3388] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3389] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3390] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3391] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3392] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3393] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3394] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3395] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3396] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3397] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3398] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3399] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3400] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3401] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3402] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3403] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3404] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3405] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3406] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3407] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3408] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3409] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3410] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3411] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3412] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3413] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3414] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3415] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3416] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3417] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3418] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3419] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3420] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3421] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3422] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3423] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3424] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3425] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3426] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3427] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3428] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3429] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3430] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3431] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3432] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3433] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3434] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3435] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3436] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3437] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3438] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3439] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3440] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3441] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3442] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3443] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3444] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3445] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3446] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3447] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3448] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3449] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3450] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3451] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3452] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3453] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3454] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3455] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3456] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3457] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3458] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3459] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3460] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3461] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3462] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3463] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3464] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3465] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3466] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3467] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3468] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3469] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3470] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3471] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3472] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3473] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3474] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3475] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3476] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3477] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3478] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3479] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3480] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3481] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3482] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3483] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3484] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3485] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3486] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3487] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3488] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3489] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3490] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3491] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3492] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3493] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3494] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3495] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3496] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3497] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3498] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3499] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3500] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3501] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3502] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3503] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3504] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3505] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3506] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3507] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3508] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3509] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3510] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3511] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3512] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3513] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3514] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3515] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3516] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3517] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3518] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3519] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3520] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3521] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3522] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3523] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3524] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3525] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3526] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3527] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3528] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3529] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3530] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3531] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3532] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3533] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3534] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3535] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3536] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3537] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3538] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3539] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3540] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3541] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3542] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3543] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3544] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3545] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3546] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3547] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3548] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3549] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3550] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3551] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3552] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3553] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3554] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3555] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3556] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3557] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3558] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3559] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3560] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3561] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3562] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3563] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3564] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3565] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3566] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3567] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3568] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3569] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3570] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3571] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3572] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3573] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3574] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3575] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3576] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3577] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3578] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3579] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3580] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3581] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3582] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3583] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3584] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3585] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3586] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3587] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3588] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3589] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3590] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3591] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3592] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3593] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3594] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3595] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3596] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3597] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3598] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3599] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3600] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3601] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3602] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3603] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3604] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3605] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3606] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3607] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3608] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3609] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3610] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3611] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3612] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3613] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3614] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3615] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3616] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3617] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3618] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3619] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3620] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3621] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3622] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3623] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3624] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3625] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3626] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3627] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3628] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 18}, + [3629] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3630] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3631] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3632] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3633] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3634] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3635] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3636] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3637] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3638] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3639] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3640] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3641] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3642] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3643] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3644] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3645] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3646] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3647] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3648] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3649] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3650] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3651] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3652] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3653] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3654] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3655] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3656] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3657] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3658] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3659] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3660] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3661] = {.lex_state = 6, .external_lex_state = 5, .reserved_word_set_id = 19}, + [3662] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3663] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3664] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3665] = {.lex_state = 6, .external_lex_state = 5, .reserved_word_set_id = 19}, + [3666] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3667] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3668] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3669] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3670] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3671] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3672] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3673] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3674] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3675] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3676] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3677] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3678] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3679] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3680] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3681] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3682] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3683] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3684] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3685] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3686] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3687] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3688] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3689] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3690] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3691] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3692] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3693] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3694] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3695] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3696] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3697] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3698] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3699] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3700] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3701] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3702] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3703] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3704] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3705] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3706] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3707] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3708] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3709] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3710] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3711] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3712] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3713] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3714] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 24}, + [3715] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3716] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3717] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3718] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3719] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3720] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3721] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3722] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3723] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3724] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3725] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3726] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3727] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3728] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3729] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3730] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3731] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3732] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3733] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3734] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3735] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3736] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3737] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3738] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3739] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3740] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3741] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3742] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3743] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3744] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3745] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3746] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3747] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3748] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3749] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 18}, + [3750] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3751] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3752] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3753] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3754] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3755] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3756] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3757] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3758] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3759] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3760] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3761] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3762] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3763] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3764] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3765] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3766] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3767] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3768] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3769] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3770] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3771] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3772] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3773] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3774] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3775] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3776] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3777] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3778] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3779] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3780] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3781] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3782] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3783] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3784] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3785] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3786] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3787] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3788] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3789] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3790] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3791] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3792] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3793] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3794] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3795] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3796] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3797] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3798] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3799] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3800] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3801] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3802] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3803] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3804] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3805] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3806] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3807] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3808] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3809] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3810] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 22}, + [3811] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 22}, + [3812] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3813] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3814] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3815] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3816] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3817] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3818] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 22}, + [3819] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3820] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3821] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3822] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3823] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3824] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3825] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3826] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3827] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3828] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3829] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3830] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3831] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3832] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3833] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3834] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3835] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3836] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3837] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3838] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3839] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3840] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3841] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3842] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3843] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [3844] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3845] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3846] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3847] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3848] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3849] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3850] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3851] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3852] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3853] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 25}, + [3854] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3856] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [3857] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3858] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [3859] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3860] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3861] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3862] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 24}, + [3863] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3864] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3865] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [3866] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3867] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3868] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3869] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3870] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3871] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3872] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3873] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3874] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3876] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3877] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3878] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3879] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3880] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3881] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3882] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 24}, + [3883] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [3884] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 24}, + [3885] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3886] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3887] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3888] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3889] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3890] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3891] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3892] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3893] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3894] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3895] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 24}, + [3896] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3897] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3898] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3899] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3900] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3901] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3902] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3903] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3904] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3905] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3906] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3907] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3908] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3909] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [3910] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3911] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3912] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3913] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3915] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3916] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3917] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3918] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3919] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3920] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [3921] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3922] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3924] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3925] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3927] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3928] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 19}, + [3929] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3930] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3931] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3933] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3935] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3936] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 19}, + [3937] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3938] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3939] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3940] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3941] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3942] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 23}, + [3943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3945] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3947] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3948] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3949] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3951] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3952] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3954] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [3955] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [3956] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3957] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3958] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3959] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [3960] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3961] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3962] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [3963] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3964] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [3965] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3966] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3967] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3968] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [3969] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3970] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3971] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3972] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3973] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3974] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3975] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3976] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3977] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3978] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3979] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3980] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3981] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3982] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3983] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3984] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3985] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3986] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 22}, + [3987] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3988] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3989] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3990] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3991] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3992] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3993] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3994] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3995] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [3996] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 23}, + [3997] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [3998] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [3999] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4000] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4001] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [4002] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4003] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4004] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 26}, + [4005] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 26}, + [4006] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 26}, + [4007] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4008] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4009] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4010] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 26}, + [4011] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4012] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 26}, + [4013] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4014] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4015] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 26}, + [4016] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4017] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4018] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4019] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4020] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [4021] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4022] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4023] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4024] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4025] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4026] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4027] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4028] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4029] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4030] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4031] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 26}, + [4032] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4033] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4034] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 26}, + [4035] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4036] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [4037] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4038] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4039] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4040] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4041] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4042] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4043] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4044] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4045] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4046] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4047] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4048] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4049] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4050] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4051] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4052] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4053] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4054] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4055] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4056] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 26}, + [4057] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4058] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4059] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [4060] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4061] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 26}, + [4062] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4063] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [4064] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4065] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 23}, + [4066] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4067] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4068] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4069] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4070] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4071] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4072] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4073] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4074] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4075] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4076] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4077] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4078] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4079] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4080] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4081] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4082] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4083] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4084] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4085] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4086] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4087] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4088] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4089] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4090] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4091] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4092] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4093] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4094] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4095] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4096] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4097] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4098] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4099] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4100] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4101] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4102] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4103] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4104] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4105] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4106] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4107] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4108] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4109] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4110] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4111] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4112] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4113] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4114] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4115] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4116] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4117] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4118] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4119] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4120] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4121] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4122] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4123] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4124] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4125] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4126] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4127] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4128] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4129] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4130] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4131] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4132] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4133] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4134] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4135] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4136] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4137] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4138] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4139] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4140] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4141] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4142] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4143] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4144] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4145] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4146] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4147] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4148] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4149] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4150] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4151] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4152] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4153] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4154] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4155] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4156] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4157] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4158] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4159] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4160] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4161] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4162] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4163] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4164] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4165] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4166] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4167] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4168] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4169] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4170] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4171] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4172] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4173] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4174] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4175] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4176] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4177] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4178] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4179] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4180] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4181] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4182] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4183] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4184] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4185] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4186] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4187] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4188] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4189] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4190] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4191] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4192] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4193] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4194] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4195] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4196] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4197] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [4198] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4199] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4200] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4201] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4202] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4203] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4204] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4205] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4206] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4207] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4208] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4209] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4210] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4211] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4212] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4213] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4214] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4215] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4216] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4217] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4218] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4219] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4220] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4221] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4222] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4223] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4224] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4225] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4226] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4227] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4228] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4229] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4230] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4231] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4232] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4233] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4234] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4235] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4236] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4237] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4238] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4239] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4240] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4241] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4242] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4243] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4244] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4245] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4246] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4247] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4248] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4249] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4250] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4251] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4252] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4253] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4254] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4255] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4256] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4257] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4258] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4259] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4260] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4261] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4262] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4263] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4264] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4265] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4266] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4267] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4268] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4269] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4270] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [4271] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4272] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4273] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4274] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4275] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4276] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4277] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4278] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4279] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4280] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 23}, + [4281] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4282] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4283] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4284] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4285] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4286] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4287] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4288] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4289] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4290] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4291] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4292] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4293] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4294] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4295] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4296] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4297] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4298] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4299] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4300] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4301] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4302] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4303] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4304] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4305] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4306] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4307] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 27}, + [4308] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 27}, + [4309] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 27}, + [4310] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 27}, + [4311] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4312] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4313] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4314] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4315] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4316] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4317] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4318] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4319] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4320] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4321] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4322] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4323] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4324] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4325] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4326] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4327] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4328] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4329] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4330] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4331] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4332] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4333] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4334] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4335] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4336] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4337] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4338] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4339] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4340] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4341] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4342] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4343] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4344] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4345] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4346] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4347] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4348] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4349] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4350] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4351] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4352] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4353] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4354] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4355] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4356] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4357] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4358] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4359] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4360] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4361] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4362] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4363] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4364] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4365] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4366] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4367] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4368] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4369] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4370] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4371] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4372] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4373] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4374] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4375] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4376] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4377] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4378] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4379] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4380] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4381] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4382] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4383] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4384] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4385] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4386] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4387] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4388] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4389] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4390] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4391] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4392] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4393] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4394] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4395] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4396] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4397] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4398] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4399] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4400] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4401] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4402] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4403] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4404] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4405] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4406] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4407] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4408] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4409] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4410] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4411] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4412] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4413] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4414] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4415] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4416] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4417] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4418] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4419] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4420] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4421] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4422] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4423] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4424] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4425] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4426] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4427] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4428] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4429] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4430] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4431] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4432] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4433] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4434] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4435] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4436] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4437] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4438] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4439] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4440] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4441] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4442] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4443] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4444] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4445] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4446] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4447] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4449] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4450] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4452] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4453] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4455] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4460] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4461] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4462] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4463] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4464] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4465] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4466] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4467] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4468] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4469] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4470] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4471] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4472] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4473] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4474] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4475] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4476] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4478] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4479] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4480] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4481] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4482] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4483] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4484] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4485] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4487] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4489] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4490] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4491] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4494] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4495] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4496] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4502] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4503] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4504] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4505] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4507] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4509] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4510] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4511] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4512] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4514] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4517] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4518] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4519] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4520] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4522] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4524] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4525] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4528] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4530] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4531] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4532] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4533] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4534] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4535] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4536] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4537] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4538] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4539] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4540] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4541] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4542] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4543] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4544] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4546] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4547] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4548] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4549] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4550] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4552] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4554] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4557] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4558] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4559] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4561] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4562] = {.lex_state = 7, .external_lex_state = 11}, + [4563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4566] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4568] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4569] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4570] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4571] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4572] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4573] = {.lex_state = 7, .external_lex_state = 11}, + [4574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4575] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4576] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4580] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4582] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4583] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4584] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4585] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4587] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4588] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4589] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4590] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4592] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4593] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4594] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4596] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4598] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4600] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4601] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4602] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4603] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4605] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4606] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4607] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4608] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4609] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4610] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4611] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4612] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4613] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4614] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4615] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4616] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4617] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4618] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4619] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4620] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4622] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4623] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4624] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4625] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4626] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4627] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4628] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4629] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4630] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4631] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4632] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4633] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4634] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4635] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4636] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4637] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4638] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4639] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4640] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4641] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4642] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4643] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4644] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4645] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4646] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4647] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4648] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4649] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4650] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4651] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4652] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4653] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4654] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4655] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4656] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4657] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4658] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4659] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4660] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4661] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4662] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4663] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4664] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4665] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4666] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4667] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4668] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4669] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4670] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4671] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4672] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4673] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4674] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4675] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4676] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4677] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4678] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4679] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4680] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4681] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4682] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4683] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4684] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4685] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4686] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4687] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4688] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4689] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4690] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4691] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4692] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4693] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4694] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4695] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4697] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4698] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4699] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4700] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4705] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4706] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4708] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4709] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4710] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4711] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4712] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4713] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4716] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4717] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4719] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4720] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4721] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4722] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4723] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4724] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4726] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4727] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4728] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4729] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4730] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4731] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4733] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4736] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4737] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4738] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4739] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4740] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4741] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4742] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4744] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4745] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4746] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4747] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4748] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4749] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4751] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4752] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4753] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4754] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4755] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4756] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4758] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4759] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4760] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4761] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4763] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4764] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4765] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4766] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4768] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4769] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4770] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4771] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4772] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4774] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4775] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4776] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4777] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4778] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4780] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4781] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4782] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4783] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4784] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4785] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4787] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4788] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4789] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4790] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4791] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4792] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4793] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4794] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4795] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4796] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4797] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4798] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4799] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4800] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4801] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4803] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4805] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4806] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4807] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4808] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4809] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4810] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4811] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4812] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4813] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4814] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4815] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4816] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4817] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4819] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4820] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4821] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4822] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4823] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4824] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4825] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4826] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4827] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4828] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4829] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4830] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4832] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4833] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4834] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4835] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4836] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4837] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4838] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4839] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4840] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4841] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4842] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4843] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4844] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4845] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4846] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4847] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4848] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4849] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4850] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4851] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4852] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4853] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4854] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4856] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4857] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4858] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4859] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4860] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4861] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4862] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4863] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4864] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4865] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4866] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4869] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4870] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4871] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4872] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4873] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4874] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4877] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4878] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4879] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4880] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4881] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4882] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4883] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4884] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4885] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4886] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4887] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4888] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4889] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4890] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4891] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4892] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4893] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4894] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4895] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4896] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4897] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4898] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4899] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4900] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4901] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4902] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4903] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4904] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4905] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4906] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4907] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4908] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4909] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4910] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4911] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4912] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4913] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4918] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4919] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4921] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4922] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4924] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4925] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4927] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4929] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4935] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4936] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4937] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4938] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4939] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4940] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4941] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4942] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4943] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4945] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4947] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4948] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4949] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4951] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4953] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4954] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4955] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4956] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4958] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4959] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4960] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4961] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4962] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4963] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4964] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4965] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4966] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4967] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4968] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4969] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4970] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4971] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4972] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4973] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4974] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4975] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4976] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4977] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4978] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4979] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4980] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4981] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4982] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4983] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4984] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4985] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4986] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4987] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4988] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4989] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4990] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4991] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4992] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4993] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4994] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4995] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4996] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4997] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4998] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [4999] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5000] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5001] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5002] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5003] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5004] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5005] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5006] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5007] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5008] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5009] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5010] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5011] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5012] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5013] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5014] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5015] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5016] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5017] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5018] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5019] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5020] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5021] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5022] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5023] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5024] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5025] = {.lex_state = 7, .external_lex_state = 11}, + [5026] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5027] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5028] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5029] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5030] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5031] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5032] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5033] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5034] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5035] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5036] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5037] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5038] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5039] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5040] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5041] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5042] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5043] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5044] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5045] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5046] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5047] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5048] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5049] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5050] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5051] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5052] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5053] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5054] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5055] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5056] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5057] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5058] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5059] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5060] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5061] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5062] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5063] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5064] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5065] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5066] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5067] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5068] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5069] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5070] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5071] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5072] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5073] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5074] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5075] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5076] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5077] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5078] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5079] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5080] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5081] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5082] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5083] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5084] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5085] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5086] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5087] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5088] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5089] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5090] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5091] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5092] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5093] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5094] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5095] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5096] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5097] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5098] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5099] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5100] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5101] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5102] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5103] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5104] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5105] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5106] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5107] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5108] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5109] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5110] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5111] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5112] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5113] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5114] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5115] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5116] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5117] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5118] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5119] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5120] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5121] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5122] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5123] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5124] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5125] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5126] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5127] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5128] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5129] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5130] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5131] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5132] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5133] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5134] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5135] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5136] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5137] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5138] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5139] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5140] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5141] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5142] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5143] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5144] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5145] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5146] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5147] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5148] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5149] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5150] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5151] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5152] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5153] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5154] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5155] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5156] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5157] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5158] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5159] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5160] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5161] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5162] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5163] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5164] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5165] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5166] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5167] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5168] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5169] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5170] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5171] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5172] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5173] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5174] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5175] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5176] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5177] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5178] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5179] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5180] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5181] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5182] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5183] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5184] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5185] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5186] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5187] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5188] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5189] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5190] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5191] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5192] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5193] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5194] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5195] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5196] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5197] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5198] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5199] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5200] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5201] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5202] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5203] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5204] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5205] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5206] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5207] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5208] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5209] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5210] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5211] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5212] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5213] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5214] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5215] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5216] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5217] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5218] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5219] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5220] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5221] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5222] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5223] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5224] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5225] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5226] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5227] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5228] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5229] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5230] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5231] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5232] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5233] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5234] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5235] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5236] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5237] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5238] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5239] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5240] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5241] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5242] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5243] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5244] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5245] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5246] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5247] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5248] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5249] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5250] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5251] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5252] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5253] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5254] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5255] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5256] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5257] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5258] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5259] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5260] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5261] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5262] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5263] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5264] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5265] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5266] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5267] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5268] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5269] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5270] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5271] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5272] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5273] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5274] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5275] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5276] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5277] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5278] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5279] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5280] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5281] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5282] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5283] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5284] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5285] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5286] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5287] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5288] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5289] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5290] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5291] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5292] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5293] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5294] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5295] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5296] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [5297] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5298] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5299] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5300] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5301] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5302] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5303] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5304] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5305] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5306] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5307] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5308] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5309] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5310] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5311] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5312] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5313] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5314] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5315] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5316] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5317] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5318] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5319] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5320] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5321] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5322] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5323] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5324] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5325] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5326] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5327] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5328] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5329] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5330] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5331] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5332] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5333] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5334] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5335] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5336] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5337] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5338] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5339] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5340] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5341] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5342] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5343] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5344] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5345] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5346] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5347] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5348] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5349] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5350] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5351] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5352] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5353] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5354] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5355] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5356] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5357] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5358] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5359] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5360] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5361] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5362] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5363] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5364] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5365] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5366] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5367] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5368] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5369] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5370] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5371] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5372] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5373] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5374] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5375] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5376] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5377] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5378] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5379] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5380] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5381] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5382] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5383] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5384] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5385] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5386] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5387] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5388] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5389] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5390] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5391] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5392] = {.lex_state = 7, .external_lex_state = 11}, + [5393] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5394] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5395] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5396] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5397] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5398] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5399] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5400] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5401] = {.lex_state = 7, .external_lex_state = 11}, + [5402] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5403] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5404] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5405] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5406] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5407] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5408] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5409] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5410] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5411] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5412] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5413] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5414] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5415] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5416] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5417] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5418] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5419] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5420] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5421] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5422] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5423] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5424] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5425] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5426] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5427] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5428] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5429] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5430] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5431] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5432] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5433] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5434] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5435] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5437] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5438] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5439] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5440] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5441] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5442] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5443] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5444] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5445] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5446] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5447] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5449] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5450] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5453] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5460] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5461] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5462] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5463] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5464] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5465] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5466] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5467] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5468] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5469] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5470] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5471] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5472] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5473] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5474] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5475] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5476] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5478] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5479] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5480] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5481] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5482] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5483] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5484] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5485] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5487] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5489] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5490] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5491] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5494] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5495] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5496] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5502] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5503] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5504] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5505] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5509] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5510] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5511] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5512] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5514] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5517] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5518] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5519] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5520] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5524] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5525] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5528] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5530] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5531] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5532] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5533] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5534] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5535] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5536] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5537] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5538] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5539] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5540] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5541] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5542] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5543] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5544] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5548] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5549] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5550] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5552] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5554] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5557] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5558] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5559] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5561] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5562] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5566] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5568] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5570] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5571] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5572] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5573] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5574] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5576] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5577] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5578] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5579] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5580] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5581] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5583] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5584] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5585] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5586] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5587] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5588] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5589] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5590] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5591] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5593] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5594] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5596] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5598] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5601] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5603] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5605] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5606] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5607] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5608] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5609] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5610] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5611] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5612] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5613] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5614] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5615] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5616] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5617] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5618] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5619] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5620] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5622] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5623] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5624] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5625] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5626] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5627] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5628] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5629] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5630] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5631] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5632] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5633] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5634] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5635] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5636] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5637] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5638] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5639] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5640] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5641] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5642] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5643] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5644] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5645] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5646] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5647] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5648] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5649] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5650] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5651] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5652] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5653] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5654] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5655] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5656] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5657] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5658] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5659] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5660] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5661] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5662] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5663] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5664] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5665] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5666] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5667] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5668] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5669] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5670] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5671] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5672] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5673] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5674] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5675] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5676] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5677] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5678] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5679] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5680] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5681] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5682] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5683] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5684] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5685] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5686] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5687] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5688] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5689] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5690] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5691] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5692] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5693] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5694] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5695] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5697] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5698] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5699] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5700] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5705] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5706] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5708] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5709] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5710] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5711] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5712] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5713] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5715] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5716] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5717] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5718] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5719] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5720] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5721] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5722] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5723] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5724] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5725] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5726] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5727] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5728] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5729] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5730] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5731] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5733] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5736] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5737] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5738] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5739] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5740] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5741] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5742] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5744] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5745] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5746] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5747] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5748] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5749] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5751] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5752] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5753] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5754] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5755] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5756] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5758] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5759] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5760] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5761] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5763] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5764] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5765] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5766] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5768] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5769] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5770] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5771] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5772] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5774] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5775] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5776] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5777] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5778] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5780] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5781] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5782] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5783] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5784] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5785] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5787] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5788] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5789] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5790] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5791] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5792] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5793] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5794] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5795] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5796] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5797] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5798] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5799] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5800] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5801] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5803] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5805] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5806] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5807] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5808] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5809] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5810] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5811] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5812] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5813] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5814] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5815] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5816] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5817] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5819] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5820] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5821] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5822] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5823] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5824] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5825] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5826] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5827] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5828] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5829] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5830] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5832] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5833] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5834] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5835] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5836] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5837] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5838] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5839] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5840] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5841] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5842] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5843] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5844] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5845] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5846] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5847] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5848] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5849] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5850] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5851] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5852] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5853] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5854] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5855] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5856] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5857] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5858] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5859] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5860] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5861] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5862] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5863] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5865] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5866] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5867] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5868] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5869] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5870] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5871] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5872] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5873] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5874] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5875] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5876] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5877] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5878] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5879] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5880] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5881] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5882] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5883] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5884] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5885] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5886] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5887] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5888] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5889] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5890] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5891] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5892] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5893] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5894] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5895] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5896] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5897] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5898] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5899] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5900] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5901] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5902] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5903] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5904] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5905] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5906] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5907] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5908] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5909] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5910] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5911] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5912] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5913] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5914] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5916] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5917] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5918] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5919] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5921] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5922] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5923] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5924] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5925] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5927] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5929] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5931] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5932] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5934] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5935] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5936] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5937] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5938] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5939] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5940] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5941] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5942] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5944] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5945] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5947] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5948] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5949] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5951] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5952] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5954] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5955] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5956] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5958] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5959] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5960] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5961] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5962] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5963] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5964] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5965] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5966] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5967] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5968] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5969] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5970] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5971] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5972] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5973] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5974] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5975] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5976] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5977] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5978] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5979] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5980] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5981] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5982] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5983] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5984] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5985] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5986] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5987] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5988] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5989] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5990] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5991] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5992] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5993] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5994] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5995] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5996] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5997] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5998] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5999] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6000] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6001] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6002] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6003] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6004] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6005] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6006] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6007] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6008] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6009] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6010] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6011] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6012] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6013] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6014] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6015] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6016] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6017] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6018] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6019] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6020] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6021] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6022] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6023] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6024] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6025] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6026] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6027] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6028] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6029] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6030] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6031] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6032] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6033] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6034] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6035] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6036] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6037] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6038] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6039] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6040] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6041] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6042] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6043] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6044] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6045] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6046] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6047] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6048] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6049] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6050] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6051] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6052] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6053] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6054] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6055] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6056] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6057] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6058] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6059] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6060] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6061] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6062] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6063] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6064] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6065] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6066] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6067] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6068] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6069] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6070] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6071] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6072] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6073] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6074] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6075] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6076] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6077] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6078] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6079] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6080] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6081] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6082] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6083] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6084] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6085] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6086] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6087] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6088] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6089] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6090] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6091] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6092] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6093] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6094] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6095] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6096] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6097] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6098] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6099] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6100] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6101] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6102] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6103] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6104] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6105] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6106] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6107] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6108] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6109] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6110] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6111] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6112] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6113] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6114] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6115] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6116] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6117] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6118] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6119] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6120] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6121] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6122] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6123] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6124] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6125] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6126] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6127] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6128] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6129] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6130] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6131] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6132] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6133] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6134] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6135] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6136] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6137] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6138] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6139] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6140] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6141] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6142] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6143] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6144] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6145] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6146] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6147] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6148] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6149] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6150] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6151] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6152] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6153] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6154] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6155] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6156] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6157] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6158] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6159] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6160] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6161] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6162] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6163] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6164] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6165] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6166] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6167] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6168] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6169] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6170] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6171] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6172] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6173] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6174] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6175] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6176] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6177] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6178] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6179] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6180] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6181] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6182] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6183] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6184] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6185] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6186] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6187] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6188] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6189] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6190] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6191] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6192] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6193] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6194] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6195] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6196] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6197] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6198] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6199] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6200] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6201] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6202] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6203] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6204] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6205] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6206] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6207] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6208] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6209] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6210] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6211] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6212] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6213] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6214] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6215] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6216] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6217] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6218] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6219] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6220] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6221] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6222] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6223] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6224] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6225] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6226] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6227] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6228] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6229] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6230] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6231] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6232] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6233] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6234] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6235] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6236] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6237] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6238] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6239] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6240] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6241] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6242] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6243] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6244] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6245] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6246] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6247] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6248] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6249] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6250] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6251] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6252] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6253] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6254] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6255] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6256] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6257] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6258] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6259] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6260] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6261] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6262] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6263] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6264] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6265] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6266] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6267] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6268] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6269] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6270] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6271] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6272] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6273] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6274] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6275] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6276] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6277] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6278] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6279] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6280] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6281] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6282] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6283] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6284] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6285] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6286] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6287] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6288] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6289] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6290] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6291] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6292] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6293] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6294] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6295] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6296] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6297] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6298] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6299] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6300] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6301] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6302] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6303] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6304] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6305] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6306] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6307] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6308] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6309] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6310] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6311] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6312] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6313] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6314] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6315] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6316] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6317] = {.lex_state = 7, .external_lex_state = 11}, + [6318] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6319] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6320] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6321] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6322] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6323] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6324] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6325] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6326] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6327] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6328] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6329] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6330] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6331] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6332] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6333] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6334] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6335] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6336] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6337] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6338] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6339] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6340] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6341] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6342] = {.lex_state = 7, .external_lex_state = 11}, + [6343] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6344] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6345] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6346] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6347] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6348] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6349] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6350] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6351] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6352] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6353] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6354] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6355] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6356] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6357] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6358] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6359] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6360] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6361] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6362] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6363] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6364] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6365] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6366] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6367] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6368] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6369] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6370] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6371] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6372] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6373] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6374] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6375] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6376] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6377] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6378] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6379] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6380] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6381] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6382] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6383] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6384] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6385] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6386] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6387] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6388] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6389] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6390] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6391] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6392] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6393] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6394] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6395] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6396] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6397] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6398] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6399] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6400] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6401] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6402] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6403] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6404] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6405] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6406] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6407] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6408] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6409] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6410] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6411] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6412] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6413] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6414] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6415] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6416] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6417] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6418] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6419] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6420] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6421] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6422] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6423] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6424] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6425] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6426] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6427] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6428] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6429] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6430] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6431] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6432] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6433] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6434] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6435] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6437] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6438] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6439] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6440] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6441] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6442] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6443] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6444] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6445] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6446] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6447] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6449] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6450] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6453] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6460] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6461] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6462] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6463] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6464] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6465] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6466] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6467] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6468] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6469] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6470] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6471] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6472] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6473] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6474] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6475] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6476] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6477] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6478] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6479] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6480] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6481] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6482] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6483] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6484] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6485] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6486] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6487] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6488] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6489] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6490] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6491] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6492] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6493] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6494] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6495] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6496] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6497] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6498] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6499] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6500] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6501] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6502] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6503] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6504] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6505] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6507] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6508] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6509] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6510] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6511] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6512] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6513] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6514] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6516] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6517] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6518] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6519] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6520] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6523] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6524] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6525] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6526] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6527] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6528] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6530] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6531] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6532] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6533] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6534] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6535] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6536] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6537] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6538] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6539] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6540] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6541] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6542] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6543] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6544] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6546] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6547] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6548] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6549] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6550] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6551] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6552] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6554] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6555] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6557] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6558] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6560] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6561] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6562] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6563] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6566] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6567] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6568] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6569] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6570] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6571] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6575] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6576] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6580] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6581] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6582] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6583] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6584] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6585] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6587] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6588] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6589] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6590] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6593] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6594] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6596] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6598] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6601] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6603] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6605] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6606] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6607] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6608] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6609] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6610] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6611] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6612] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6613] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6614] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6615] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6616] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6617] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6618] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6619] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6620] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6622] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6623] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6624] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6625] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6626] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6627] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6628] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6629] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6630] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6631] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6632] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6633] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6634] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6635] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6636] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6637] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6638] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6639] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6640] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6641] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6642] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6643] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6644] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6645] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6646] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6647] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6648] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6649] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6650] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6651] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6652] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6653] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6654] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6655] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6656] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6657] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6658] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6659] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6660] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6661] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6662] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6663] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6664] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6665] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6666] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6667] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6668] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6669] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6670] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6671] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6672] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6673] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6674] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6675] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6676] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6677] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6678] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6679] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6680] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6681] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6682] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6683] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6684] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6685] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6686] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6687] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6688] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6689] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6690] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6691] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6692] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6693] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6694] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6695] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6696] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6697] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6698] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6699] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6700] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6705] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6706] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6707] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6708] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6709] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6710] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6711] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6712] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6713] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6716] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6717] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6718] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6719] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [6720] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [6721] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 25}, + [6722] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 25}, + [6723] = {.lex_state = 8, .external_lex_state = 11}, + [6724] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [6725] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 28}, + [6726] = {.lex_state = 9, .external_lex_state = 5, .reserved_word_set_id = 1}, + [6727] = {.lex_state = 8, .external_lex_state = 11}, + [6728] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [6729] = {.lex_state = 7, .external_lex_state = 5}, + [6730] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6731] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [6732] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [6733] = {.lex_state = 9, .external_lex_state = 5, .reserved_word_set_id = 1}, + [6734] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6735] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6736] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [6737] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [6738] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6739] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6740] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6741] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6742] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6743] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6744] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6745] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6746] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6747] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6748] = {.lex_state = 8, .external_lex_state = 11}, + [6749] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6750] = {.lex_state = 8, .external_lex_state = 11}, + [6751] = {.lex_state = 7, .external_lex_state = 5}, + [6752] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6753] = {.lex_state = 8, .external_lex_state = 11}, + [6754] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6755] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6756] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6757] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6758] = {.lex_state = 7, .external_lex_state = 5}, + [6759] = {.lex_state = 8, .external_lex_state = 11}, + [6760] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [6761] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6762] = {.lex_state = 7, .external_lex_state = 5}, + [6763] = {.lex_state = 8, .external_lex_state = 11}, + [6764] = {.lex_state = 8, .external_lex_state = 11}, + [6765] = {.lex_state = 8, .external_lex_state = 11}, + [6766] = {.lex_state = 7, .external_lex_state = 11}, + [6767] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6768] = {.lex_state = 7, .external_lex_state = 11}, + [6769] = {.lex_state = 8, .external_lex_state = 11}, + [6770] = {.lex_state = 8, .external_lex_state = 11}, + [6771] = {.lex_state = 7, .external_lex_state = 11}, + [6772] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6773] = {.lex_state = 7, .external_lex_state = 11}, + [6774] = {.lex_state = 7, .external_lex_state = 11}, + [6775] = {.lex_state = 7, .external_lex_state = 11}, + [6776] = {.lex_state = 7, .external_lex_state = 11}, + [6777] = {.lex_state = 7, .external_lex_state = 11}, + [6778] = {.lex_state = 7, .external_lex_state = 11}, + [6779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6780] = {.lex_state = 7, .external_lex_state = 11}, + [6781] = {.lex_state = 7, .external_lex_state = 11}, + [6782] = {.lex_state = 7, .external_lex_state = 11}, + [6783] = {.lex_state = 7, .external_lex_state = 11}, + [6784] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6785] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6786] = {.lex_state = 8, .external_lex_state = 11}, + [6787] = {.lex_state = 7, .external_lex_state = 11}, + [6788] = {.lex_state = 7, .external_lex_state = 11}, + [6789] = {.lex_state = 7, .external_lex_state = 11}, + [6790] = {.lex_state = 7, .external_lex_state = 11}, + [6791] = {.lex_state = 7, .external_lex_state = 11}, + [6792] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6793] = {.lex_state = 7, .external_lex_state = 11}, + [6794] = {.lex_state = 7, .external_lex_state = 11}, + [6795] = {.lex_state = 7, .external_lex_state = 11}, + [6796] = {.lex_state = 7, .external_lex_state = 11}, + [6797] = {.lex_state = 7, .external_lex_state = 11}, + [6798] = {.lex_state = 7, .external_lex_state = 11}, + [6799] = {.lex_state = 7, .external_lex_state = 11}, + [6800] = {.lex_state = 7, .external_lex_state = 11}, + [6801] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6803] = {.lex_state = 7, .external_lex_state = 11}, + [6804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6805] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6806] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6807] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 29}, + [6808] = {.lex_state = 7, .external_lex_state = 11}, + [6809] = {.lex_state = 7, .external_lex_state = 11}, + [6810] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6811] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6812] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6813] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6814] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6815] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6816] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6817] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6818] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6819] = {.lex_state = 7, .external_lex_state = 11}, + [6820] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6821] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6822] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6823] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6824] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6825] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6826] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6827] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6828] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6829] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6830] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6831] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6832] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6833] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6834] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6835] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6836] = {.lex_state = 7, .external_lex_state = 11}, + [6837] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6838] = {.lex_state = 7, .external_lex_state = 11}, + [6839] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6840] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6841] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6842] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6843] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6844] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6845] = {.lex_state = 7, .external_lex_state = 11}, + [6846] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6847] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6848] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6849] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6850] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6851] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6852] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6853] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6854] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6855] = {.lex_state = 7, .external_lex_state = 11}, + [6856] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6857] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6858] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6859] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6860] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6861] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6862] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6863] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6865] = {.lex_state = 7, .external_lex_state = 11}, + [6866] = {.lex_state = 7, .external_lex_state = 11}, + [6867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6869] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6870] = {.lex_state = 7, .external_lex_state = 11}, + [6871] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6872] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6873] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6874] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6877] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6878] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6879] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6880] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6881] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6882] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6883] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6884] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6885] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6886] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6887] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6888] = {.lex_state = 7, .external_lex_state = 11}, + [6889] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6890] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6891] = {.lex_state = 7, .external_lex_state = 11}, + [6892] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6893] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6894] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6895] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6896] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6897] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6898] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6899] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6900] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6901] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6902] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6903] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6904] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6905] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6906] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6907] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6908] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6909] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6910] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6911] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6912] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6913] = {.lex_state = 14, .external_lex_state = 12}, + [6914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6918] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6919] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6921] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6922] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6924] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6925] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6927] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6929] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 19}, + [6933] = {.lex_state = 14, .external_lex_state = 11}, + [6934] = {.lex_state = 14, .external_lex_state = 13}, + [6935] = {.lex_state = 14, .external_lex_state = 5}, + [6936] = {.lex_state = 14, .external_lex_state = 5}, + [6937] = {.lex_state = 14, .external_lex_state = 5}, + [6938] = {.lex_state = 14, .external_lex_state = 14}, + [6939] = {.lex_state = 14, .external_lex_state = 6}, + [6940] = {.lex_state = 15, .external_lex_state = 11}, + [6941] = {.lex_state = 14, .external_lex_state = 6}, + [6942] = {.lex_state = 14, .external_lex_state = 5}, + [6943] = {.lex_state = 14, .external_lex_state = 5}, + [6944] = {.lex_state = 14, .external_lex_state = 7}, + [6945] = {.lex_state = 14, .external_lex_state = 12}, + [6946] = {.lex_state = 14, .external_lex_state = 12}, + [6947] = {.lex_state = 14, .external_lex_state = 12}, + [6948] = {.lex_state = 14, .external_lex_state = 12}, + [6949] = {.lex_state = 14, .external_lex_state = 12}, + [6950] = {.lex_state = 14, .external_lex_state = 12}, + [6951] = {.lex_state = 14, .external_lex_state = 12}, + [6952] = {.lex_state = 14, .external_lex_state = 12}, + [6953] = {.lex_state = 14, .external_lex_state = 12}, + [6954] = {.lex_state = 14, .external_lex_state = 2}, + [6955] = {.lex_state = 14, .external_lex_state = 7}, + [6956] = {.lex_state = 14, .external_lex_state = 7}, + [6957] = {.lex_state = 15, .external_lex_state = 11}, + [6958] = {.lex_state = 14, .external_lex_state = 2}, + [6959] = {.lex_state = 14, .external_lex_state = 6}, + [6960] = {.lex_state = 14, .external_lex_state = 12}, + [6961] = {.lex_state = 14, .external_lex_state = 2}, + [6962] = {.lex_state = 15, .external_lex_state = 11}, + [6963] = {.lex_state = 14, .external_lex_state = 14}, + [6964] = {.lex_state = 14, .external_lex_state = 11}, + [6965] = {.lex_state = 14, .external_lex_state = 11}, + [6966] = {.lex_state = 14, .external_lex_state = 11}, + [6967] = {.lex_state = 14, .external_lex_state = 11}, + [6968] = {.lex_state = 14, .external_lex_state = 11}, + [6969] = {.lex_state = 14, .external_lex_state = 11}, + [6970] = {.lex_state = 14, .external_lex_state = 11}, + [6971] = {.lex_state = 14, .external_lex_state = 11}, + [6972] = {.lex_state = 14, .external_lex_state = 11}, + [6973] = {.lex_state = 14, .external_lex_state = 11}, + [6974] = {.lex_state = 14, .external_lex_state = 12}, + [6975] = {.lex_state = 14, .external_lex_state = 11}, + [6976] = {.lex_state = 14, .external_lex_state = 12}, + [6977] = {.lex_state = 14, .external_lex_state = 12}, + [6978] = {.lex_state = 14, .external_lex_state = 12}, + [6979] = {.lex_state = 14, .external_lex_state = 12}, + [6980] = {.lex_state = 14, .external_lex_state = 12}, + [6981] = {.lex_state = 14, .external_lex_state = 12}, + [6982] = {.lex_state = 14, .external_lex_state = 11}, + [6983] = {.lex_state = 14, .external_lex_state = 11}, + [6984] = {.lex_state = 14, .external_lex_state = 11}, + [6985] = {.lex_state = 14, .external_lex_state = 11}, + [6986] = {.lex_state = 14, .external_lex_state = 11}, + [6987] = {.lex_state = 14, .external_lex_state = 11}, + [6988] = {.lex_state = 14, .external_lex_state = 11}, + [6989] = {.lex_state = 14, .external_lex_state = 11}, + [6990] = {.lex_state = 14, .external_lex_state = 11}, + [6991] = {.lex_state = 14, .external_lex_state = 11}, + [6992] = {.lex_state = 14, .external_lex_state = 11}, + [6993] = {.lex_state = 14, .external_lex_state = 11}, + [6994] = {.lex_state = 14, .external_lex_state = 11}, + [6995] = {.lex_state = 14, .external_lex_state = 11}, + [6996] = {.lex_state = 14, .external_lex_state = 11}, + [6997] = {.lex_state = 14, .external_lex_state = 11}, + [6998] = {.lex_state = 14, .external_lex_state = 11}, + [6999] = {.lex_state = 14, .external_lex_state = 11}, + [7000] = {.lex_state = 14, .external_lex_state = 11}, + [7001] = {.lex_state = 14, .external_lex_state = 11}, + [7002] = {.lex_state = 14, .external_lex_state = 11}, + [7003] = {.lex_state = 14, .external_lex_state = 11}, + [7004] = {.lex_state = 14, .external_lex_state = 11}, + [7005] = {.lex_state = 14, .external_lex_state = 11}, + [7006] = {.lex_state = 14, .external_lex_state = 11}, + [7007] = {.lex_state = 14, .external_lex_state = 11}, + [7008] = {.lex_state = 14, .external_lex_state = 11}, + [7009] = {.lex_state = 15, .external_lex_state = 12}, + [7010] = {.lex_state = 14, .external_lex_state = 11}, + [7011] = {.lex_state = 14, .external_lex_state = 11}, + [7012] = {.lex_state = 14, .external_lex_state = 11}, + [7013] = {.lex_state = 15, .external_lex_state = 12}, + [7014] = {.lex_state = 14, .external_lex_state = 11}, + [7015] = {.lex_state = 14, .external_lex_state = 11}, + [7016] = {.lex_state = 15, .external_lex_state = 12}, + [7017] = {.lex_state = 14, .external_lex_state = 11}, + [7018] = {.lex_state = 14, .external_lex_state = 11}, + [7019] = {.lex_state = 14, .external_lex_state = 13}, + [7020] = {.lex_state = 14, .external_lex_state = 13}, + [7021] = {.lex_state = 14, .external_lex_state = 13}, + [7022] = {.lex_state = 14, .external_lex_state = 13}, + [7023] = {.lex_state = 14, .external_lex_state = 13}, + [7024] = {.lex_state = 14, .external_lex_state = 13}, + [7025] = {.lex_state = 14, .external_lex_state = 13}, + [7026] = {.lex_state = 14, .external_lex_state = 13}, + [7027] = {.lex_state = 14, .external_lex_state = 11}, + [7028] = {.lex_state = 14, .external_lex_state = 11}, + [7029] = {.lex_state = 14, .external_lex_state = 11}, + [7030] = {.lex_state = 14, .external_lex_state = 11}, + [7031] = {.lex_state = 14, .external_lex_state = 11}, + [7032] = {.lex_state = 14, .external_lex_state = 11}, + [7033] = {.lex_state = 14, .external_lex_state = 11}, + [7034] = {.lex_state = 14, .external_lex_state = 11}, + [7035] = {.lex_state = 14, .external_lex_state = 11}, + [7036] = {.lex_state = 14, .external_lex_state = 11}, + [7037] = {.lex_state = 14, .external_lex_state = 11}, + [7038] = {.lex_state = 14, .external_lex_state = 11}, + [7039] = {.lex_state = 14, .external_lex_state = 13}, + [7040] = {.lex_state = 14, .external_lex_state = 13}, + [7041] = {.lex_state = 14, .external_lex_state = 11}, + [7042] = {.lex_state = 14, .external_lex_state = 14}, + [7043] = {.lex_state = 14, .external_lex_state = 14}, + [7044] = {.lex_state = 14, .external_lex_state = 11}, + [7045] = {.lex_state = 15, .external_lex_state = 12}, + [7046] = {.lex_state = 14, .external_lex_state = 14}, + [7047] = {.lex_state = 14, .external_lex_state = 14}, + [7048] = {.lex_state = 14, .external_lex_state = 14}, + [7049] = {.lex_state = 14, .external_lex_state = 11}, + [7050] = {.lex_state = 14, .external_lex_state = 11}, + [7051] = {.lex_state = 14, .external_lex_state = 14}, + [7052] = {.lex_state = 14, .external_lex_state = 14}, + [7053] = {.lex_state = 14, .external_lex_state = 14}, + [7054] = {.lex_state = 14, .external_lex_state = 14}, + [7055] = {.lex_state = 14, .external_lex_state = 11}, + [7056] = {.lex_state = 14, .external_lex_state = 11}, + [7057] = {.lex_state = 14, .external_lex_state = 11}, + [7058] = {.lex_state = 14, .external_lex_state = 11}, + [7059] = {.lex_state = 15, .external_lex_state = 12}, + [7060] = {.lex_state = 15, .external_lex_state = 12}, + [7061] = {.lex_state = 14, .external_lex_state = 11}, + [7062] = {.lex_state = 14, .external_lex_state = 11}, + [7063] = {.lex_state = 15, .external_lex_state = 12}, + [7064] = {.lex_state = 14, .external_lex_state = 11}, + [7065] = {.lex_state = 14, .external_lex_state = 11}, + [7066] = {.lex_state = 14, .external_lex_state = 11}, + [7067] = {.lex_state = 15, .external_lex_state = 11}, + [7068] = {.lex_state = 15, .external_lex_state = 12}, + [7069] = {.lex_state = 15, .external_lex_state = 14}, + [7070] = {.lex_state = 15, .external_lex_state = 13}, + [7071] = {.lex_state = 15, .external_lex_state = 14}, + [7072] = {.lex_state = 14, .external_lex_state = 12}, + [7073] = {.lex_state = 15, .external_lex_state = 14}, + [7074] = {.lex_state = 15, .external_lex_state = 11}, + [7075] = {.lex_state = 15, .external_lex_state = 12}, + [7076] = {.lex_state = 15, .external_lex_state = 14}, + [7077] = {.lex_state = 15, .external_lex_state = 11}, + [7078] = {.lex_state = 14, .external_lex_state = 7}, + [7079] = {.lex_state = 15, .external_lex_state = 14}, + [7080] = {.lex_state = 14, .external_lex_state = 14}, + [7081] = {.lex_state = 14, .external_lex_state = 2}, + [7082] = {.lex_state = 14, .external_lex_state = 7}, + [7083] = {.lex_state = 15, .external_lex_state = 14}, + [7084] = {.lex_state = 14, .external_lex_state = 14}, + [7085] = {.lex_state = 15, .external_lex_state = 14}, + [7086] = {.lex_state = 15, .external_lex_state = 13}, + [7087] = {.lex_state = 15, .external_lex_state = 13}, + [7088] = {.lex_state = 15, .external_lex_state = 14}, + [7089] = {.lex_state = 15, .external_lex_state = 13}, + [7090] = {.lex_state = 15, .external_lex_state = 12}, + [7091] = {.lex_state = 15, .external_lex_state = 11}, + [7092] = {.lex_state = 14, .external_lex_state = 14}, + [7093] = {.lex_state = 14, .external_lex_state = 14}, + [7094] = {.lex_state = 15, .external_lex_state = 12}, + [7095] = {.lex_state = 14, .external_lex_state = 2}, + [7096] = {.lex_state = 14, .external_lex_state = 6}, + [7097] = {.lex_state = 15, .external_lex_state = 12}, + [7098] = {.lex_state = 14, .external_lex_state = 14}, + [7099] = {.lex_state = 14, .external_lex_state = 6}, + [7100] = {.lex_state = 15, .external_lex_state = 13}, + [7101] = {.lex_state = 15, .external_lex_state = 11}, + [7102] = {.lex_state = 14, .external_lex_state = 14}, + [7103] = {.lex_state = 14, .external_lex_state = 14}, + [7104] = {.lex_state = 15, .external_lex_state = 14}, + [7105] = {.lex_state = 15, .external_lex_state = 13}, + [7106] = {.lex_state = 15, .external_lex_state = 13}, + [7107] = {.lex_state = 14, .external_lex_state = 11}, + [7108] = {.lex_state = 15, .external_lex_state = 13}, + [7109] = {.lex_state = 15, .external_lex_state = 11}, + [7110] = {.lex_state = 15, .external_lex_state = 11}, + [7111] = {.lex_state = 15, .external_lex_state = 14}, + [7112] = {.lex_state = 15, .external_lex_state = 13}, + [7113] = {.lex_state = 14, .external_lex_state = 13}, + [7114] = {.lex_state = 14, .external_lex_state = 14}, + [7115] = {.lex_state = 14, .external_lex_state = 14}, + [7116] = {.lex_state = 14, .external_lex_state = 14}, + [7117] = {.lex_state = 14, .external_lex_state = 13}, + [7118] = {.lex_state = 14, .external_lex_state = 13}, + [7119] = {.lex_state = 14, .external_lex_state = 13}, + [7120] = {.lex_state = 14, .external_lex_state = 13}, + [7121] = {.lex_state = 14, .external_lex_state = 14}, + [7122] = {.lex_state = 14, .external_lex_state = 13}, + [7123] = {.lex_state = 14, .external_lex_state = 14}, + [7124] = {.lex_state = 14, .external_lex_state = 14}, + [7125] = {.lex_state = 14, .external_lex_state = 14}, + [7126] = {.lex_state = 14, .external_lex_state = 12}, + [7127] = {.lex_state = 14, .external_lex_state = 12}, + [7128] = {.lex_state = 14, .external_lex_state = 14}, + [7129] = {.lex_state = 14, .external_lex_state = 14}, + [7130] = {.lex_state = 14, .external_lex_state = 14}, + [7131] = {.lex_state = 14, .external_lex_state = 14}, + [7132] = {.lex_state = 14, .external_lex_state = 13}, + [7133] = {.lex_state = 14, .external_lex_state = 14}, + [7134] = {.lex_state = 14, .external_lex_state = 14}, + [7135] = {.lex_state = 14, .external_lex_state = 14}, + [7136] = {.lex_state = 14, .external_lex_state = 14}, + [7137] = {.lex_state = 14, .external_lex_state = 14}, + [7138] = {.lex_state = 14, .external_lex_state = 14}, + [7139] = {.lex_state = 14, .external_lex_state = 14}, + [7140] = {.lex_state = 14, .external_lex_state = 14}, + [7141] = {.lex_state = 14, .external_lex_state = 14}, + [7142] = {.lex_state = 14, .external_lex_state = 13}, + [7143] = {.lex_state = 14, .external_lex_state = 14}, + [7144] = {.lex_state = 14, .external_lex_state = 14}, + [7145] = {.lex_state = 14, .external_lex_state = 14}, + [7146] = {.lex_state = 14, .external_lex_state = 14}, + [7147] = {.lex_state = 14, .external_lex_state = 13}, + [7148] = {.lex_state = 14, .external_lex_state = 14}, + [7149] = {.lex_state = 14, .external_lex_state = 12}, + [7150] = {.lex_state = 14, .external_lex_state = 12}, + [7151] = {.lex_state = 14, .external_lex_state = 12}, + [7152] = {.lex_state = 14, .external_lex_state = 12}, + [7153] = {.lex_state = 14, .external_lex_state = 13}, + [7154] = {.lex_state = 14, .external_lex_state = 12}, + [7155] = {.lex_state = 14, .external_lex_state = 12}, + [7156] = {.lex_state = 14, .external_lex_state = 12}, + [7157] = {.lex_state = 14, .external_lex_state = 12}, + [7158] = {.lex_state = 14, .external_lex_state = 13}, + [7159] = {.lex_state = 14, .external_lex_state = 13}, + [7160] = {.lex_state = 14, .external_lex_state = 13}, + [7161] = {.lex_state = 14, .external_lex_state = 13}, + [7162] = {.lex_state = 14, .external_lex_state = 13}, + [7163] = {.lex_state = 14, .external_lex_state = 13}, + [7164] = {.lex_state = 14, .external_lex_state = 13}, + [7165] = {.lex_state = 14, .external_lex_state = 13}, + [7166] = {.lex_state = 14, .external_lex_state = 13}, + [7167] = {.lex_state = 14, .external_lex_state = 14}, + [7168] = {.lex_state = 14, .external_lex_state = 13}, + [7169] = {.lex_state = 14, .external_lex_state = 13}, + [7170] = {.lex_state = 14, .external_lex_state = 12}, + [7171] = {.lex_state = 14, .external_lex_state = 12}, + [7172] = {.lex_state = 14, .external_lex_state = 12}, + [7173] = {.lex_state = 14, .external_lex_state = 12}, + [7174] = {.lex_state = 14, .external_lex_state = 12}, + [7175] = {.lex_state = 14, .external_lex_state = 12}, + [7176] = {.lex_state = 14, .external_lex_state = 12}, + [7177] = {.lex_state = 14, .external_lex_state = 12}, + [7178] = {.lex_state = 14, .external_lex_state = 12}, + [7179] = {.lex_state = 14, .external_lex_state = 12}, + [7180] = {.lex_state = 14, .external_lex_state = 12}, + [7181] = {.lex_state = 14, .external_lex_state = 14}, + [7182] = {.lex_state = 14, .external_lex_state = 14}, + [7183] = {.lex_state = 14, .external_lex_state = 14}, + [7184] = {.lex_state = 14, .external_lex_state = 14}, + [7185] = {.lex_state = 14, .external_lex_state = 14}, + [7186] = {.lex_state = 14, .external_lex_state = 12}, + [7187] = {.lex_state = 14, .external_lex_state = 12}, + [7188] = {.lex_state = 14, .external_lex_state = 12}, + [7189] = {.lex_state = 14, .external_lex_state = 12}, + [7190] = {.lex_state = 14, .external_lex_state = 12}, + [7191] = {.lex_state = 14, .external_lex_state = 14}, + [7192] = {.lex_state = 14, .external_lex_state = 12}, + [7193] = {.lex_state = 14, .external_lex_state = 13}, + [7194] = {.lex_state = 14, .external_lex_state = 14}, + [7195] = {.lex_state = 14, .external_lex_state = 14}, + [7196] = {.lex_state = 14, .external_lex_state = 14}, + [7197] = {.lex_state = 14, .external_lex_state = 14}, + [7198] = {.lex_state = 14, .external_lex_state = 14}, + [7199] = {.lex_state = 14, .external_lex_state = 12}, + [7200] = {.lex_state = 14, .external_lex_state = 12}, + [7201] = {.lex_state = 14, .external_lex_state = 14}, + [7202] = {.lex_state = 14, .external_lex_state = 12}, + [7203] = {.lex_state = 14, .external_lex_state = 14}, + [7204] = {.lex_state = 14, .external_lex_state = 14}, + [7205] = {.lex_state = 14, .external_lex_state = 14}, + [7206] = {.lex_state = 14, .external_lex_state = 14}, + [7207] = {.lex_state = 14, .external_lex_state = 14}, + [7208] = {.lex_state = 14, .external_lex_state = 14}, + [7209] = {.lex_state = 14, .external_lex_state = 14}, + [7210] = {.lex_state = 14, .external_lex_state = 14}, + [7211] = {.lex_state = 14, .external_lex_state = 14}, + [7212] = {.lex_state = 14, .external_lex_state = 12}, + [7213] = {.lex_state = 14, .external_lex_state = 12}, + [7214] = {.lex_state = 14, .external_lex_state = 14}, + [7215] = {.lex_state = 14, .external_lex_state = 14}, + [7216] = {.lex_state = 14, .external_lex_state = 14}, + [7217] = {.lex_state = 14, .external_lex_state = 14}, + [7218] = {.lex_state = 14, .external_lex_state = 13}, + [7219] = {.lex_state = 14, .external_lex_state = 14}, + [7220] = {.lex_state = 14, .external_lex_state = 13}, + [7221] = {.lex_state = 14, .external_lex_state = 14}, + [7222] = {.lex_state = 14, .external_lex_state = 13}, + [7223] = {.lex_state = 14, .external_lex_state = 13}, + [7224] = {.lex_state = 14, .external_lex_state = 14}, + [7225] = {.lex_state = 14, .external_lex_state = 12}, + [7226] = {.lex_state = 14, .external_lex_state = 14}, + [7227] = {.lex_state = 14, .external_lex_state = 14}, + [7228] = {.lex_state = 14, .external_lex_state = 13}, + [7229] = {.lex_state = 14, .external_lex_state = 12}, + [7230] = {.lex_state = 14, .external_lex_state = 12}, + [7231] = {.lex_state = 14, .external_lex_state = 13}, + [7232] = {.lex_state = 14, .external_lex_state = 12}, + [7233] = {.lex_state = 14, .external_lex_state = 13}, + [7234] = {.lex_state = 14, .external_lex_state = 13}, + [7235] = {.lex_state = 14, .external_lex_state = 12}, + [7236] = {.lex_state = 14, .external_lex_state = 12}, + [7237] = {.lex_state = 14, .external_lex_state = 12}, + [7238] = {.lex_state = 14, .external_lex_state = 12}, + [7239] = {.lex_state = 14, .external_lex_state = 12}, + [7240] = {.lex_state = 14, .external_lex_state = 12}, + [7241] = {.lex_state = 14, .external_lex_state = 12}, + [7242] = {.lex_state = 14, .external_lex_state = 12}, + [7243] = {.lex_state = 14, .external_lex_state = 12}, + [7244] = {.lex_state = 14, .external_lex_state = 12}, + [7245] = {.lex_state = 14, .external_lex_state = 12}, + [7246] = {.lex_state = 14, .external_lex_state = 12}, + [7247] = {.lex_state = 14, .external_lex_state = 12}, + [7248] = {.lex_state = 14, .external_lex_state = 12}, + [7249] = {.lex_state = 14, .external_lex_state = 13}, + [7250] = {.lex_state = 14, .external_lex_state = 12}, + [7251] = {.lex_state = 14, .external_lex_state = 12}, + [7252] = {.lex_state = 14, .external_lex_state = 12}, + [7253] = {.lex_state = 14, .external_lex_state = 12}, + [7254] = {.lex_state = 14, .external_lex_state = 12}, + [7255] = {.lex_state = 14, .external_lex_state = 13}, + [7256] = {.lex_state = 14, .external_lex_state = 12}, + [7257] = {.lex_state = 14, .external_lex_state = 12}, + [7258] = {.lex_state = 14, .external_lex_state = 12}, + [7259] = {.lex_state = 14, .external_lex_state = 12}, + [7260] = {.lex_state = 14, .external_lex_state = 12}, + [7261] = {.lex_state = 14, .external_lex_state = 13}, + [7262] = {.lex_state = 15, .external_lex_state = 14}, + [7263] = {.lex_state = 15, .external_lex_state = 14}, + [7264] = {.lex_state = 14, .external_lex_state = 13}, + [7265] = {.lex_state = 14, .external_lex_state = 13}, + [7266] = {.lex_state = 14, .external_lex_state = 13}, + [7267] = {.lex_state = 14, .external_lex_state = 13}, + [7268] = {.lex_state = 14, .external_lex_state = 13}, + [7269] = {.lex_state = 15, .external_lex_state = 11}, + [7270] = {.lex_state = 14, .external_lex_state = 13}, + [7271] = {.lex_state = 14, .external_lex_state = 13}, + [7272] = {.lex_state = 14, .external_lex_state = 12}, + [7273] = {.lex_state = 14, .external_lex_state = 12}, + [7274] = {.lex_state = 14, .external_lex_state = 13}, + [7275] = {.lex_state = 14, .external_lex_state = 13}, + [7276] = {.lex_state = 15, .external_lex_state = 11}, + [7277] = {.lex_state = 14, .external_lex_state = 13}, + [7278] = {.lex_state = 14, .external_lex_state = 14}, + [7279] = {.lex_state = 14, .external_lex_state = 13}, + [7280] = {.lex_state = 14, .external_lex_state = 13}, + [7281] = {.lex_state = 14, .external_lex_state = 13}, + [7282] = {.lex_state = 14, .external_lex_state = 12}, + [7283] = {.lex_state = 14, .external_lex_state = 13}, + [7284] = {.lex_state = 14, .external_lex_state = 13}, + [7285] = {.lex_state = 14, .external_lex_state = 13}, + [7286] = {.lex_state = 15, .external_lex_state = 13}, + [7287] = {.lex_state = 14, .external_lex_state = 13}, + [7288] = {.lex_state = 14, .external_lex_state = 13}, + [7289] = {.lex_state = 14, .external_lex_state = 13}, + [7290] = {.lex_state = 14, .external_lex_state = 13}, + [7291] = {.lex_state = 14, .external_lex_state = 13}, + [7292] = {.lex_state = 15, .external_lex_state = 13}, + [7293] = {.lex_state = 14, .external_lex_state = 13}, + [7294] = {.lex_state = 14, .external_lex_state = 14}, + [7295] = {.lex_state = 14, .external_lex_state = 13}, + [7296] = {.lex_state = 14, .external_lex_state = 12}, + [7297] = {.lex_state = 14, .external_lex_state = 14}, + [7298] = {.lex_state = 14, .external_lex_state = 12}, + [7299] = {.lex_state = 14, .external_lex_state = 13}, + [7300] = {.lex_state = 14, .external_lex_state = 13}, + [7301] = {.lex_state = 14, .external_lex_state = 13}, + [7302] = {.lex_state = 14, .external_lex_state = 12}, + [7303] = {.lex_state = 14, .external_lex_state = 13}, + [7304] = {.lex_state = 14, .external_lex_state = 14}, + [7305] = {.lex_state = 14, .external_lex_state = 13}, + [7306] = {.lex_state = 14, .external_lex_state = 15}, + [7307] = {.lex_state = 14, .external_lex_state = 13}, + [7308] = {.lex_state = 14, .external_lex_state = 11}, + [7309] = {.lex_state = 14, .external_lex_state = 13}, + [7310] = {.lex_state = 14, .external_lex_state = 11}, + [7311] = {.lex_state = 14, .external_lex_state = 13}, + [7312] = {.lex_state = 14, .external_lex_state = 14}, + [7313] = {.lex_state = 14, .external_lex_state = 14}, + [7314] = {.lex_state = 14, .external_lex_state = 13}, + [7315] = {.lex_state = 14, .external_lex_state = 14}, + [7316] = {.lex_state = 14, .external_lex_state = 13}, + [7317] = {.lex_state = 14, .external_lex_state = 12}, + [7318] = {.lex_state = 14, .external_lex_state = 15}, + [7319] = {.lex_state = 14, .external_lex_state = 11}, + [7320] = {.lex_state = 14, .external_lex_state = 11}, + [7321] = {.lex_state = 14, .external_lex_state = 11}, + [7322] = {.lex_state = 14, .external_lex_state = 14}, + [7323] = {.lex_state = 14, .external_lex_state = 14}, + [7324] = {.lex_state = 14, .external_lex_state = 11}, + [7325] = {.lex_state = 14, .external_lex_state = 13}, + [7326] = {.lex_state = 14, .external_lex_state = 11}, + [7327] = {.lex_state = 14, .external_lex_state = 14}, + [7328] = {.lex_state = 14, .external_lex_state = 14}, + [7329] = {.lex_state = 14, .external_lex_state = 11}, + [7330] = {.lex_state = 14, .external_lex_state = 12}, + [7331] = {.lex_state = 14, .external_lex_state = 12}, + [7332] = {.lex_state = 14, .external_lex_state = 11}, + [7333] = {.lex_state = 14, .external_lex_state = 11}, + [7334] = {.lex_state = 14, .external_lex_state = 6}, + [7335] = {.lex_state = 14, .external_lex_state = 12}, + [7336] = {.lex_state = 14, .external_lex_state = 11}, + [7337] = {.lex_state = 14, .external_lex_state = 12}, + [7338] = {.lex_state = 14, .external_lex_state = 6}, + [7339] = {.lex_state = 14, .external_lex_state = 14}, + [7340] = {.lex_state = 14, .external_lex_state = 11}, + [7341] = {.lex_state = 14, .external_lex_state = 11}, + [7342] = {.lex_state = 14, .external_lex_state = 12}, + [7343] = {.lex_state = 14, .external_lex_state = 11}, + [7344] = {.lex_state = 14, .external_lex_state = 11}, + [7345] = {.lex_state = 14, .external_lex_state = 12}, + [7346] = {.lex_state = 14, .external_lex_state = 12}, + [7347] = {.lex_state = 14, .external_lex_state = 6}, + [7348] = {.lex_state = 14, .external_lex_state = 12}, + [7349] = {.lex_state = 14, .external_lex_state = 12}, + [7350] = {.lex_state = 14, .external_lex_state = 12}, + [7351] = {.lex_state = 14, .external_lex_state = 11}, + [7352] = {.lex_state = 14, .external_lex_state = 11}, + [7353] = {.lex_state = 15, .external_lex_state = 12}, + [7354] = {.lex_state = 15, .external_lex_state = 12}, + [7355] = {.lex_state = 14, .external_lex_state = 12}, + [7356] = {.lex_state = 15, .external_lex_state = 12}, + [7357] = {.lex_state = 15, .external_lex_state = 12}, + [7358] = {.lex_state = 15, .external_lex_state = 12}, + [7359] = {.lex_state = 14, .external_lex_state = 12}, + [7360] = {.lex_state = 14, .external_lex_state = 8}, + [7361] = {.lex_state = 14, .external_lex_state = 15}, + [7362] = {.lex_state = 14, .external_lex_state = 14}, + [7363] = {.lex_state = 14, .external_lex_state = 13}, + [7364] = {.lex_state = 14, .external_lex_state = 14}, + [7365] = {.lex_state = 14, .external_lex_state = 15}, + [7366] = {.lex_state = 14, .external_lex_state = 13}, + [7367] = {.lex_state = 14, .external_lex_state = 8}, + [7368] = {.lex_state = 14, .external_lex_state = 14}, + [7369] = {.lex_state = 14, .external_lex_state = 14}, + [7370] = {.lex_state = 14, .external_lex_state = 8}, + [7371] = {.lex_state = 14, .external_lex_state = 15}, + [7372] = {.lex_state = 14, .external_lex_state = 12}, + [7373] = {.lex_state = 14, .external_lex_state = 13}, + [7374] = {.lex_state = 14, .external_lex_state = 6}, + [7375] = {.lex_state = 14, .external_lex_state = 14}, + [7376] = {.lex_state = 14, .external_lex_state = 12}, + [7377] = {.lex_state = 14, .external_lex_state = 14}, + [7378] = {.lex_state = 14, .external_lex_state = 15}, + [7379] = {.lex_state = 14, .external_lex_state = 15}, + [7380] = {.lex_state = 14, .external_lex_state = 15}, + [7381] = {.lex_state = 15, .external_lex_state = 12}, + [7382] = {.lex_state = 14, .external_lex_state = 13}, + [7383] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7384] = {.lex_state = 14, .external_lex_state = 12}, + [7385] = {.lex_state = 14, .external_lex_state = 15}, + [7386] = {.lex_state = 14, .external_lex_state = 15}, + [7387] = {.lex_state = 14, .external_lex_state = 15}, + [7388] = {.lex_state = 14, .external_lex_state = 15}, + [7389] = {.lex_state = 14, .external_lex_state = 15}, + [7390] = {.lex_state = 14, .external_lex_state = 15}, + [7391] = {.lex_state = 14, .external_lex_state = 8}, + [7392] = {.lex_state = 14, .external_lex_state = 15}, + [7393] = {.lex_state = 14, .external_lex_state = 15}, + [7394] = {.lex_state = 14, .external_lex_state = 14}, + [7395] = {.lex_state = 14, .external_lex_state = 12}, + [7396] = {.lex_state = 14, .external_lex_state = 15}, + [7397] = {.lex_state = 14, .external_lex_state = 15}, + [7398] = {.lex_state = 14, .external_lex_state = 8}, + [7399] = {.lex_state = 14, .external_lex_state = 8}, + [7400] = {.lex_state = 14, .external_lex_state = 14}, + [7401] = {.lex_state = 14, .external_lex_state = 15}, + [7402] = {.lex_state = 14, .external_lex_state = 13}, + [7403] = {.lex_state = 14, .external_lex_state = 13}, + [7404] = {.lex_state = 15, .external_lex_state = 12}, + [7405] = {.lex_state = 14, .external_lex_state = 13}, + [7406] = {.lex_state = 14, .external_lex_state = 12}, + [7407] = {.lex_state = 14, .external_lex_state = 12}, + [7408] = {.lex_state = 14, .external_lex_state = 15}, + [7409] = {.lex_state = 14, .external_lex_state = 14}, + [7410] = {.lex_state = 14, .external_lex_state = 14}, + [7411] = {.lex_state = 14, .external_lex_state = 15}, + [7412] = {.lex_state = 14, .external_lex_state = 12}, + [7413] = {.lex_state = 14, .external_lex_state = 15}, + [7414] = {.lex_state = 15, .external_lex_state = 12}, + [7415] = {.lex_state = 14, .external_lex_state = 12}, + [7416] = {.lex_state = 15, .external_lex_state = 12}, + [7417] = {.lex_state = 14, .external_lex_state = 13}, + [7418] = {.lex_state = 14, .external_lex_state = 13}, + [7419] = {.lex_state = 14, .external_lex_state = 14}, + [7420] = {.lex_state = 14, .external_lex_state = 6}, + [7421] = {.lex_state = 14, .external_lex_state = 13}, + [7422] = {.lex_state = 15, .external_lex_state = 12}, + [7423] = {.lex_state = 14, .external_lex_state = 12}, + [7424] = {.lex_state = 14, .external_lex_state = 15}, + [7425] = {.lex_state = 14, .external_lex_state = 12}, + [7426] = {.lex_state = 14, .external_lex_state = 15}, + [7427] = {.lex_state = 14, .external_lex_state = 12}, + [7428] = {.lex_state = 14, .external_lex_state = 15}, + [7429] = {.lex_state = 14, .external_lex_state = 12}, + [7430] = {.lex_state = 14, .external_lex_state = 15}, + [7431] = {.lex_state = 14, .external_lex_state = 15}, + [7432] = {.lex_state = 14, .external_lex_state = 15}, + [7433] = {.lex_state = 14, .external_lex_state = 15}, + [7434] = {.lex_state = 14, .external_lex_state = 15}, + [7435] = {.lex_state = 14, .external_lex_state = 15}, + [7436] = {.lex_state = 14, .external_lex_state = 15}, + [7437] = {.lex_state = 14, .external_lex_state = 15}, + [7438] = {.lex_state = 14, .external_lex_state = 15}, + [7439] = {.lex_state = 14, .external_lex_state = 15}, + [7440] = {.lex_state = 14, .external_lex_state = 15}, + [7441] = {.lex_state = 14, .external_lex_state = 15}, + [7442] = {.lex_state = 14, .external_lex_state = 15}, + [7443] = {.lex_state = 14, .external_lex_state = 15}, + [7444] = {.lex_state = 14, .external_lex_state = 15}, + [7445] = {.lex_state = 14, .external_lex_state = 15}, + [7446] = {.lex_state = 14, .external_lex_state = 12}, + [7447] = {.lex_state = 14, .external_lex_state = 12}, + [7448] = {.lex_state = 14, .external_lex_state = 12}, + [7449] = {.lex_state = 14, .external_lex_state = 12}, + [7450] = {.lex_state = 14, .external_lex_state = 12}, + [7451] = {.lex_state = 14, .external_lex_state = 14}, + [7452] = {.lex_state = 15, .external_lex_state = 12}, + [7453] = {.lex_state = 14, .external_lex_state = 12}, + [7454] = {.lex_state = 14, .external_lex_state = 14}, + [7455] = {.lex_state = 14, .external_lex_state = 14}, + [7456] = {.lex_state = 14, .external_lex_state = 14}, + [7457] = {.lex_state = 14, .external_lex_state = 7}, + [7458] = {.lex_state = 14, .external_lex_state = 14}, + [7459] = {.lex_state = 14, .external_lex_state = 14}, + [7460] = {.lex_state = 14, .external_lex_state = 12}, + [7461] = {.lex_state = 14, .external_lex_state = 12}, + [7462] = {.lex_state = 14, .external_lex_state = 14}, + [7463] = {.lex_state = 14, .external_lex_state = 12}, + [7464] = {.lex_state = 14, .external_lex_state = 12}, + [7465] = {.lex_state = 14, .external_lex_state = 12}, + [7466] = {.lex_state = 14, .external_lex_state = 14}, + [7467] = {.lex_state = 14, .external_lex_state = 12}, + [7468] = {.lex_state = 14, .external_lex_state = 12}, + [7469] = {.lex_state = 14, .external_lex_state = 12}, + [7470] = {.lex_state = 14, .external_lex_state = 12}, + [7471] = {.lex_state = 14, .external_lex_state = 13}, + [7472] = {.lex_state = 14, .external_lex_state = 12}, + [7473] = {.lex_state = 14, .external_lex_state = 14}, + [7474] = {.lex_state = 14, .external_lex_state = 12}, + [7475] = {.lex_state = 14, .external_lex_state = 13}, + [7476] = {.lex_state = 14, .external_lex_state = 12}, + [7477] = {.lex_state = 14, .external_lex_state = 12}, + [7478] = {.lex_state = 14, .external_lex_state = 12}, + [7479] = {.lex_state = 14, .external_lex_state = 12}, + [7480] = {.lex_state = 14, .external_lex_state = 7}, + [7481] = {.lex_state = 14, .external_lex_state = 12}, + [7482] = {.lex_state = 15, .external_lex_state = 15}, + [7483] = {.lex_state = 14, .external_lex_state = 13}, + [7484] = {.lex_state = 14, .external_lex_state = 12}, + [7485] = {.lex_state = 14, .external_lex_state = 12}, + [7486] = {.lex_state = 14, .external_lex_state = 12}, + [7487] = {.lex_state = 14, .external_lex_state = 12}, + [7488] = {.lex_state = 14, .external_lex_state = 12}, + [7489] = {.lex_state = 14, .external_lex_state = 12}, + [7490] = {.lex_state = 14, .external_lex_state = 14}, + [7491] = {.lex_state = 14, .external_lex_state = 12}, + [7492] = {.lex_state = 14, .external_lex_state = 12}, + [7493] = {.lex_state = 14, .external_lex_state = 12}, + [7494] = {.lex_state = 14, .external_lex_state = 12}, + [7495] = {.lex_state = 14, .external_lex_state = 12}, + [7496] = {.lex_state = 14, .external_lex_state = 12}, + [7497] = {.lex_state = 14, .external_lex_state = 12}, + [7498] = {.lex_state = 14, .external_lex_state = 12}, + [7499] = {.lex_state = 14, .external_lex_state = 12}, + [7500] = {.lex_state = 14, .external_lex_state = 12}, + [7501] = {.lex_state = 14, .external_lex_state = 12}, + [7502] = {.lex_state = 14, .external_lex_state = 12}, + [7503] = {.lex_state = 14, .external_lex_state = 12}, + [7504] = {.lex_state = 14, .external_lex_state = 12}, + [7505] = {.lex_state = 14, .external_lex_state = 12}, + [7506] = {.lex_state = 14, .external_lex_state = 12}, + [7507] = {.lex_state = 14, .external_lex_state = 12}, + [7508] = {.lex_state = 15, .external_lex_state = 12}, + [7509] = {.lex_state = 14, .external_lex_state = 7}, + [7510] = {.lex_state = 14, .external_lex_state = 12}, + [7511] = {.lex_state = 14, .external_lex_state = 12}, + [7512] = {.lex_state = 14, .external_lex_state = 12}, + [7513] = {.lex_state = 14, .external_lex_state = 13}, + [7514] = {.lex_state = 15, .external_lex_state = 12}, + [7515] = {.lex_state = 15, .external_lex_state = 15}, + [7516] = {.lex_state = 14, .external_lex_state = 12}, + [7517] = {.lex_state = 15, .external_lex_state = 15}, + [7518] = {.lex_state = 14, .external_lex_state = 12}, + [7519] = {.lex_state = 14, .external_lex_state = 12}, + [7520] = {.lex_state = 14, .external_lex_state = 12}, + [7521] = {.lex_state = 15, .external_lex_state = 12}, + [7522] = {.lex_state = 15, .external_lex_state = 15}, + [7523] = {.lex_state = 15, .external_lex_state = 12}, + [7524] = {.lex_state = 15, .external_lex_state = 15}, + [7525] = {.lex_state = 15, .external_lex_state = 15}, + [7526] = {.lex_state = 15, .external_lex_state = 14}, + [7527] = {.lex_state = 15, .external_lex_state = 12}, + [7528] = {.lex_state = 14, .external_lex_state = 8}, + [7529] = {.lex_state = 15, .external_lex_state = 12}, + [7530] = {.lex_state = 15, .external_lex_state = 12}, + [7531] = {.lex_state = 15, .external_lex_state = 15}, + [7532] = {.lex_state = 14, .external_lex_state = 8}, + [7533] = {.lex_state = 15, .external_lex_state = 14}, + [7534] = {.lex_state = 15, .external_lex_state = 14}, + [7535] = {.lex_state = 15, .external_lex_state = 12}, + [7536] = {.lex_state = 15, .external_lex_state = 14}, + [7537] = {.lex_state = 15, .external_lex_state = 15}, + [7538] = {.lex_state = 15, .external_lex_state = 12}, + [7539] = {.lex_state = 15, .external_lex_state = 15}, + [7540] = {.lex_state = 15, .external_lex_state = 15}, + [7541] = {.lex_state = 15, .external_lex_state = 12}, + [7542] = {.lex_state = 14, .external_lex_state = 8}, + [7543] = {.lex_state = 15, .external_lex_state = 12}, + [7544] = {.lex_state = 15, .external_lex_state = 15}, + [7545] = {.lex_state = 15, .external_lex_state = 12}, + [7546] = {.lex_state = 15, .external_lex_state = 15}, + [7547] = {.lex_state = 14, .external_lex_state = 8}, + [7548] = {.lex_state = 15, .external_lex_state = 15}, + [7549] = {.lex_state = 15, .external_lex_state = 12}, + [7550] = {.lex_state = 15, .external_lex_state = 15}, + [7551] = {.lex_state = 15, .external_lex_state = 12}, + [7552] = {.lex_state = 15, .external_lex_state = 15}, + [7553] = {.lex_state = 14, .external_lex_state = 15}, + [7554] = {.lex_state = 14, .external_lex_state = 15}, + [7555] = {.lex_state = 14, .external_lex_state = 15}, + [7556] = {.lex_state = 14, .external_lex_state = 15}, + [7557] = {.lex_state = 14, .external_lex_state = 15}, + [7558] = {.lex_state = 14, .external_lex_state = 15}, + [7559] = {.lex_state = 14, .external_lex_state = 15}, + [7560] = {.lex_state = 14, .external_lex_state = 15}, + [7561] = {.lex_state = 14, .external_lex_state = 14}, + [7562] = {.lex_state = 14, .external_lex_state = 15}, + [7563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7564] = {.lex_state = 14, .external_lex_state = 15}, + [7565] = {.lex_state = 14, .external_lex_state = 15}, + [7566] = {.lex_state = 15, .external_lex_state = 14}, + [7567] = {.lex_state = 14, .external_lex_state = 15}, + [7568] = {.lex_state = 14, .external_lex_state = 15}, + [7569] = {.lex_state = 14, .external_lex_state = 15}, + [7570] = {.lex_state = 14, .external_lex_state = 15}, + [7571] = {.lex_state = 14, .external_lex_state = 15}, + [7572] = {.lex_state = 15, .external_lex_state = 14}, + [7573] = {.lex_state = 14, .external_lex_state = 15}, + [7574] = {.lex_state = 14, .external_lex_state = 15}, + [7575] = {.lex_state = 14, .external_lex_state = 15}, + [7576] = {.lex_state = 14, .external_lex_state = 15}, + [7577] = {.lex_state = 14, .external_lex_state = 15}, + [7578] = {.lex_state = 14, .external_lex_state = 15}, + [7579] = {.lex_state = 15, .external_lex_state = 14}, + [7580] = {.lex_state = 15, .external_lex_state = 14}, + [7581] = {.lex_state = 14, .external_lex_state = 7}, + [7582] = {.lex_state = 15, .external_lex_state = 12}, + [7583] = {.lex_state = 14, .external_lex_state = 15}, + [7584] = {.lex_state = 15, .external_lex_state = 12}, + [7585] = {.lex_state = 14, .external_lex_state = 14}, + [7586] = {.lex_state = 14, .external_lex_state = 11}, + [7587] = {.lex_state = 15, .external_lex_state = 12}, + [7588] = {.lex_state = 14, .external_lex_state = 7}, + [7589] = {.lex_state = 14, .external_lex_state = 14}, + [7590] = {.lex_state = 14, .external_lex_state = 15}, + [7591] = {.lex_state = 14, .external_lex_state = 15}, + [7592] = {.lex_state = 14, .external_lex_state = 15}, + [7593] = {.lex_state = 14, .external_lex_state = 15}, + [7594] = {.lex_state = 14, .external_lex_state = 15}, + [7595] = {.lex_state = 14, .external_lex_state = 15}, + [7596] = {.lex_state = 15, .external_lex_state = 12}, + [7597] = {.lex_state = 14, .external_lex_state = 14}, + [7598] = {.lex_state = 14, .external_lex_state = 15}, + [7599] = {.lex_state = 14, .external_lex_state = 15}, + [7600] = {.lex_state = 14, .external_lex_state = 15}, + [7601] = {.lex_state = 14, .external_lex_state = 15}, + [7602] = {.lex_state = 14, .external_lex_state = 15}, + [7603] = {.lex_state = 14, .external_lex_state = 15}, + [7604] = {.lex_state = 14, .external_lex_state = 14}, + [7605] = {.lex_state = 14, .external_lex_state = 15}, + [7606] = {.lex_state = 14, .external_lex_state = 14}, + [7607] = {.lex_state = 14, .external_lex_state = 14}, + [7608] = {.lex_state = 14, .external_lex_state = 14}, + [7609] = {.lex_state = 14, .external_lex_state = 14}, + [7610] = {.lex_state = 14, .external_lex_state = 15}, + [7611] = {.lex_state = 14, .external_lex_state = 14}, + [7612] = {.lex_state = 15, .external_lex_state = 12}, + [7613] = {.lex_state = 14, .external_lex_state = 15}, + [7614] = {.lex_state = 14, .external_lex_state = 14}, + [7615] = {.lex_state = 14, .external_lex_state = 15}, + [7616] = {.lex_state = 14, .external_lex_state = 15}, + [7617] = {.lex_state = 15, .external_lex_state = 14}, + [7618] = {.lex_state = 14, .external_lex_state = 15}, + [7619] = {.lex_state = 14, .external_lex_state = 15}, + [7620] = {.lex_state = 14, .external_lex_state = 15}, + [7621] = {.lex_state = 14, .external_lex_state = 15}, + [7622] = {.lex_state = 14, .external_lex_state = 15}, + [7623] = {.lex_state = 14, .external_lex_state = 15}, + [7624] = {.lex_state = 14, .external_lex_state = 15}, + [7625] = {.lex_state = 14, .external_lex_state = 15}, + [7626] = {.lex_state = 14, .external_lex_state = 14}, + [7627] = {.lex_state = 15, .external_lex_state = 12}, + [7628] = {.lex_state = 14, .external_lex_state = 15}, + [7629] = {.lex_state = 14, .external_lex_state = 15}, + [7630] = {.lex_state = 14, .external_lex_state = 15}, + [7631] = {.lex_state = 14, .external_lex_state = 15}, + [7632] = {.lex_state = 14, .external_lex_state = 15}, + [7633] = {.lex_state = 14, .external_lex_state = 15}, + [7634] = {.lex_state = 15, .external_lex_state = 14}, + [7635] = {.lex_state = 14, .external_lex_state = 15}, + [7636] = {.lex_state = 14, .external_lex_state = 15}, + [7637] = {.lex_state = 14, .external_lex_state = 15}, + [7638] = {.lex_state = 14, .external_lex_state = 15}, + [7639] = {.lex_state = 14, .external_lex_state = 15}, + [7640] = {.lex_state = 14, .external_lex_state = 15}, + [7641] = {.lex_state = 14, .external_lex_state = 15}, + [7642] = {.lex_state = 14, .external_lex_state = 15}, + [7643] = {.lex_state = 14, .external_lex_state = 15}, + [7644] = {.lex_state = 14, .external_lex_state = 15}, + [7645] = {.lex_state = 14, .external_lex_state = 15}, + [7646] = {.lex_state = 15, .external_lex_state = 12}, + [7647] = {.lex_state = 14, .external_lex_state = 15}, + [7648] = {.lex_state = 14, .external_lex_state = 15}, + [7649] = {.lex_state = 14, .external_lex_state = 15}, + [7650] = {.lex_state = 14, .external_lex_state = 15}, + [7651] = {.lex_state = 14, .external_lex_state = 15}, + [7652] = {.lex_state = 14, .external_lex_state = 15}, + [7653] = {.lex_state = 14, .external_lex_state = 15}, + [7654] = {.lex_state = 15, .external_lex_state = 14}, + [7655] = {.lex_state = 14, .external_lex_state = 15}, + [7656] = {.lex_state = 14, .external_lex_state = 14}, + [7657] = {.lex_state = 14, .external_lex_state = 15}, + [7658] = {.lex_state = 14, .external_lex_state = 15}, + [7659] = {.lex_state = 14, .external_lex_state = 15}, + [7660] = {.lex_state = 14, .external_lex_state = 14}, + [7661] = {.lex_state = 14, .external_lex_state = 15}, + [7662] = {.lex_state = 14, .external_lex_state = 15}, + [7663] = {.lex_state = 14, .external_lex_state = 15}, + [7664] = {.lex_state = 14, .external_lex_state = 15}, + [7665] = {.lex_state = 14, .external_lex_state = 15}, + [7666] = {.lex_state = 14, .external_lex_state = 15}, + [7667] = {.lex_state = 14, .external_lex_state = 15}, + [7668] = {.lex_state = 14, .external_lex_state = 15}, + [7669] = {.lex_state = 14, .external_lex_state = 15}, + [7670] = {.lex_state = 14, .external_lex_state = 15}, + [7671] = {.lex_state = 14, .external_lex_state = 15}, + [7672] = {.lex_state = 15, .external_lex_state = 12}, + [7673] = {.lex_state = 14, .external_lex_state = 15}, + [7674] = {.lex_state = 14, .external_lex_state = 15}, + [7675] = {.lex_state = 14, .external_lex_state = 15}, + [7676] = {.lex_state = 14, .external_lex_state = 15}, + [7677] = {.lex_state = 14, .external_lex_state = 15}, + [7678] = {.lex_state = 14, .external_lex_state = 15}, + [7679] = {.lex_state = 14, .external_lex_state = 15}, + [7680] = {.lex_state = 14, .external_lex_state = 15}, + [7681] = {.lex_state = 14, .external_lex_state = 15}, + [7682] = {.lex_state = 14, .external_lex_state = 15}, + [7683] = {.lex_state = 14, .external_lex_state = 15}, + [7684] = {.lex_state = 14, .external_lex_state = 15}, + [7685] = {.lex_state = 14, .external_lex_state = 14}, + [7686] = {.lex_state = 14, .external_lex_state = 15}, + [7687] = {.lex_state = 14, .external_lex_state = 15}, + [7688] = {.lex_state = 14, .external_lex_state = 14}, + [7689] = {.lex_state = 14, .external_lex_state = 15}, + [7690] = {.lex_state = 15, .external_lex_state = 14}, + [7691] = {.lex_state = 14, .external_lex_state = 15}, + [7692] = {.lex_state = 14, .external_lex_state = 15}, + [7693] = {.lex_state = 14, .external_lex_state = 15}, + [7694] = {.lex_state = 15, .external_lex_state = 14}, + [7695] = {.lex_state = 14, .external_lex_state = 15}, + [7696] = {.lex_state = 14, .external_lex_state = 15}, + [7697] = {.lex_state = 14, .external_lex_state = 14}, + [7698] = {.lex_state = 14, .external_lex_state = 14}, + [7699] = {.lex_state = 14, .external_lex_state = 15}, + [7700] = {.lex_state = 15, .external_lex_state = 14}, + [7701] = {.lex_state = 14, .external_lex_state = 15}, + [7702] = {.lex_state = 15, .external_lex_state = 14}, + [7703] = {.lex_state = 15, .external_lex_state = 14}, + [7704] = {.lex_state = 15, .external_lex_state = 14}, + [7705] = {.lex_state = 14, .external_lex_state = 14}, + [7706] = {.lex_state = 14, .external_lex_state = 12}, + [7707] = {.lex_state = 14, .external_lex_state = 14}, + [7708] = {.lex_state = 14, .external_lex_state = 14}, + [7709] = {.lex_state = 14, .external_lex_state = 14}, + [7710] = {.lex_state = 15, .external_lex_state = 12}, + [7711] = {.lex_state = 14, .external_lex_state = 14}, + [7712] = {.lex_state = 14, .external_lex_state = 14}, + [7713] = {.lex_state = 14, .external_lex_state = 14}, + [7714] = {.lex_state = 14, .external_lex_state = 14}, + [7715] = {.lex_state = 14, .external_lex_state = 14}, + [7716] = {.lex_state = 15, .external_lex_state = 14}, + [7717] = {.lex_state = 15, .external_lex_state = 14}, + [7718] = {.lex_state = 14, .external_lex_state = 14}, + [7719] = {.lex_state = 14, .external_lex_state = 14}, + [7720] = {.lex_state = 14, .external_lex_state = 14}, + [7721] = {.lex_state = 15, .external_lex_state = 12}, + [7722] = {.lex_state = 15, .external_lex_state = 12}, + [7723] = {.lex_state = 14, .external_lex_state = 14}, + [7724] = {.lex_state = 14, .external_lex_state = 14}, + [7725] = {.lex_state = 14, .external_lex_state = 12}, + [7726] = {.lex_state = 14, .external_lex_state = 14}, + [7727] = {.lex_state = 14, .external_lex_state = 14}, + [7728] = {.lex_state = 14, .external_lex_state = 12}, + [7729] = {.lex_state = 7, .external_lex_state = 11}, + [7730] = {.lex_state = 7, .external_lex_state = 11}, + [7731] = {.lex_state = 7, .external_lex_state = 11}, + [7732] = {.lex_state = 7, .external_lex_state = 11}, + [7733] = {.lex_state = 14, .external_lex_state = 14}, + [7734] = {.lex_state = 14, .external_lex_state = 14}, + [7735] = {.lex_state = 14, .external_lex_state = 14}, + [7736] = {.lex_state = 14, .external_lex_state = 14}, + [7737] = {.lex_state = 14, .external_lex_state = 14}, + [7738] = {.lex_state = 7, .external_lex_state = 11}, + [7739] = {.lex_state = 14, .external_lex_state = 12}, + [7740] = {.lex_state = 14, .external_lex_state = 14}, + [7741] = {.lex_state = 14, .external_lex_state = 14}, + [7742] = {.lex_state = 15, .external_lex_state = 12}, + [7743] = {.lex_state = 14, .external_lex_state = 14}, + [7744] = {.lex_state = 14, .external_lex_state = 14}, + [7745] = {.lex_state = 14, .external_lex_state = 14}, + [7746] = {.lex_state = 14, .external_lex_state = 14}, + [7747] = {.lex_state = 14, .external_lex_state = 14}, + [7748] = {.lex_state = 14, .external_lex_state = 14}, + [7749] = {.lex_state = 15, .external_lex_state = 14}, + [7750] = {.lex_state = 14, .external_lex_state = 14}, + [7751] = {.lex_state = 7, .external_lex_state = 11}, + [7752] = {.lex_state = 7, .external_lex_state = 11}, + [7753] = {.lex_state = 14, .external_lex_state = 14}, + [7754] = {.lex_state = 14, .external_lex_state = 14}, + [7755] = {.lex_state = 14, .external_lex_state = 14}, + [7756] = {.lex_state = 14, .external_lex_state = 14}, + [7757] = {.lex_state = 14, .external_lex_state = 14}, + [7758] = {.lex_state = 14, .external_lex_state = 14}, + [7759] = {.lex_state = 14, .external_lex_state = 12}, + [7760] = {.lex_state = 15, .external_lex_state = 12}, + [7761] = {.lex_state = 14, .external_lex_state = 14}, + [7762] = {.lex_state = 15, .external_lex_state = 12}, + [7763] = {.lex_state = 15, .external_lex_state = 12}, + [7764] = {.lex_state = 15, .external_lex_state = 12}, + [7765] = {.lex_state = 14, .external_lex_state = 14}, + [7766] = {.lex_state = 14, .external_lex_state = 12}, + [7767] = {.lex_state = 14, .external_lex_state = 12}, + [7768] = {.lex_state = 14, .external_lex_state = 14}, + [7769] = {.lex_state = 15, .external_lex_state = 15}, + [7770] = {.lex_state = 15, .external_lex_state = 15}, + [7771] = {.lex_state = 15, .external_lex_state = 12}, + [7772] = {.lex_state = 15, .external_lex_state = 12}, + [7773] = {.lex_state = 14, .external_lex_state = 14}, + [7774] = {.lex_state = 14, .external_lex_state = 14}, + [7775] = {.lex_state = 15, .external_lex_state = 15}, + [7776] = {.lex_state = 15, .external_lex_state = 14}, + [7777] = {.lex_state = 15, .external_lex_state = 14}, + [7778] = {.lex_state = 14, .external_lex_state = 14}, + [7779] = {.lex_state = 15, .external_lex_state = 13}, + [7780] = {.lex_state = 15, .external_lex_state = 15}, + [7781] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7782] = {.lex_state = 15, .external_lex_state = 13}, + [7783] = {.lex_state = 15, .external_lex_state = 15}, + [7784] = {.lex_state = 14, .external_lex_state = 13}, + [7785] = {.lex_state = 14, .external_lex_state = 12}, + [7786] = {.lex_state = 14, .external_lex_state = 12}, + [7787] = {.lex_state = 14, .external_lex_state = 14}, + [7788] = {.lex_state = 15, .external_lex_state = 13}, + [7789] = {.lex_state = 14, .external_lex_state = 14}, + [7790] = {.lex_state = 15, .external_lex_state = 15}, + [7791] = {.lex_state = 7, .external_lex_state = 13}, + [7792] = {.lex_state = 7, .external_lex_state = 13}, + [7793] = {.lex_state = 7, .external_lex_state = 13}, + [7794] = {.lex_state = 7, .external_lex_state = 13}, + [7795] = {.lex_state = 7, .external_lex_state = 13}, + [7796] = {.lex_state = 7, .external_lex_state = 13}, + [7797] = {.lex_state = 7, .external_lex_state = 13}, + [7798] = {.lex_state = 7, .external_lex_state = 13}, + [7799] = {.lex_state = 7, .external_lex_state = 13}, + [7800] = {.lex_state = 7, .external_lex_state = 13}, + [7801] = {.lex_state = 7, .external_lex_state = 13}, + [7802] = {.lex_state = 7, .external_lex_state = 13}, + [7803] = {.lex_state = 7, .external_lex_state = 13}, + [7804] = {.lex_state = 7, .external_lex_state = 13}, + [7805] = {.lex_state = 7, .external_lex_state = 13}, + [7806] = {.lex_state = 7, .external_lex_state = 13}, + [7807] = {.lex_state = 7, .external_lex_state = 13}, + [7808] = {.lex_state = 7, .external_lex_state = 13}, + [7809] = {.lex_state = 7, .external_lex_state = 13}, + [7810] = {.lex_state = 7, .external_lex_state = 13}, + [7811] = {.lex_state = 7, .external_lex_state = 13}, + [7812] = {.lex_state = 7, .external_lex_state = 13}, + [7813] = {.lex_state = 7, .external_lex_state = 13}, + [7814] = {.lex_state = 7, .external_lex_state = 13}, + [7815] = {.lex_state = 7, .external_lex_state = 13}, + [7816] = {.lex_state = 7, .external_lex_state = 13}, + [7817] = {.lex_state = 14, .external_lex_state = 15}, + [7818] = {.lex_state = 7, .external_lex_state = 13}, + [7819] = {.lex_state = 14, .external_lex_state = 15}, + [7820] = {.lex_state = 7, .external_lex_state = 13}, + [7821] = {.lex_state = 7, .external_lex_state = 13}, + [7822] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7823] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7824] = {.lex_state = 7, .external_lex_state = 12}, + [7825] = {.lex_state = 7, .external_lex_state = 12}, + [7826] = {.lex_state = 7, .external_lex_state = 13}, + [7827] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7828] = {.lex_state = 7, .external_lex_state = 13}, + [7829] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7830] = {.lex_state = 7, .external_lex_state = 11}, + [7831] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7832] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7833] = {.lex_state = 7, .external_lex_state = 14}, + [7834] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7835] = {.lex_state = 7, .external_lex_state = 14}, + [7836] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7837] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7838] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7839] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7840] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7841] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7842] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7843] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7844] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 30}, + [7845] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7846] = {.lex_state = 7, .external_lex_state = 11}, + [7847] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7848] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7849] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 31}, + [7850] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7851] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7852] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7853] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7854] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7855] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7856] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7857] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7858] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7859] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7860] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7861] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [7862] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7863] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7864] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7865] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7866] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7867] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7868] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7869] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7870] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7871] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7872] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7873] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7874] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 31}, + [7875] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 30}, + [7876] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 31}, + [7877] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7878] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7879] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7880] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7881] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7882] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7883] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [7884] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7885] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7886] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7887] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7888] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [7889] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 31}, + [7890] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7891] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7892] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [7893] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7894] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7895] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7896] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7897] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [7898] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7899] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7900] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7901] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7902] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7903] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 31}, + [7904] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7905] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7906] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7907] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 31}, + [7908] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [7909] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7910] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7911] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7912] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7913] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7914] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 31}, + [7915] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7916] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 31}, + [7917] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7918] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 31}, + [7919] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7920] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [7921] = {.lex_state = 7, .external_lex_state = 11}, + [7922] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7923] = {.lex_state = 7, .external_lex_state = 12}, + [7924] = {.lex_state = 7, .external_lex_state = 11}, + [7925] = {.lex_state = 7, .external_lex_state = 12}, + [7926] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7927] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7929] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7932] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7935] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7936] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7937] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 31}, + [7938] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7939] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7940] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7941] = {.lex_state = 7, .external_lex_state = 14}, + [7942] = {.lex_state = 7, .external_lex_state = 12}, + [7943] = {.lex_state = 7, .external_lex_state = 13}, + [7944] = {.lex_state = 7, .external_lex_state = 14}, + [7945] = {.lex_state = 7, .external_lex_state = 12}, + [7946] = {.lex_state = 7, .external_lex_state = 13}, + [7947] = {.lex_state = 7, .external_lex_state = 15}, + [7948] = {.lex_state = 7, .external_lex_state = 15}, + [7949] = {.lex_state = 7, .external_lex_state = 15}, + [7950] = {.lex_state = 7, .external_lex_state = 15}, + [7951] = {.lex_state = 14, .external_lex_state = 15}, + [7952] = {.lex_state = 7, .external_lex_state = 14}, + [7953] = {.lex_state = 14, .external_lex_state = 2}, + [7954] = {.lex_state = 14, .external_lex_state = 15}, + [7955] = {.lex_state = 7, .external_lex_state = 14}, + [7956] = {.lex_state = 14, .external_lex_state = 13}, + [7957] = {.lex_state = 14, .external_lex_state = 13}, + [7958] = {.lex_state = 14, .external_lex_state = 15}, + [7959] = {.lex_state = 14, .external_lex_state = 2}, + [7960] = {.lex_state = 14, .external_lex_state = 15}, + [7961] = {.lex_state = 14, .external_lex_state = 15}, + [7962] = {.lex_state = 14, .external_lex_state = 15}, + [7963] = {.lex_state = 14, .external_lex_state = 15}, + [7964] = {.lex_state = 14, .external_lex_state = 13}, + [7965] = {.lex_state = 14, .external_lex_state = 13}, + [7966] = {.lex_state = 14, .external_lex_state = 2}, + [7967] = {.lex_state = 14, .external_lex_state = 2}, + [7968] = {.lex_state = 14, .external_lex_state = 2}, + [7969] = {.lex_state = 7, .external_lex_state = 11}, + [7970] = {.lex_state = 7, .external_lex_state = 11}, + [7971] = {.lex_state = 14, .external_lex_state = 13}, + [7972] = {.lex_state = 14, .external_lex_state = 13}, + [7973] = {.lex_state = 14, .external_lex_state = 13}, + [7974] = {.lex_state = 14, .external_lex_state = 13}, + [7975] = {.lex_state = 14, .external_lex_state = 2}, + [7976] = {.lex_state = 14, .external_lex_state = 2}, + [7977] = {.lex_state = 7, .external_lex_state = 11}, + [7978] = {.lex_state = 14, .external_lex_state = 13}, + [7979] = {.lex_state = 14, .external_lex_state = 2}, + [7980] = {.lex_state = 14, .external_lex_state = 2}, + [7981] = {.lex_state = 14, .external_lex_state = 2}, + [7982] = {.lex_state = 14, .external_lex_state = 13}, + [7983] = {.lex_state = 14, .external_lex_state = 13}, + [7984] = {.lex_state = 14, .external_lex_state = 2}, + [7985] = {.lex_state = 14, .external_lex_state = 2}, + [7986] = {.lex_state = 14, .external_lex_state = 2}, + [7987] = {.lex_state = 14, .external_lex_state = 2}, + [7988] = {.lex_state = 14, .external_lex_state = 2}, + [7989] = {.lex_state = 14, .external_lex_state = 2}, + [7990] = {.lex_state = 14, .external_lex_state = 2}, + [7991] = {.lex_state = 14, .external_lex_state = 13}, + [7992] = {.lex_state = 14, .external_lex_state = 14}, + [7993] = {.lex_state = 14, .external_lex_state = 14}, + [7994] = {.lex_state = 14, .external_lex_state = 14}, + [7995] = {.lex_state = 14, .external_lex_state = 14}, + [7996] = {.lex_state = 13, .external_lex_state = 11}, + [7997] = {.lex_state = 14, .external_lex_state = 13}, + [7998] = {.lex_state = 14, .external_lex_state = 13}, + [7999] = {.lex_state = 13, .external_lex_state = 11}, + [8000] = {.lex_state = 14, .external_lex_state = 14}, + [8001] = {.lex_state = 14, .external_lex_state = 13}, + [8002] = {.lex_state = 14, .external_lex_state = 14}, + [8003] = {.lex_state = 14, .external_lex_state = 13}, + [8004] = {.lex_state = 14, .external_lex_state = 13}, + [8005] = {.lex_state = 14, .external_lex_state = 13}, + [8006] = {.lex_state = 14, .external_lex_state = 13}, + [8007] = {.lex_state = 14, .external_lex_state = 13}, + [8008] = {.lex_state = 14, .external_lex_state = 13}, + [8009] = {.lex_state = 14, .external_lex_state = 13}, + [8010] = {.lex_state = 14, .external_lex_state = 14}, + [8011] = {.lex_state = 14, .external_lex_state = 14}, + [8012] = {.lex_state = 7, .external_lex_state = 12}, + [8013] = {.lex_state = 7, .external_lex_state = 12}, + [8014] = {.lex_state = 7, .external_lex_state = 12}, + [8015] = {.lex_state = 7, .external_lex_state = 12}, + [8016] = {.lex_state = 7, .external_lex_state = 12}, + [8017] = {.lex_state = 7, .external_lex_state = 12}, + [8018] = {.lex_state = 14, .external_lex_state = 12}, + [8019] = {.lex_state = 7, .external_lex_state = 12}, + [8020] = {.lex_state = 7, .external_lex_state = 12}, + [8021] = {.lex_state = 14, .external_lex_state = 13}, + [8022] = {.lex_state = 14, .external_lex_state = 13}, + [8023] = {.lex_state = 14, .external_lex_state = 12}, + [8024] = {.lex_state = 14, .external_lex_state = 12}, + [8025] = {.lex_state = 14, .external_lex_state = 13}, + [8026] = {.lex_state = 14, .external_lex_state = 13}, + [8027] = {.lex_state = 14, .external_lex_state = 13}, + [8028] = {.lex_state = 14, .external_lex_state = 12}, + [8029] = {.lex_state = 14, .external_lex_state = 13}, + [8030] = {.lex_state = 7, .external_lex_state = 12}, + [8031] = {.lex_state = 14, .external_lex_state = 13}, + [8032] = {.lex_state = 13, .external_lex_state = 11}, + [8033] = {.lex_state = 13, .external_lex_state = 11}, + [8034] = {.lex_state = 13, .external_lex_state = 11}, + [8035] = {.lex_state = 13, .external_lex_state = 11}, + [8036] = {.lex_state = 7, .external_lex_state = 13}, + [8037] = {.lex_state = 14, .external_lex_state = 14}, + [8038] = {.lex_state = 14, .external_lex_state = 14}, + [8039] = {.lex_state = 14, .external_lex_state = 14}, + [8040] = {.lex_state = 14, .external_lex_state = 14}, + [8041] = {.lex_state = 7, .external_lex_state = 13}, + [8042] = {.lex_state = 14, .external_lex_state = 14}, + [8043] = {.lex_state = 14, .external_lex_state = 14}, + [8044] = {.lex_state = 7, .external_lex_state = 12}, + [8045] = {.lex_state = 7, .external_lex_state = 12}, + [8046] = {.lex_state = 7, .external_lex_state = 12}, + [8047] = {.lex_state = 7, .external_lex_state = 14}, + [8048] = {.lex_state = 14, .external_lex_state = 13}, + [8049] = {.lex_state = 14, .external_lex_state = 13}, + [8050] = {.lex_state = 14, .external_lex_state = 13}, + [8051] = {.lex_state = 7, .external_lex_state = 14}, + [8052] = {.lex_state = 7, .external_lex_state = 13}, + [8053] = {.lex_state = 7, .external_lex_state = 14}, + [8054] = {.lex_state = 14, .external_lex_state = 14}, + [8055] = {.lex_state = 7, .external_lex_state = 12}, + [8056] = {.lex_state = 7, .external_lex_state = 12}, + [8057] = {.lex_state = 14, .external_lex_state = 12}, + [8058] = {.lex_state = 14, .external_lex_state = 12}, + [8059] = {.lex_state = 14, .external_lex_state = 12}, + [8060] = {.lex_state = 7, .external_lex_state = 12}, + [8061] = {.lex_state = 14, .external_lex_state = 13}, + [8062] = {.lex_state = 7, .external_lex_state = 12}, + [8063] = {.lex_state = 7, .external_lex_state = 12}, + [8064] = {.lex_state = 7, .external_lex_state = 12}, + [8065] = {.lex_state = 7, .external_lex_state = 12}, + [8066] = {.lex_state = 7, .external_lex_state = 14}, + [8067] = {.lex_state = 7, .external_lex_state = 14}, + [8068] = {.lex_state = 7, .external_lex_state = 14}, + [8069] = {.lex_state = 7, .external_lex_state = 14}, + [8070] = {.lex_state = 7, .external_lex_state = 14}, + [8071] = {.lex_state = 7, .external_lex_state = 14}, + [8072] = {.lex_state = 7, .external_lex_state = 11}, + [8073] = {.lex_state = 7, .external_lex_state = 11}, + [8074] = {.lex_state = 7, .external_lex_state = 13}, + [8075] = {.lex_state = 7, .external_lex_state = 13}, + [8076] = {.lex_state = 7, .external_lex_state = 13}, + [8077] = {.lex_state = 7, .external_lex_state = 11}, + [8078] = {.lex_state = 13, .external_lex_state = 13}, + [8079] = {.lex_state = 13, .external_lex_state = 11}, + [8080] = {.lex_state = 14, .external_lex_state = 13}, + [8081] = {.lex_state = 7, .external_lex_state = 11}, + [8082] = {.lex_state = 7, .external_lex_state = 13}, + [8083] = {.lex_state = 7, .external_lex_state = 13}, + [8084] = {.lex_state = 7, .external_lex_state = 14}, + [8085] = {.lex_state = 7, .external_lex_state = 14}, + [8086] = {.lex_state = 13, .external_lex_state = 13}, + [8087] = {.lex_state = 7, .external_lex_state = 13}, + [8088] = {.lex_state = 7, .external_lex_state = 13}, + [8089] = {.lex_state = 7, .external_lex_state = 11}, + [8090] = {.lex_state = 7, .external_lex_state = 11}, + [8091] = {.lex_state = 7, .external_lex_state = 11}, + [8092] = {.lex_state = 7, .external_lex_state = 11}, + [8093] = {.lex_state = 14, .external_lex_state = 13}, + [8094] = {.lex_state = 7, .external_lex_state = 13}, + [8095] = {.lex_state = 7, .external_lex_state = 14}, + [8096] = {.lex_state = 7, .external_lex_state = 11}, + [8097] = {.lex_state = 14, .external_lex_state = 13}, + [8098] = {.lex_state = 7, .external_lex_state = 12}, + [8099] = {.lex_state = 7, .external_lex_state = 11}, + [8100] = {.lex_state = 14, .external_lex_state = 13}, + [8101] = {.lex_state = 7, .external_lex_state = 13}, + [8102] = {.lex_state = 13, .external_lex_state = 13}, + [8103] = {.lex_state = 7, .external_lex_state = 11}, + [8104] = {.lex_state = 7, .external_lex_state = 13}, + [8105] = {.lex_state = 7, .external_lex_state = 12}, + [8106] = {.lex_state = 7, .external_lex_state = 11}, + [8107] = {.lex_state = 7, .external_lex_state = 12}, + [8108] = {.lex_state = 7, .external_lex_state = 12}, + [8109] = {.lex_state = 7, .external_lex_state = 14}, + [8110] = {.lex_state = 7, .external_lex_state = 13}, + [8111] = {.lex_state = 7, .external_lex_state = 12}, + [8112] = {.lex_state = 7, .external_lex_state = 12}, + [8113] = {.lex_state = 7, .external_lex_state = 12}, + [8114] = {.lex_state = 7, .external_lex_state = 12}, + [8115] = {.lex_state = 7, .external_lex_state = 12}, + [8116] = {.lex_state = 7, .external_lex_state = 12}, + [8117] = {.lex_state = 7, .external_lex_state = 12}, + [8118] = {.lex_state = 7, .external_lex_state = 12}, + [8119] = {.lex_state = 7, .external_lex_state = 12}, + [8120] = {.lex_state = 7, .external_lex_state = 12}, + [8121] = {.lex_state = 7, .external_lex_state = 12}, + [8122] = {.lex_state = 7, .external_lex_state = 12}, + [8123] = {.lex_state = 7, .external_lex_state = 12}, + [8124] = {.lex_state = 7, .external_lex_state = 12}, + [8125] = {.lex_state = 7, .external_lex_state = 12}, + [8126] = {.lex_state = 7, .external_lex_state = 12}, + [8127] = {.lex_state = 7, .external_lex_state = 12}, + [8128] = {.lex_state = 7, .external_lex_state = 12}, + [8129] = {.lex_state = 7, .external_lex_state = 12}, + [8130] = {.lex_state = 7, .external_lex_state = 12}, + [8131] = {.lex_state = 7, .external_lex_state = 12}, + [8132] = {.lex_state = 7, .external_lex_state = 12}, + [8133] = {.lex_state = 7, .external_lex_state = 12}, + [8134] = {.lex_state = 7, .external_lex_state = 12}, + [8135] = {.lex_state = 7, .external_lex_state = 12}, + [8136] = {.lex_state = 7, .external_lex_state = 12}, + [8137] = {.lex_state = 7, .external_lex_state = 12}, + [8138] = {.lex_state = 7, .external_lex_state = 12}, + [8139] = {.lex_state = 7, .external_lex_state = 12}, + [8140] = {.lex_state = 7, .external_lex_state = 12}, + [8141] = {.lex_state = 7, .external_lex_state = 12}, + [8142] = {.lex_state = 7, .external_lex_state = 12}, + [8143] = {.lex_state = 7, .external_lex_state = 12}, + [8144] = {.lex_state = 7, .external_lex_state = 12}, + [8145] = {.lex_state = 7, .external_lex_state = 12}, + [8146] = {.lex_state = 7, .external_lex_state = 12}, + [8147] = {.lex_state = 7, .external_lex_state = 12}, + [8148] = {.lex_state = 7, .external_lex_state = 12}, + [8149] = {.lex_state = 7, .external_lex_state = 12}, + [8150] = {.lex_state = 7, .external_lex_state = 12}, + [8151] = {.lex_state = 14, .external_lex_state = 13}, + [8152] = {.lex_state = 14, .external_lex_state = 13}, + [8153] = {.lex_state = 7, .external_lex_state = 13}, + [8154] = {.lex_state = 14, .external_lex_state = 13}, + [8155] = {.lex_state = 14, .external_lex_state = 13}, + [8156] = {.lex_state = 7, .external_lex_state = 12}, + [8157] = {.lex_state = 7, .external_lex_state = 12}, + [8158] = {.lex_state = 14, .external_lex_state = 13}, + [8159] = {.lex_state = 7, .external_lex_state = 13}, + [8160] = {.lex_state = 7, .external_lex_state = 12}, + [8161] = {.lex_state = 7, .external_lex_state = 12}, + [8162] = {.lex_state = 7, .external_lex_state = 12}, + [8163] = {.lex_state = 14, .external_lex_state = 13}, + [8164] = {.lex_state = 7, .external_lex_state = 13}, + [8165] = {.lex_state = 7, .external_lex_state = 13}, + [8166] = {.lex_state = 7, .external_lex_state = 12}, + [8167] = {.lex_state = 13, .external_lex_state = 13}, + [8168] = {.lex_state = 7, .external_lex_state = 13}, + [8169] = {.lex_state = 7, .external_lex_state = 12}, + [8170] = {.lex_state = 7, .external_lex_state = 12}, + [8171] = {.lex_state = 7, .external_lex_state = 12}, + [8172] = {.lex_state = 7, .external_lex_state = 12}, + [8173] = {.lex_state = 7, .external_lex_state = 12}, + [8174] = {.lex_state = 7, .external_lex_state = 12}, + [8175] = {.lex_state = 7, .external_lex_state = 12}, + [8176] = {.lex_state = 7, .external_lex_state = 12}, + [8177] = {.lex_state = 7, .external_lex_state = 12}, + [8178] = {.lex_state = 7, .external_lex_state = 12}, + [8179] = {.lex_state = 7, .external_lex_state = 12}, + [8180] = {.lex_state = 14, .external_lex_state = 13}, + [8181] = {.lex_state = 7, .external_lex_state = 12}, + [8182] = {.lex_state = 7, .external_lex_state = 12}, + [8183] = {.lex_state = 7, .external_lex_state = 14}, + [8184] = {.lex_state = 7, .external_lex_state = 14}, + [8185] = {.lex_state = 14, .external_lex_state = 13}, + [8186] = {.lex_state = 7, .external_lex_state = 12}, + [8187] = {.lex_state = 14, .external_lex_state = 13}, + [8188] = {.lex_state = 7, .external_lex_state = 12}, + [8189] = {.lex_state = 14, .external_lex_state = 13}, + [8190] = {.lex_state = 7, .external_lex_state = 12}, + [8191] = {.lex_state = 7, .external_lex_state = 12}, + [8192] = {.lex_state = 7, .external_lex_state = 12}, + [8193] = {.lex_state = 7, .external_lex_state = 12}, + [8194] = {.lex_state = 7, .external_lex_state = 12}, + [8195] = {.lex_state = 7, .external_lex_state = 12}, + [8196] = {.lex_state = 7, .external_lex_state = 14}, + [8197] = {.lex_state = 7, .external_lex_state = 13}, + [8198] = {.lex_state = 7, .external_lex_state = 13}, + [8199] = {.lex_state = 7, .external_lex_state = 13}, + [8200] = {.lex_state = 7, .external_lex_state = 12}, + [8201] = {.lex_state = 7, .external_lex_state = 11}, + [8202] = {.lex_state = 7, .external_lex_state = 12}, + [8203] = {.lex_state = 7, .external_lex_state = 11}, + [8204] = {.lex_state = 7, .external_lex_state = 11}, + [8205] = {.lex_state = 7, .external_lex_state = 11}, + [8206] = {.lex_state = 7, .external_lex_state = 12}, + [8207] = {.lex_state = 7, .external_lex_state = 12}, + [8208] = {.lex_state = 7, .external_lex_state = 12}, + [8209] = {.lex_state = 7, .external_lex_state = 11}, + [8210] = {.lex_state = 7, .external_lex_state = 11}, + [8211] = {.lex_state = 7, .external_lex_state = 12}, + [8212] = {.lex_state = 7, .external_lex_state = 13}, + [8213] = {.lex_state = 7, .external_lex_state = 11}, + [8214] = {.lex_state = 7, .external_lex_state = 11}, + [8215] = {.lex_state = 7, .external_lex_state = 11}, + [8216] = {.lex_state = 7, .external_lex_state = 11}, + [8217] = {.lex_state = 7, .external_lex_state = 13}, + [8218] = {.lex_state = 7, .external_lex_state = 11}, + [8219] = {.lex_state = 7, .external_lex_state = 11}, + [8220] = {.lex_state = 7, .external_lex_state = 14}, + [8221] = {.lex_state = 7, .external_lex_state = 11}, + [8222] = {.lex_state = 7, .external_lex_state = 11}, + [8223] = {.lex_state = 7, .external_lex_state = 11}, + [8224] = {.lex_state = 7, .external_lex_state = 11}, + [8225] = {.lex_state = 7, .external_lex_state = 11}, + [8226] = {.lex_state = 7, .external_lex_state = 14}, + [8227] = {.lex_state = 7, .external_lex_state = 13}, + [8228] = {.lex_state = 7, .external_lex_state = 13}, + [8229] = {.lex_state = 7, .external_lex_state = 13}, + [8230] = {.lex_state = 7, .external_lex_state = 13}, + [8231] = {.lex_state = 7, .external_lex_state = 14}, + [8232] = {.lex_state = 7, .external_lex_state = 13}, + [8233] = {.lex_state = 7, .external_lex_state = 12}, + [8234] = {.lex_state = 7, .external_lex_state = 12}, + [8235] = {.lex_state = 7, .external_lex_state = 11}, + [8236] = {.lex_state = 7, .external_lex_state = 11}, + [8237] = {.lex_state = 7, .external_lex_state = 13}, + [8238] = {.lex_state = 7, .external_lex_state = 14}, + [8239] = {.lex_state = 7, .external_lex_state = 14}, + [8240] = {.lex_state = 7, .external_lex_state = 12}, + [8241] = {.lex_state = 7, .external_lex_state = 14}, + [8242] = {.lex_state = 7, .external_lex_state = 12}, + [8243] = {.lex_state = 7, .external_lex_state = 12}, + [8244] = {.lex_state = 7, .external_lex_state = 13}, + [8245] = {.lex_state = 7, .external_lex_state = 12}, + [8246] = {.lex_state = 7, .external_lex_state = 13}, + [8247] = {.lex_state = 7, .external_lex_state = 13}, + [8248] = {.lex_state = 7, .external_lex_state = 11}, + [8249] = {.lex_state = 7, .external_lex_state = 13}, + [8250] = {.lex_state = 7, .external_lex_state = 13}, + [8251] = {.lex_state = 7, .external_lex_state = 13}, + [8252] = {.lex_state = 7, .external_lex_state = 13}, + [8253] = {.lex_state = 7, .external_lex_state = 13}, + [8254] = {.lex_state = 7, .external_lex_state = 13}, + [8255] = {.lex_state = 7, .external_lex_state = 13}, + [8256] = {.lex_state = 7, .external_lex_state = 11}, + [8257] = {.lex_state = 7, .external_lex_state = 14}, + [8258] = {.lex_state = 7, .external_lex_state = 14}, + [8259] = {.lex_state = 7, .external_lex_state = 14}, + [8260] = {.lex_state = 7, .external_lex_state = 14}, + [8261] = {.lex_state = 7, .external_lex_state = 14}, + [8262] = {.lex_state = 7, .external_lex_state = 14}, + [8263] = {.lex_state = 7, .external_lex_state = 11}, + [8264] = {.lex_state = 7, .external_lex_state = 11}, + [8265] = {.lex_state = 7, .external_lex_state = 13}, + [8266] = {.lex_state = 7, .external_lex_state = 13}, + [8267] = {.lex_state = 7, .external_lex_state = 13}, + [8268] = {.lex_state = 7, .external_lex_state = 14}, + [8269] = {.lex_state = 7, .external_lex_state = 14}, + [8270] = {.lex_state = 7, .external_lex_state = 14}, + [8271] = {.lex_state = 7, .external_lex_state = 13}, + [8272] = {.lex_state = 7, .external_lex_state = 14}, + [8273] = {.lex_state = 7, .external_lex_state = 14}, + [8274] = {.lex_state = 7, .external_lex_state = 14}, + [8275] = {.lex_state = 7, .external_lex_state = 11}, + [8276] = {.lex_state = 7, .external_lex_state = 14}, + [8277] = {.lex_state = 7, .external_lex_state = 14}, + [8278] = {.lex_state = 7, .external_lex_state = 14}, + [8279] = {.lex_state = 7, .external_lex_state = 14}, + [8280] = {.lex_state = 7, .external_lex_state = 13}, + [8281] = {.lex_state = 7, .external_lex_state = 14}, + [8282] = {.lex_state = 7, .external_lex_state = 11}, + [8283] = {.lex_state = 7, .external_lex_state = 14}, + [8284] = {.lex_state = 7, .external_lex_state = 14}, + [8285] = {.lex_state = 7, .external_lex_state = 11}, + [8286] = {.lex_state = 7, .external_lex_state = 11}, + [8287] = {.lex_state = 7, .external_lex_state = 13}, + [8288] = {.lex_state = 7, .external_lex_state = 11}, + [8289] = {.lex_state = 7, .external_lex_state = 14}, + [8290] = {.lex_state = 7, .external_lex_state = 11}, + [8291] = {.lex_state = 7, .external_lex_state = 11}, + [8292] = {.lex_state = 7, .external_lex_state = 13}, + [8293] = {.lex_state = 7, .external_lex_state = 14}, + [8294] = {.lex_state = 7, .external_lex_state = 14}, + [8295] = {.lex_state = 7, .external_lex_state = 14}, + [8296] = {.lex_state = 7, .external_lex_state = 14}, + [8297] = {.lex_state = 7, .external_lex_state = 14}, + [8298] = {.lex_state = 7, .external_lex_state = 14}, + [8299] = {.lex_state = 7, .external_lex_state = 12}, + [8300] = {.lex_state = 7, .external_lex_state = 14}, + [8301] = {.lex_state = 7, .external_lex_state = 14}, + [8302] = {.lex_state = 7, .external_lex_state = 14}, + [8303] = {.lex_state = 7, .external_lex_state = 12}, + [8304] = {.lex_state = 7, .external_lex_state = 14}, + [8305] = {.lex_state = 7, .external_lex_state = 12}, + [8306] = {.lex_state = 7, .external_lex_state = 13}, + [8307] = {.lex_state = 7, .external_lex_state = 12}, + [8308] = {.lex_state = 7, .external_lex_state = 14}, + [8309] = {.lex_state = 7, .external_lex_state = 12}, + [8310] = {.lex_state = 7, .external_lex_state = 13}, + [8311] = {.lex_state = 7, .external_lex_state = 11}, + [8312] = {.lex_state = 7, .external_lex_state = 11}, + [8313] = {.lex_state = 7, .external_lex_state = 11}, + [8314] = {.lex_state = 7, .external_lex_state = 11}, + [8315] = {.lex_state = 7, .external_lex_state = 11}, + [8316] = {.lex_state = 7, .external_lex_state = 12}, + [8317] = {.lex_state = 7, .external_lex_state = 11}, + [8318] = {.lex_state = 7, .external_lex_state = 11}, + [8319] = {.lex_state = 7, .external_lex_state = 13}, + [8320] = {.lex_state = 7, .external_lex_state = 13}, + [8321] = {.lex_state = 7, .external_lex_state = 13}, + [8322] = {.lex_state = 7, .external_lex_state = 13}, + [8323] = {.lex_state = 7, .external_lex_state = 13}, + [8324] = {.lex_state = 7, .external_lex_state = 13}, + [8325] = {.lex_state = 7, .external_lex_state = 12}, + [8326] = {.lex_state = 7, .external_lex_state = 12}, + [8327] = {.lex_state = 7, .external_lex_state = 11}, + [8328] = {.lex_state = 7, .external_lex_state = 13}, + [8329] = {.lex_state = 7, .external_lex_state = 12}, + [8330] = {.lex_state = 7, .external_lex_state = 12}, + [8331] = {.lex_state = 7, .external_lex_state = 12}, + [8332] = {.lex_state = 7, .external_lex_state = 12}, + [8333] = {.lex_state = 7, .external_lex_state = 12}, + [8334] = {.lex_state = 7, .external_lex_state = 12}, + [8335] = {.lex_state = 7, .external_lex_state = 12}, + [8336] = {.lex_state = 7, .external_lex_state = 12}, + [8337] = {.lex_state = 7, .external_lex_state = 13}, + [8338] = {.lex_state = 7, .external_lex_state = 12}, + [8339] = {.lex_state = 7, .external_lex_state = 12}, + [8340] = {.lex_state = 7, .external_lex_state = 13}, + [8341] = {.lex_state = 7, .external_lex_state = 12}, + [8342] = {.lex_state = 7, .external_lex_state = 12}, + [8343] = {.lex_state = 7, .external_lex_state = 12}, + [8344] = {.lex_state = 7, .external_lex_state = 12}, + [8345] = {.lex_state = 7, .external_lex_state = 13}, + [8346] = {.lex_state = 7, .external_lex_state = 13}, + [8347] = {.lex_state = 7, .external_lex_state = 13}, + [8348] = {.lex_state = 7, .external_lex_state = 13}, + [8349] = {.lex_state = 7, .external_lex_state = 13}, + [8350] = {.lex_state = 7, .external_lex_state = 13}, + [8351] = {.lex_state = 7, .external_lex_state = 12}, + [8352] = {.lex_state = 7, .external_lex_state = 13}, + [8353] = {.lex_state = 7, .external_lex_state = 13}, + [8354] = {.lex_state = 7, .external_lex_state = 13}, + [8355] = {.lex_state = 7, .external_lex_state = 13}, + [8356] = {.lex_state = 7, .external_lex_state = 13}, + [8357] = {.lex_state = 7, .external_lex_state = 13}, + [8358] = {.lex_state = 7, .external_lex_state = 13}, + [8359] = {.lex_state = 7, .external_lex_state = 13}, + [8360] = {.lex_state = 7, .external_lex_state = 13}, + [8361] = {.lex_state = 14, .external_lex_state = 13}, + [8362] = {.lex_state = 7, .external_lex_state = 11}, + [8363] = {.lex_state = 7, .external_lex_state = 13}, + [8364] = {.lex_state = 7, .external_lex_state = 13}, + [8365] = {.lex_state = 7, .external_lex_state = 13}, + [8366] = {.lex_state = 7, .external_lex_state = 13}, + [8367] = {.lex_state = 7, .external_lex_state = 13}, + [8368] = {.lex_state = 7, .external_lex_state = 13}, + [8369] = {.lex_state = 7, .external_lex_state = 13}, + [8370] = {.lex_state = 7, .external_lex_state = 13}, + [8371] = {.lex_state = 7, .external_lex_state = 13}, + [8372] = {.lex_state = 7, .external_lex_state = 13}, + [8373] = {.lex_state = 7, .external_lex_state = 13}, + [8374] = {.lex_state = 7, .external_lex_state = 13}, + [8375] = {.lex_state = 7, .external_lex_state = 13}, + [8376] = {.lex_state = 7, .external_lex_state = 13}, + [8377] = {.lex_state = 7, .external_lex_state = 13}, + [8378] = {.lex_state = 7, .external_lex_state = 11}, + [8379] = {.lex_state = 7, .external_lex_state = 13}, + [8380] = {.lex_state = 7, .external_lex_state = 13}, + [8381] = {.lex_state = 7, .external_lex_state = 13}, + [8382] = {.lex_state = 7, .external_lex_state = 13}, + [8383] = {.lex_state = 7, .external_lex_state = 13}, + [8384] = {.lex_state = 7, .external_lex_state = 13}, + [8385] = {.lex_state = 7, .external_lex_state = 13}, + [8386] = {.lex_state = 7, .external_lex_state = 13}, + [8387] = {.lex_state = 7, .external_lex_state = 13}, + [8388] = {.lex_state = 7, .external_lex_state = 13}, + [8389] = {.lex_state = 7, .external_lex_state = 13}, + [8390] = {.lex_state = 7, .external_lex_state = 13}, + [8391] = {.lex_state = 7, .external_lex_state = 13}, + [8392] = {.lex_state = 7, .external_lex_state = 13}, + [8393] = {.lex_state = 7, .external_lex_state = 13}, + [8394] = {.lex_state = 7, .external_lex_state = 13}, + [8395] = {.lex_state = 7, .external_lex_state = 13}, + [8396] = {.lex_state = 7, .external_lex_state = 13}, + [8397] = {.lex_state = 7, .external_lex_state = 13}, + [8398] = {.lex_state = 7, .external_lex_state = 13}, + [8399] = {.lex_state = 7, .external_lex_state = 13}, + [8400] = {.lex_state = 7, .external_lex_state = 13}, + [8401] = {.lex_state = 7, .external_lex_state = 13}, + [8402] = {.lex_state = 7, .external_lex_state = 13}, + [8403] = {.lex_state = 7, .external_lex_state = 13}, + [8404] = {.lex_state = 7, .external_lex_state = 13}, + [8405] = {.lex_state = 7, .external_lex_state = 11}, + [8406] = {.lex_state = 7, .external_lex_state = 13}, + [8407] = {.lex_state = 7, .external_lex_state = 11}, + [8408] = {.lex_state = 7, .external_lex_state = 11}, + [8409] = {.lex_state = 7, .external_lex_state = 11}, + [8410] = {.lex_state = 7, .external_lex_state = 11}, + [8411] = {.lex_state = 7, .external_lex_state = 11}, + [8412] = {.lex_state = 7, .external_lex_state = 11}, + [8413] = {.lex_state = 7, .external_lex_state = 11}, + [8414] = {.lex_state = 7, .external_lex_state = 11}, + [8415] = {.lex_state = 7, .external_lex_state = 11}, + [8416] = {.lex_state = 7, .external_lex_state = 11}, + [8417] = {.lex_state = 7, .external_lex_state = 11}, + [8418] = {.lex_state = 7, .external_lex_state = 11}, + [8419] = {.lex_state = 7, .external_lex_state = 11}, + [8420] = {.lex_state = 7, .external_lex_state = 11}, + [8421] = {.lex_state = 7, .external_lex_state = 11}, + [8422] = {.lex_state = 7, .external_lex_state = 11}, + [8423] = {.lex_state = 7, .external_lex_state = 11}, + [8424] = {.lex_state = 7, .external_lex_state = 11}, + [8425] = {.lex_state = 7, .external_lex_state = 11}, + [8426] = {.lex_state = 7, .external_lex_state = 11}, + [8427] = {.lex_state = 7, .external_lex_state = 11}, + [8428] = {.lex_state = 7, .external_lex_state = 11}, + [8429] = {.lex_state = 7, .external_lex_state = 11}, + [8430] = {.lex_state = 7, .external_lex_state = 11}, + [8431] = {.lex_state = 7, .external_lex_state = 11}, + [8432] = {.lex_state = 7, .external_lex_state = 11}, + [8433] = {.lex_state = 7, .external_lex_state = 11}, + [8434] = {.lex_state = 7, .external_lex_state = 11}, + [8435] = {.lex_state = 7, .external_lex_state = 11}, + [8436] = {.lex_state = 7, .external_lex_state = 11}, + [8437] = {.lex_state = 7, .external_lex_state = 11}, + [8438] = {.lex_state = 7, .external_lex_state = 11}, + [8439] = {.lex_state = 7, .external_lex_state = 11}, + [8440] = {.lex_state = 7, .external_lex_state = 11}, + [8441] = {.lex_state = 7, .external_lex_state = 11}, + [8442] = {.lex_state = 7, .external_lex_state = 11}, + [8443] = {.lex_state = 7, .external_lex_state = 14}, + [8444] = {.lex_state = 7, .external_lex_state = 14}, + [8445] = {.lex_state = 7, .external_lex_state = 14}, + [8446] = {.lex_state = 7, .external_lex_state = 14}, + [8447] = {.lex_state = 7, .external_lex_state = 14}, + [8448] = {.lex_state = 7, .external_lex_state = 14}, + [8449] = {.lex_state = 7, .external_lex_state = 14}, + [8450] = {.lex_state = 7, .external_lex_state = 14}, + [8451] = {.lex_state = 7, .external_lex_state = 14}, + [8452] = {.lex_state = 7, .external_lex_state = 14}, + [8453] = {.lex_state = 7, .external_lex_state = 14}, + [8454] = {.lex_state = 7, .external_lex_state = 14}, + [8455] = {.lex_state = 7, .external_lex_state = 14}, + [8456] = {.lex_state = 7, .external_lex_state = 14}, + [8457] = {.lex_state = 7, .external_lex_state = 14}, + [8458] = {.lex_state = 7, .external_lex_state = 14}, + [8459] = {.lex_state = 7, .external_lex_state = 14}, + [8460] = {.lex_state = 7, .external_lex_state = 14}, + [8461] = {.lex_state = 7, .external_lex_state = 14}, + [8462] = {.lex_state = 7, .external_lex_state = 14}, + [8463] = {.lex_state = 7, .external_lex_state = 14}, + [8464] = {.lex_state = 7, .external_lex_state = 14}, + [8465] = {.lex_state = 7, .external_lex_state = 14}, + [8466] = {.lex_state = 7, .external_lex_state = 14}, + [8467] = {.lex_state = 7, .external_lex_state = 14}, + [8468] = {.lex_state = 7, .external_lex_state = 14}, + [8469] = {.lex_state = 7, .external_lex_state = 14}, + [8470] = {.lex_state = 7, .external_lex_state = 14}, + [8471] = {.lex_state = 7, .external_lex_state = 14}, + [8472] = {.lex_state = 7, .external_lex_state = 14}, + [8473] = {.lex_state = 7, .external_lex_state = 14}, + [8474] = {.lex_state = 7, .external_lex_state = 14}, + [8475] = {.lex_state = 7, .external_lex_state = 14}, + [8476] = {.lex_state = 7, .external_lex_state = 14}, + [8477] = {.lex_state = 7, .external_lex_state = 14}, + [8478] = {.lex_state = 7, .external_lex_state = 14}, + [8479] = {.lex_state = 7, .external_lex_state = 13}, + [8480] = {.lex_state = 7, .external_lex_state = 14}, + [8481] = {.lex_state = 7, .external_lex_state = 12}, + [8482] = {.lex_state = 7, .external_lex_state = 12}, + [8483] = {.lex_state = 7, .external_lex_state = 12}, + [8484] = {.lex_state = 7, .external_lex_state = 12}, + [8485] = {.lex_state = 7, .external_lex_state = 12}, + [8486] = {.lex_state = 7, .external_lex_state = 12}, + [8487] = {.lex_state = 7, .external_lex_state = 13}, + [8488] = {.lex_state = 7, .external_lex_state = 13}, + [8489] = {.lex_state = 7, .external_lex_state = 12}, + [8490] = {.lex_state = 7, .external_lex_state = 14}, + [8491] = {.lex_state = 7, .external_lex_state = 11}, + [8492] = {.lex_state = 7, .external_lex_state = 13}, + [8493] = {.lex_state = 7, .external_lex_state = 13}, + [8494] = {.lex_state = 7, .external_lex_state = 13}, + [8495] = {.lex_state = 7, .external_lex_state = 14}, + [8496] = {.lex_state = 7, .external_lex_state = 11}, + [8497] = {.lex_state = 7, .external_lex_state = 14}, + [8498] = {.lex_state = 7, .external_lex_state = 14}, + [8499] = {.lex_state = 7, .external_lex_state = 13}, + [8500] = {.lex_state = 7, .external_lex_state = 14}, + [8501] = {.lex_state = 7, .external_lex_state = 14}, + [8502] = {.lex_state = 7, .external_lex_state = 11}, + [8503] = {.lex_state = 7, .external_lex_state = 11}, + [8504] = {.lex_state = 7, .external_lex_state = 11}, + [8505] = {.lex_state = 7, .external_lex_state = 13}, + [8506] = {.lex_state = 7, .external_lex_state = 13}, + [8507] = {.lex_state = 7, .external_lex_state = 11}, + [8508] = {.lex_state = 7, .external_lex_state = 11}, + [8509] = {.lex_state = 7, .external_lex_state = 11}, + [8510] = {.lex_state = 7, .external_lex_state = 11}, + [8511] = {.lex_state = 7, .external_lex_state = 14}, + [8512] = {.lex_state = 7, .external_lex_state = 13}, + [8513] = {.lex_state = 7, .external_lex_state = 13}, + [8514] = {.lex_state = 7, .external_lex_state = 13}, + [8515] = {.lex_state = 7, .external_lex_state = 13}, + [8516] = {.lex_state = 7, .external_lex_state = 13}, + [8517] = {.lex_state = 7, .external_lex_state = 13}, + [8518] = {.lex_state = 7, .external_lex_state = 13}, + [8519] = {.lex_state = 7, .external_lex_state = 14}, + [8520] = {.lex_state = 7, .external_lex_state = 13}, + [8521] = {.lex_state = 7, .external_lex_state = 14}, + [8522] = {.lex_state = 7, .external_lex_state = 13}, + [8523] = {.lex_state = 7, .external_lex_state = 13}, + [8524] = {.lex_state = 7, .external_lex_state = 13}, + [8525] = {.lex_state = 7, .external_lex_state = 13}, + [8526] = {.lex_state = 7, .external_lex_state = 13}, + [8527] = {.lex_state = 7, .external_lex_state = 13}, + [8528] = {.lex_state = 7, .external_lex_state = 13}, + [8529] = {.lex_state = 7, .external_lex_state = 13}, + [8530] = {.lex_state = 7, .external_lex_state = 14}, + [8531] = {.lex_state = 7, .external_lex_state = 14}, + [8532] = {.lex_state = 7, .external_lex_state = 14}, + [8533] = {.lex_state = 7, .external_lex_state = 14}, + [8534] = {.lex_state = 7, .external_lex_state = 14}, + [8535] = {.lex_state = 7, .external_lex_state = 14}, + [8536] = {.lex_state = 7, .external_lex_state = 12}, + [8537] = {.lex_state = 7, .external_lex_state = 14}, + [8538] = {.lex_state = 7, .external_lex_state = 13}, + [8539] = {.lex_state = 7, .external_lex_state = 13}, + [8540] = {.lex_state = 7, .external_lex_state = 11}, + [8541] = {.lex_state = 7, .external_lex_state = 11}, + [8542] = {.lex_state = 7, .external_lex_state = 11}, + [8543] = {.lex_state = 7, .external_lex_state = 14}, + [8544] = {.lex_state = 7, .external_lex_state = 13}, + [8545] = {.lex_state = 7, .external_lex_state = 11}, + [8546] = {.lex_state = 7, .external_lex_state = 11}, + [8547] = {.lex_state = 7, .external_lex_state = 11}, + [8548] = {.lex_state = 7, .external_lex_state = 12}, + [8549] = {.lex_state = 7, .external_lex_state = 11}, + [8550] = {.lex_state = 7, .external_lex_state = 11}, + [8551] = {.lex_state = 7, .external_lex_state = 14}, + [8552] = {.lex_state = 7, .external_lex_state = 14}, + [8553] = {.lex_state = 7, .external_lex_state = 14}, + [8554] = {.lex_state = 7, .external_lex_state = 14}, + [8555] = {.lex_state = 7, .external_lex_state = 14}, + [8556] = {.lex_state = 7, .external_lex_state = 14}, + [8557] = {.lex_state = 7, .external_lex_state = 14}, + [8558] = {.lex_state = 7, .external_lex_state = 11}, + [8559] = {.lex_state = 7, .external_lex_state = 13}, + [8560] = {.lex_state = 7, .external_lex_state = 11}, + [8561] = {.lex_state = 7, .external_lex_state = 11}, + [8562] = {.lex_state = 7, .external_lex_state = 11}, + [8563] = {.lex_state = 7, .external_lex_state = 11}, + [8564] = {.lex_state = 7, .external_lex_state = 11}, + [8565] = {.lex_state = 7, .external_lex_state = 13}, + [8566] = {.lex_state = 7, .external_lex_state = 13}, + [8567] = {.lex_state = 7, .external_lex_state = 11}, + [8568] = {.lex_state = 7, .external_lex_state = 12}, + [8569] = {.lex_state = 7, .external_lex_state = 12}, + [8570] = {.lex_state = 7, .external_lex_state = 11}, + [8571] = {.lex_state = 7, .external_lex_state = 11}, + [8572] = {.lex_state = 7, .external_lex_state = 13}, + [8573] = {.lex_state = 7, .external_lex_state = 13}, + [8574] = {.lex_state = 7, .external_lex_state = 13}, + [8575] = {.lex_state = 7, .external_lex_state = 13}, + [8576] = {.lex_state = 7, .external_lex_state = 13}, + [8577] = {.lex_state = 7, .external_lex_state = 13}, + [8578] = {.lex_state = 13, .external_lex_state = 13}, + [8579] = {.lex_state = 7, .external_lex_state = 11}, + [8580] = {.lex_state = 7, .external_lex_state = 11}, + [8581] = {.lex_state = 7, .external_lex_state = 11}, + [8582] = {.lex_state = 7, .external_lex_state = 11}, + [8583] = {.lex_state = 7, .external_lex_state = 13}, + [8584] = {.lex_state = 7, .external_lex_state = 11}, + [8585] = {.lex_state = 7, .external_lex_state = 13}, + [8586] = {.lex_state = 7, .external_lex_state = 13}, + [8587] = {.lex_state = 7, .external_lex_state = 11}, + [8588] = {.lex_state = 7, .external_lex_state = 12}, + [8589] = {.lex_state = 7, .external_lex_state = 12}, + [8590] = {.lex_state = 7, .external_lex_state = 11}, + [8591] = {.lex_state = 7, .external_lex_state = 14}, + [8592] = {.lex_state = 7, .external_lex_state = 14}, + [8593] = {.lex_state = 7, .external_lex_state = 14}, + [8594] = {.lex_state = 7, .external_lex_state = 14}, + [8595] = {.lex_state = 7, .external_lex_state = 11}, + [8596] = {.lex_state = 7, .external_lex_state = 14}, + [8597] = {.lex_state = 7, .external_lex_state = 14}, + [8598] = {.lex_state = 7, .external_lex_state = 11}, + [8599] = {.lex_state = 7, .external_lex_state = 11}, + [8600] = {.lex_state = 7, .external_lex_state = 13}, + [8601] = {.lex_state = 7, .external_lex_state = 11}, + [8602] = {.lex_state = 7, .external_lex_state = 11}, + [8603] = {.lex_state = 7, .external_lex_state = 11}, + [8604] = {.lex_state = 7, .external_lex_state = 11}, + [8605] = {.lex_state = 7, .external_lex_state = 14}, + [8606] = {.lex_state = 7, .external_lex_state = 14}, + [8607] = {.lex_state = 7, .external_lex_state = 14}, + [8608] = {.lex_state = 7, .external_lex_state = 14}, + [8609] = {.lex_state = 7, .external_lex_state = 14}, + [8610] = {.lex_state = 7, .external_lex_state = 14}, + [8611] = {.lex_state = 7, .external_lex_state = 13}, + [8612] = {.lex_state = 7, .external_lex_state = 13}, + [8613] = {.lex_state = 7, .external_lex_state = 14}, + [8614] = {.lex_state = 7, .external_lex_state = 14}, + [8615] = {.lex_state = 7, .external_lex_state = 13}, + [8616] = {.lex_state = 7, .external_lex_state = 14}, + [8617] = {.lex_state = 7, .external_lex_state = 13}, + [8618] = {.lex_state = 7, .external_lex_state = 12}, + [8619] = {.lex_state = 7, .external_lex_state = 13}, + [8620] = {.lex_state = 7, .external_lex_state = 13}, + [8621] = {.lex_state = 7, .external_lex_state = 13}, + [8622] = {.lex_state = 7, .external_lex_state = 13}, + [8623] = {.lex_state = 7, .external_lex_state = 13}, + [8624] = {.lex_state = 7, .external_lex_state = 13}, + [8625] = {.lex_state = 7, .external_lex_state = 12}, + [8626] = {.lex_state = 7, .external_lex_state = 13}, + [8627] = {.lex_state = 7, .external_lex_state = 13}, + [8628] = {.lex_state = 7, .external_lex_state = 11}, + [8629] = {.lex_state = 7, .external_lex_state = 11}, + [8630] = {.lex_state = 7, .external_lex_state = 14}, + [8631] = {.lex_state = 7, .external_lex_state = 14}, + [8632] = {.lex_state = 7, .external_lex_state = 14}, + [8633] = {.lex_state = 7, .external_lex_state = 13}, + [8634] = {.lex_state = 7, .external_lex_state = 12}, + [8635] = {.lex_state = 7, .external_lex_state = 12}, + [8636] = {.lex_state = 7, .external_lex_state = 13}, + [8637] = {.lex_state = 7, .external_lex_state = 13}, + [8638] = {.lex_state = 7, .external_lex_state = 14}, + [8639] = {.lex_state = 7, .external_lex_state = 12}, + [8640] = {.lex_state = 7, .external_lex_state = 13}, + [8641] = {.lex_state = 7, .external_lex_state = 14}, + [8642] = {.lex_state = 7, .external_lex_state = 13}, + [8643] = {.lex_state = 7, .external_lex_state = 13}, + [8644] = {.lex_state = 7, .external_lex_state = 13}, + [8645] = {.lex_state = 7, .external_lex_state = 13}, + [8646] = {.lex_state = 7, .external_lex_state = 13}, + [8647] = {.lex_state = 7, .external_lex_state = 12}, + [8648] = {.lex_state = 7, .external_lex_state = 13}, + [8649] = {.lex_state = 7, .external_lex_state = 13}, + [8650] = {.lex_state = 7, .external_lex_state = 13}, + [8651] = {.lex_state = 7, .external_lex_state = 13}, + [8652] = {.lex_state = 7, .external_lex_state = 13}, + [8653] = {.lex_state = 7, .external_lex_state = 12}, + [8654] = {.lex_state = 7, .external_lex_state = 13}, + [8655] = {.lex_state = 7, .external_lex_state = 13}, + [8656] = {.lex_state = 7, .external_lex_state = 13}, + [8657] = {.lex_state = 7, .external_lex_state = 13}, + [8658] = {.lex_state = 7, .external_lex_state = 13}, + [8659] = {.lex_state = 7, .external_lex_state = 13}, + [8660] = {.lex_state = 7, .external_lex_state = 13}, + [8661] = {.lex_state = 7, .external_lex_state = 13}, + [8662] = {.lex_state = 7, .external_lex_state = 13}, + [8663] = {.lex_state = 7, .external_lex_state = 13}, + [8664] = {.lex_state = 7, .external_lex_state = 13}, + [8665] = {.lex_state = 7, .external_lex_state = 12}, + [8666] = {.lex_state = 7, .external_lex_state = 13}, + [8667] = {.lex_state = 7, .external_lex_state = 13}, + [8668] = {.lex_state = 7, .external_lex_state = 13}, + [8669] = {.lex_state = 7, .external_lex_state = 13}, + [8670] = {.lex_state = 7, .external_lex_state = 13}, + [8671] = {.lex_state = 7, .external_lex_state = 13}, + [8672] = {.lex_state = 7, .external_lex_state = 13}, + [8673] = {.lex_state = 7, .external_lex_state = 13}, + [8674] = {.lex_state = 7, .external_lex_state = 13}, + [8675] = {.lex_state = 7, .external_lex_state = 13}, + [8676] = {.lex_state = 7, .external_lex_state = 13}, + [8677] = {.lex_state = 7, .external_lex_state = 12}, + [8678] = {.lex_state = 7, .external_lex_state = 11}, + [8679] = {.lex_state = 7, .external_lex_state = 13}, + [8680] = {.lex_state = 7, .external_lex_state = 13}, + [8681] = {.lex_state = 7, .external_lex_state = 13}, + [8682] = {.lex_state = 7, .external_lex_state = 13}, + [8683] = {.lex_state = 7, .external_lex_state = 13}, + [8684] = {.lex_state = 7, .external_lex_state = 13}, + [8685] = {.lex_state = 7, .external_lex_state = 11}, + [8686] = {.lex_state = 7, .external_lex_state = 12}, + [8687] = {.lex_state = 7, .external_lex_state = 12}, + [8688] = {.lex_state = 7, .external_lex_state = 12}, + [8689] = {.lex_state = 7, .external_lex_state = 13}, + [8690] = {.lex_state = 7, .external_lex_state = 12}, + [8691] = {.lex_state = 7, .external_lex_state = 13}, + [8692] = {.lex_state = 7, .external_lex_state = 13}, + [8693] = {.lex_state = 7, .external_lex_state = 13}, + [8694] = {.lex_state = 7, .external_lex_state = 13}, + [8695] = {.lex_state = 7, .external_lex_state = 13}, + [8696] = {.lex_state = 7, .external_lex_state = 13}, + [8697] = {.lex_state = 7, .external_lex_state = 12}, + [8698] = {.lex_state = 7, .external_lex_state = 12}, + [8699] = {.lex_state = 7, .external_lex_state = 12}, + [8700] = {.lex_state = 7, .external_lex_state = 12}, + [8701] = {.lex_state = 7, .external_lex_state = 12}, + [8702] = {.lex_state = 7, .external_lex_state = 12}, + [8703] = {.lex_state = 7, .external_lex_state = 12}, + [8704] = {.lex_state = 7, .external_lex_state = 12}, + [8705] = {.lex_state = 7, .external_lex_state = 12}, + [8706] = {.lex_state = 7, .external_lex_state = 12}, + [8707] = {.lex_state = 7, .external_lex_state = 12}, + [8708] = {.lex_state = 7, .external_lex_state = 12}, + [8709] = {.lex_state = 7, .external_lex_state = 12}, + [8710] = {.lex_state = 7, .external_lex_state = 12}, + [8711] = {.lex_state = 7, .external_lex_state = 12}, + [8712] = {.lex_state = 7, .external_lex_state = 12}, + [8713] = {.lex_state = 7, .external_lex_state = 12}, + [8714] = {.lex_state = 7, .external_lex_state = 12}, + [8715] = {.lex_state = 7, .external_lex_state = 12}, + [8716] = {.lex_state = 7, .external_lex_state = 12}, + [8717] = {.lex_state = 7, .external_lex_state = 12}, + [8718] = {.lex_state = 7, .external_lex_state = 12}, + [8719] = {.lex_state = 7, .external_lex_state = 12}, + [8720] = {.lex_state = 7, .external_lex_state = 12}, + [8721] = {.lex_state = 7, .external_lex_state = 12}, + [8722] = {.lex_state = 7, .external_lex_state = 12}, + [8723] = {.lex_state = 7, .external_lex_state = 12}, + [8724] = {.lex_state = 7, .external_lex_state = 12}, + [8725] = {.lex_state = 7, .external_lex_state = 12}, + [8726] = {.lex_state = 7, .external_lex_state = 12}, + [8727] = {.lex_state = 7, .external_lex_state = 12}, + [8728] = {.lex_state = 7, .external_lex_state = 12}, + [8729] = {.lex_state = 7, .external_lex_state = 12}, + [8730] = {.lex_state = 7, .external_lex_state = 12}, + [8731] = {.lex_state = 7, .external_lex_state = 12}, + [8732] = {.lex_state = 7, .external_lex_state = 12}, + [8733] = {.lex_state = 7, .external_lex_state = 12}, + [8734] = {.lex_state = 7, .external_lex_state = 12}, + [8735] = {.lex_state = 7, .external_lex_state = 12}, + [8736] = {.lex_state = 7, .external_lex_state = 12}, + [8737] = {.lex_state = 7, .external_lex_state = 12}, + [8738] = {.lex_state = 7, .external_lex_state = 12}, + [8739] = {.lex_state = 7, .external_lex_state = 12}, + [8740] = {.lex_state = 7, .external_lex_state = 12}, + [8741] = {.lex_state = 7, .external_lex_state = 12}, + [8742] = {.lex_state = 7, .external_lex_state = 12}, + [8743] = {.lex_state = 7, .external_lex_state = 12}, + [8744] = {.lex_state = 7, .external_lex_state = 12}, + [8745] = {.lex_state = 7, .external_lex_state = 12}, + [8746] = {.lex_state = 7, .external_lex_state = 12}, + [8747] = {.lex_state = 7, .external_lex_state = 12}, + [8748] = {.lex_state = 7, .external_lex_state = 12}, + [8749] = {.lex_state = 7, .external_lex_state = 12}, + [8750] = {.lex_state = 7, .external_lex_state = 12}, + [8751] = {.lex_state = 7, .external_lex_state = 12}, + [8752] = {.lex_state = 7, .external_lex_state = 12}, + [8753] = {.lex_state = 7, .external_lex_state = 12}, + [8754] = {.lex_state = 7, .external_lex_state = 12}, + [8755] = {.lex_state = 7, .external_lex_state = 12}, + [8756] = {.lex_state = 7, .external_lex_state = 12}, + [8757] = {.lex_state = 7, .external_lex_state = 12}, + [8758] = {.lex_state = 7, .external_lex_state = 12}, + [8759] = {.lex_state = 7, .external_lex_state = 12}, + [8760] = {.lex_state = 7, .external_lex_state = 12}, + [8761] = {.lex_state = 7, .external_lex_state = 12}, + [8762] = {.lex_state = 7, .external_lex_state = 12}, + [8763] = {.lex_state = 7, .external_lex_state = 12}, + [8764] = {.lex_state = 7, .external_lex_state = 12}, + [8765] = {.lex_state = 7, .external_lex_state = 13}, + [8766] = {.lex_state = 7, .external_lex_state = 12}, + [8767] = {.lex_state = 7, .external_lex_state = 12}, + [8768] = {.lex_state = 7, .external_lex_state = 12}, + [8769] = {.lex_state = 7, .external_lex_state = 12}, + [8770] = {.lex_state = 7, .external_lex_state = 12}, + [8771] = {.lex_state = 7, .external_lex_state = 12}, + [8772] = {.lex_state = 7, .external_lex_state = 12}, + [8773] = {.lex_state = 7, .external_lex_state = 12}, + [8774] = {.lex_state = 7, .external_lex_state = 12}, + [8775] = {.lex_state = 7, .external_lex_state = 12}, + [8776] = {.lex_state = 7, .external_lex_state = 12}, + [8777] = {.lex_state = 7, .external_lex_state = 12}, + [8778] = {.lex_state = 7, .external_lex_state = 12}, + [8779] = {.lex_state = 7, .external_lex_state = 12}, + [8780] = {.lex_state = 7, .external_lex_state = 12}, + [8781] = {.lex_state = 7, .external_lex_state = 12}, + [8782] = {.lex_state = 7, .external_lex_state = 12}, + [8783] = {.lex_state = 7, .external_lex_state = 12}, + [8784] = {.lex_state = 7, .external_lex_state = 12}, + [8785] = {.lex_state = 7, .external_lex_state = 12}, + [8786] = {.lex_state = 7, .external_lex_state = 12}, + [8787] = {.lex_state = 7, .external_lex_state = 12}, + [8788] = {.lex_state = 7, .external_lex_state = 12}, + [8789] = {.lex_state = 7, .external_lex_state = 12}, + [8790] = {.lex_state = 7, .external_lex_state = 12}, + [8791] = {.lex_state = 7, .external_lex_state = 12}, + [8792] = {.lex_state = 7, .external_lex_state = 12}, + [8793] = {.lex_state = 7, .external_lex_state = 12}, + [8794] = {.lex_state = 7, .external_lex_state = 12}, + [8795] = {.lex_state = 7, .external_lex_state = 12}, + [8796] = {.lex_state = 7, .external_lex_state = 12}, + [8797] = {.lex_state = 7, .external_lex_state = 12}, + [8798] = {.lex_state = 7, .external_lex_state = 12}, + [8799] = {.lex_state = 7, .external_lex_state = 12}, + [8800] = {.lex_state = 7, .external_lex_state = 12}, + [8801] = {.lex_state = 7, .external_lex_state = 12}, + [8802] = {.lex_state = 7, .external_lex_state = 12}, + [8803] = {.lex_state = 7, .external_lex_state = 12}, + [8804] = {.lex_state = 7, .external_lex_state = 12}, + [8805] = {.lex_state = 7, .external_lex_state = 12}, + [8806] = {.lex_state = 7, .external_lex_state = 12}, + [8807] = {.lex_state = 7, .external_lex_state = 12}, + [8808] = {.lex_state = 7, .external_lex_state = 12}, + [8809] = {.lex_state = 7, .external_lex_state = 12}, + [8810] = {.lex_state = 7, .external_lex_state = 12}, + [8811] = {.lex_state = 7, .external_lex_state = 12}, + [8812] = {.lex_state = 7, .external_lex_state = 12}, + [8813] = {.lex_state = 7, .external_lex_state = 12}, + [8814] = {.lex_state = 7, .external_lex_state = 12}, + [8815] = {.lex_state = 7, .external_lex_state = 12}, + [8816] = {.lex_state = 7, .external_lex_state = 12}, + [8817] = {.lex_state = 7, .external_lex_state = 12}, + [8818] = {.lex_state = 7, .external_lex_state = 12}, + [8819] = {.lex_state = 7, .external_lex_state = 12}, + [8820] = {.lex_state = 7, .external_lex_state = 12}, + [8821] = {.lex_state = 7, .external_lex_state = 12}, + [8822] = {.lex_state = 7, .external_lex_state = 12}, + [8823] = {.lex_state = 7, .external_lex_state = 12}, + [8824] = {.lex_state = 7, .external_lex_state = 12}, + [8825] = {.lex_state = 7, .external_lex_state = 12}, + [8826] = {.lex_state = 7, .external_lex_state = 13}, + [8827] = {.lex_state = 7, .external_lex_state = 13}, + [8828] = {.lex_state = 7, .external_lex_state = 13}, + [8829] = {.lex_state = 7, .external_lex_state = 13}, + [8830] = {.lex_state = 7, .external_lex_state = 13}, + [8831] = {.lex_state = 7, .external_lex_state = 13}, + [8832] = {.lex_state = 7, .external_lex_state = 13}, + [8833] = {.lex_state = 7, .external_lex_state = 13}, + [8834] = {.lex_state = 7, .external_lex_state = 13}, + [8835] = {.lex_state = 7, .external_lex_state = 13}, + [8836] = {.lex_state = 7, .external_lex_state = 13}, + [8837] = {.lex_state = 7, .external_lex_state = 13}, + [8838] = {.lex_state = 7, .external_lex_state = 13}, + [8839] = {.lex_state = 7, .external_lex_state = 13}, + [8840] = {.lex_state = 7, .external_lex_state = 13}, + [8841] = {.lex_state = 7, .external_lex_state = 13}, + [8842] = {.lex_state = 7, .external_lex_state = 13}, + [8843] = {.lex_state = 7, .external_lex_state = 13}, + [8844] = {.lex_state = 7, .external_lex_state = 12}, + [8845] = {.lex_state = 7, .external_lex_state = 13}, + [8846] = {.lex_state = 7, .external_lex_state = 12}, + [8847] = {.lex_state = 7, .external_lex_state = 12}, + [8848] = {.lex_state = 7, .external_lex_state = 11}, + [8849] = {.lex_state = 7, .external_lex_state = 12}, + [8850] = {.lex_state = 7, .external_lex_state = 12}, + [8851] = {.lex_state = 7, .external_lex_state = 12}, + [8852] = {.lex_state = 7, .external_lex_state = 12}, + [8853] = {.lex_state = 7, .external_lex_state = 12}, + [8854] = {.lex_state = 7, .external_lex_state = 12}, + [8855] = {.lex_state = 7, .external_lex_state = 12}, + [8856] = {.lex_state = 7, .external_lex_state = 12}, + [8857] = {.lex_state = 7, .external_lex_state = 12}, + [8858] = {.lex_state = 7, .external_lex_state = 12}, + [8859] = {.lex_state = 7, .external_lex_state = 12}, + [8860] = {.lex_state = 7, .external_lex_state = 12}, + [8861] = {.lex_state = 7, .external_lex_state = 12}, + [8862] = {.lex_state = 7, .external_lex_state = 12}, + [8863] = {.lex_state = 7, .external_lex_state = 12}, + [8864] = {.lex_state = 7, .external_lex_state = 12}, + [8865] = {.lex_state = 7, .external_lex_state = 12}, + [8866] = {.lex_state = 7, .external_lex_state = 12}, + [8867] = {.lex_state = 7, .external_lex_state = 12}, + [8868] = {.lex_state = 7, .external_lex_state = 12}, + [8869] = {.lex_state = 7, .external_lex_state = 12}, + [8870] = {.lex_state = 7, .external_lex_state = 12}, + [8871] = {.lex_state = 7, .external_lex_state = 12}, + [8872] = {.lex_state = 7, .external_lex_state = 12}, + [8873] = {.lex_state = 7, .external_lex_state = 12}, + [8874] = {.lex_state = 7, .external_lex_state = 12}, + [8875] = {.lex_state = 7, .external_lex_state = 12}, + [8876] = {.lex_state = 7, .external_lex_state = 12}, + [8877] = {.lex_state = 7, .external_lex_state = 12}, + [8878] = {.lex_state = 7, .external_lex_state = 12}, + [8879] = {.lex_state = 7, .external_lex_state = 12}, + [8880] = {.lex_state = 7, .external_lex_state = 12}, + [8881] = {.lex_state = 7, .external_lex_state = 12}, + [8882] = {.lex_state = 7, .external_lex_state = 12}, + [8883] = {.lex_state = 7, .external_lex_state = 12}, + [8884] = {.lex_state = 7, .external_lex_state = 12}, + [8885] = {.lex_state = 7, .external_lex_state = 12}, + [8886] = {.lex_state = 7, .external_lex_state = 14}, + [8887] = {.lex_state = 7, .external_lex_state = 11}, + [8888] = {.lex_state = 7, .external_lex_state = 14}, + [8889] = {.lex_state = 7, .external_lex_state = 14}, + [8890] = {.lex_state = 7, .external_lex_state = 11}, + [8891] = {.lex_state = 7, .external_lex_state = 11}, + [8892] = {.lex_state = 7, .external_lex_state = 11}, + [8893] = {.lex_state = 7, .external_lex_state = 11}, + [8894] = {.lex_state = 7, .external_lex_state = 11}, + [8895] = {.lex_state = 7, .external_lex_state = 11}, + [8896] = {.lex_state = 7, .external_lex_state = 11}, + [8897] = {.lex_state = 7, .external_lex_state = 11}, + [8898] = {.lex_state = 7, .external_lex_state = 11}, + [8899] = {.lex_state = 7, .external_lex_state = 11}, + [8900] = {.lex_state = 7, .external_lex_state = 11}, + [8901] = {.lex_state = 7, .external_lex_state = 11}, + [8902] = {.lex_state = 7, .external_lex_state = 11}, + [8903] = {.lex_state = 7, .external_lex_state = 11}, + [8904] = {.lex_state = 7, .external_lex_state = 11}, + [8905] = {.lex_state = 7, .external_lex_state = 11}, + [8906] = {.lex_state = 7, .external_lex_state = 11}, + [8907] = {.lex_state = 7, .external_lex_state = 11}, + [8908] = {.lex_state = 7, .external_lex_state = 11}, + [8909] = {.lex_state = 7, .external_lex_state = 11}, + [8910] = {.lex_state = 7, .external_lex_state = 11}, + [8911] = {.lex_state = 7, .external_lex_state = 11}, + [8912] = {.lex_state = 7, .external_lex_state = 11}, + [8913] = {.lex_state = 7, .external_lex_state = 11}, + [8914] = {.lex_state = 7, .external_lex_state = 11}, + [8915] = {.lex_state = 7, .external_lex_state = 11}, + [8916] = {.lex_state = 7, .external_lex_state = 11}, + [8917] = {.lex_state = 7, .external_lex_state = 11}, + [8918] = {.lex_state = 7, .external_lex_state = 11}, + [8919] = {.lex_state = 7, .external_lex_state = 11}, + [8920] = {.lex_state = 7, .external_lex_state = 11}, + [8921] = {.lex_state = 7, .external_lex_state = 11}, + [8922] = {.lex_state = 7, .external_lex_state = 11}, + [8923] = {.lex_state = 7, .external_lex_state = 11}, + [8924] = {.lex_state = 7, .external_lex_state = 11}, + [8925] = {.lex_state = 7, .external_lex_state = 11}, + [8926] = {.lex_state = 7, .external_lex_state = 11}, + [8927] = {.lex_state = 7, .external_lex_state = 13}, + [8928] = {.lex_state = 7, .external_lex_state = 11}, + [8929] = {.lex_state = 7, .external_lex_state = 11}, + [8930] = {.lex_state = 7, .external_lex_state = 11}, + [8931] = {.lex_state = 7, .external_lex_state = 11}, + [8932] = {.lex_state = 7, .external_lex_state = 11}, + [8933] = {.lex_state = 7, .external_lex_state = 11}, + [8934] = {.lex_state = 7, .external_lex_state = 11}, + [8935] = {.lex_state = 7, .external_lex_state = 11}, + [8936] = {.lex_state = 7, .external_lex_state = 11}, + [8937] = {.lex_state = 7, .external_lex_state = 13}, + [8938] = {.lex_state = 7, .external_lex_state = 11}, + [8939] = {.lex_state = 7, .external_lex_state = 11}, + [8940] = {.lex_state = 7, .external_lex_state = 11}, + [8941] = {.lex_state = 7, .external_lex_state = 11}, + [8942] = {.lex_state = 7, .external_lex_state = 11}, + [8943] = {.lex_state = 7, .external_lex_state = 11}, + [8944] = {.lex_state = 7, .external_lex_state = 11}, + [8945] = {.lex_state = 7, .external_lex_state = 11}, + [8946] = {.lex_state = 7, .external_lex_state = 11}, + [8947] = {.lex_state = 7, .external_lex_state = 11}, + [8948] = {.lex_state = 7, .external_lex_state = 13}, + [8949] = {.lex_state = 7, .external_lex_state = 11}, + [8950] = {.lex_state = 7, .external_lex_state = 11}, + [8951] = {.lex_state = 7, .external_lex_state = 11}, + [8952] = {.lex_state = 7, .external_lex_state = 11}, + [8953] = {.lex_state = 7, .external_lex_state = 11}, + [8954] = {.lex_state = 7, .external_lex_state = 11}, + [8955] = {.lex_state = 7, .external_lex_state = 11}, + [8956] = {.lex_state = 7, .external_lex_state = 11}, + [8957] = {.lex_state = 7, .external_lex_state = 11}, + [8958] = {.lex_state = 7, .external_lex_state = 11}, + [8959] = {.lex_state = 7, .external_lex_state = 11}, + [8960] = {.lex_state = 7, .external_lex_state = 11}, + [8961] = {.lex_state = 7, .external_lex_state = 11}, + [8962] = {.lex_state = 7, .external_lex_state = 11}, + [8963] = {.lex_state = 7, .external_lex_state = 11}, + [8964] = {.lex_state = 7, .external_lex_state = 11}, + [8965] = {.lex_state = 7, .external_lex_state = 11}, + [8966] = {.lex_state = 7, .external_lex_state = 13}, + [8967] = {.lex_state = 7, .external_lex_state = 11}, + [8968] = {.lex_state = 7, .external_lex_state = 11}, + [8969] = {.lex_state = 7, .external_lex_state = 11}, + [8970] = {.lex_state = 7, .external_lex_state = 13}, + [8971] = {.lex_state = 7, .external_lex_state = 11}, + [8972] = {.lex_state = 7, .external_lex_state = 11}, + [8973] = {.lex_state = 7, .external_lex_state = 11}, + [8974] = {.lex_state = 7, .external_lex_state = 11}, + [8975] = {.lex_state = 7, .external_lex_state = 11}, + [8976] = {.lex_state = 7, .external_lex_state = 11}, + [8977] = {.lex_state = 7, .external_lex_state = 11}, + [8978] = {.lex_state = 7, .external_lex_state = 11}, + [8979] = {.lex_state = 7, .external_lex_state = 11}, + [8980] = {.lex_state = 7, .external_lex_state = 11}, + [8981] = {.lex_state = 7, .external_lex_state = 11}, + [8982] = {.lex_state = 7, .external_lex_state = 11}, + [8983] = {.lex_state = 7, .external_lex_state = 11}, + [8984] = {.lex_state = 7, .external_lex_state = 11}, + [8985] = {.lex_state = 7, .external_lex_state = 11}, + [8986] = {.lex_state = 7, .external_lex_state = 11}, + [8987] = {.lex_state = 7, .external_lex_state = 11}, + [8988] = {.lex_state = 7, .external_lex_state = 11}, + [8989] = {.lex_state = 7, .external_lex_state = 11}, + [8990] = {.lex_state = 7, .external_lex_state = 11}, + [8991] = {.lex_state = 7, .external_lex_state = 11}, + [8992] = {.lex_state = 7, .external_lex_state = 11}, + [8993] = {.lex_state = 7, .external_lex_state = 11}, + [8994] = {.lex_state = 7, .external_lex_state = 11}, + [8995] = {.lex_state = 7, .external_lex_state = 11}, + [8996] = {.lex_state = 7, .external_lex_state = 11}, + [8997] = {.lex_state = 7, .external_lex_state = 11}, + [8998] = {.lex_state = 7, .external_lex_state = 11}, + [8999] = {.lex_state = 7, .external_lex_state = 11}, + [9000] = {.lex_state = 7, .external_lex_state = 11}, + [9001] = {.lex_state = 7, .external_lex_state = 11}, + [9002] = {.lex_state = 7, .external_lex_state = 13}, + [9003] = {.lex_state = 7, .external_lex_state = 11}, + [9004] = {.lex_state = 7, .external_lex_state = 11}, + [9005] = {.lex_state = 7, .external_lex_state = 11}, + [9006] = {.lex_state = 7, .external_lex_state = 13}, + [9007] = {.lex_state = 7, .external_lex_state = 13}, + [9008] = {.lex_state = 7, .external_lex_state = 13}, + [9009] = {.lex_state = 7, .external_lex_state = 14}, + [9010] = {.lex_state = 7, .external_lex_state = 13}, + [9011] = {.lex_state = 7, .external_lex_state = 13}, + [9012] = {.lex_state = 7, .external_lex_state = 11}, + [9013] = {.lex_state = 7, .external_lex_state = 13}, + [9014] = {.lex_state = 7, .external_lex_state = 13}, + [9015] = {.lex_state = 7, .external_lex_state = 11}, + [9016] = {.lex_state = 7, .external_lex_state = 14}, + [9017] = {.lex_state = 7, .external_lex_state = 11}, + [9018] = {.lex_state = 7, .external_lex_state = 11}, + [9019] = {.lex_state = 7, .external_lex_state = 13}, + [9020] = {.lex_state = 7, .external_lex_state = 12}, + [9021] = {.lex_state = 7, .external_lex_state = 13}, + [9022] = {.lex_state = 7, .external_lex_state = 13}, + [9023] = {.lex_state = 7, .external_lex_state = 13}, + [9024] = {.lex_state = 7, .external_lex_state = 14}, + [9025] = {.lex_state = 7, .external_lex_state = 13}, + [9026] = {.lex_state = 7, .external_lex_state = 13}, + [9027] = {.lex_state = 7, .external_lex_state = 14}, + [9028] = {.lex_state = 7, .external_lex_state = 12}, + [9029] = {.lex_state = 7, .external_lex_state = 12}, + [9030] = {.lex_state = 7, .external_lex_state = 13}, + [9031] = {.lex_state = 7, .external_lex_state = 14}, + [9032] = {.lex_state = 7, .external_lex_state = 13}, + [9033] = {.lex_state = 7, .external_lex_state = 14}, + [9034] = {.lex_state = 7, .external_lex_state = 13}, + [9035] = {.lex_state = 7, .external_lex_state = 13}, + [9036] = {.lex_state = 7, .external_lex_state = 13}, + [9037] = {.lex_state = 7, .external_lex_state = 13}, + [9038] = {.lex_state = 7, .external_lex_state = 13}, + [9039] = {.lex_state = 7, .external_lex_state = 11}, + [9040] = {.lex_state = 7, .external_lex_state = 13}, + [9041] = {.lex_state = 7, .external_lex_state = 13}, + [9042] = {.lex_state = 7, .external_lex_state = 13}, + [9043] = {.lex_state = 7, .external_lex_state = 13}, + [9044] = {.lex_state = 7, .external_lex_state = 13}, + [9045] = {.lex_state = 7, .external_lex_state = 13}, + [9046] = {.lex_state = 7, .external_lex_state = 13}, + [9047] = {.lex_state = 7, .external_lex_state = 13}, + [9048] = {.lex_state = 7, .external_lex_state = 13}, + [9049] = {.lex_state = 7, .external_lex_state = 13}, + [9050] = {.lex_state = 7, .external_lex_state = 13}, + [9051] = {.lex_state = 7, .external_lex_state = 13}, + [9052] = {.lex_state = 7, .external_lex_state = 14}, + [9053] = {.lex_state = 7, .external_lex_state = 13}, + [9054] = {.lex_state = 7, .external_lex_state = 14}, + [9055] = {.lex_state = 7, .external_lex_state = 14}, + [9056] = {.lex_state = 7, .external_lex_state = 13}, + [9057] = {.lex_state = 7, .external_lex_state = 13}, + [9058] = {.lex_state = 7, .external_lex_state = 13}, + [9059] = {.lex_state = 7, .external_lex_state = 11}, + [9060] = {.lex_state = 7, .external_lex_state = 15}, + [9061] = {.lex_state = 7, .external_lex_state = 15}, + [9062] = {.lex_state = 7, .external_lex_state = 11}, + [9063] = {.lex_state = 7, .external_lex_state = 13}, + [9064] = {.lex_state = 7, .external_lex_state = 14}, + [9065] = {.lex_state = 7, .external_lex_state = 11}, + [9066] = {.lex_state = 7, .external_lex_state = 11}, + [9067] = {.lex_state = 7, .external_lex_state = 15}, + [9068] = {.lex_state = 7, .external_lex_state = 13}, + [9069] = {.lex_state = 7, .external_lex_state = 13}, + [9070] = {.lex_state = 7, .external_lex_state = 11}, + [9071] = {.lex_state = 7, .external_lex_state = 13}, + [9072] = {.lex_state = 7, .external_lex_state = 13}, + [9073] = {.lex_state = 7, .external_lex_state = 13}, + [9074] = {.lex_state = 7, .external_lex_state = 13}, + [9075] = {.lex_state = 7, .external_lex_state = 13}, + [9076] = {.lex_state = 7, .external_lex_state = 13}, + [9077] = {.lex_state = 7, .external_lex_state = 13}, + [9078] = {.lex_state = 7, .external_lex_state = 13}, + [9079] = {.lex_state = 7, .external_lex_state = 13}, + [9080] = {.lex_state = 7, .external_lex_state = 13}, + [9081] = {.lex_state = 7, .external_lex_state = 13}, + [9082] = {.lex_state = 7, .external_lex_state = 13}, + [9083] = {.lex_state = 7, .external_lex_state = 13}, + [9084] = {.lex_state = 7, .external_lex_state = 13}, + [9085] = {.lex_state = 7, .external_lex_state = 13}, + [9086] = {.lex_state = 7, .external_lex_state = 13}, + [9087] = {.lex_state = 7, .external_lex_state = 13}, + [9088] = {.lex_state = 7, .external_lex_state = 13}, + [9089] = {.lex_state = 7, .external_lex_state = 13}, + [9090] = {.lex_state = 7, .external_lex_state = 11}, + [9091] = {.lex_state = 7, .external_lex_state = 13}, + [9092] = {.lex_state = 7, .external_lex_state = 14}, + [9093] = {.lex_state = 7, .external_lex_state = 13}, + [9094] = {.lex_state = 7, .external_lex_state = 13}, + [9095] = {.lex_state = 7, .external_lex_state = 13}, + [9096] = {.lex_state = 7, .external_lex_state = 13}, + [9097] = {.lex_state = 7, .external_lex_state = 13}, + [9098] = {.lex_state = 7, .external_lex_state = 13}, + [9099] = {.lex_state = 7, .external_lex_state = 11}, + [9100] = {.lex_state = 7, .external_lex_state = 13}, + [9101] = {.lex_state = 7, .external_lex_state = 13}, + [9102] = {.lex_state = 7, .external_lex_state = 13}, + [9103] = {.lex_state = 7, .external_lex_state = 13}, + [9104] = {.lex_state = 7, .external_lex_state = 12}, + [9105] = {.lex_state = 7, .external_lex_state = 14}, + [9106] = {.lex_state = 7, .external_lex_state = 15}, + [9107] = {.lex_state = 7, .external_lex_state = 14}, + [9108] = {.lex_state = 7, .external_lex_state = 15}, + [9109] = {.lex_state = 7, .external_lex_state = 13}, + [9110] = {.lex_state = 7, .external_lex_state = 13}, + [9111] = {.lex_state = 7, .external_lex_state = 13}, + [9112] = {.lex_state = 7, .external_lex_state = 13}, + [9113] = {.lex_state = 7, .external_lex_state = 13}, + [9114] = {.lex_state = 7, .external_lex_state = 13}, + [9115] = {.lex_state = 7, .external_lex_state = 13}, + [9116] = {.lex_state = 7, .external_lex_state = 13}, + [9117] = {.lex_state = 7, .external_lex_state = 13}, + [9118] = {.lex_state = 7, .external_lex_state = 13}, + [9119] = {.lex_state = 7, .external_lex_state = 13}, + [9120] = {.lex_state = 7, .external_lex_state = 13}, + [9121] = {.lex_state = 7, .external_lex_state = 13}, + [9122] = {.lex_state = 7, .external_lex_state = 13}, + [9123] = {.lex_state = 7, .external_lex_state = 13}, + [9124] = {.lex_state = 7, .external_lex_state = 13}, + [9125] = {.lex_state = 7, .external_lex_state = 13}, + [9126] = {.lex_state = 7, .external_lex_state = 14}, + [9127] = {.lex_state = 7, .external_lex_state = 13}, + [9128] = {.lex_state = 7, .external_lex_state = 14}, + [9129] = {.lex_state = 7, .external_lex_state = 13}, + [9130] = {.lex_state = 7, .external_lex_state = 13}, + [9131] = {.lex_state = 7, .external_lex_state = 13}, + [9132] = {.lex_state = 7, .external_lex_state = 13}, + [9133] = {.lex_state = 7, .external_lex_state = 13}, + [9134] = {.lex_state = 7, .external_lex_state = 13}, + [9135] = {.lex_state = 7, .external_lex_state = 13}, + [9136] = {.lex_state = 7, .external_lex_state = 13}, + [9137] = {.lex_state = 7, .external_lex_state = 13}, + [9138] = {.lex_state = 7, .external_lex_state = 14}, + [9139] = {.lex_state = 7, .external_lex_state = 14}, + [9140] = {.lex_state = 7, .external_lex_state = 14}, + [9141] = {.lex_state = 7, .external_lex_state = 14}, + [9142] = {.lex_state = 7, .external_lex_state = 14}, + [9143] = {.lex_state = 7, .external_lex_state = 14}, + [9144] = {.lex_state = 7, .external_lex_state = 14}, + [9145] = {.lex_state = 7, .external_lex_state = 14}, + [9146] = {.lex_state = 7, .external_lex_state = 14}, + [9147] = {.lex_state = 7, .external_lex_state = 14}, + [9148] = {.lex_state = 7, .external_lex_state = 14}, + [9149] = {.lex_state = 7, .external_lex_state = 14}, + [9150] = {.lex_state = 7, .external_lex_state = 14}, + [9151] = {.lex_state = 7, .external_lex_state = 14}, + [9152] = {.lex_state = 7, .external_lex_state = 14}, + [9153] = {.lex_state = 7, .external_lex_state = 14}, + [9154] = {.lex_state = 7, .external_lex_state = 14}, + [9155] = {.lex_state = 7, .external_lex_state = 14}, + [9156] = {.lex_state = 7, .external_lex_state = 14}, + [9157] = {.lex_state = 7, .external_lex_state = 14}, + [9158] = {.lex_state = 7, .external_lex_state = 14}, + [9159] = {.lex_state = 7, .external_lex_state = 14}, + [9160] = {.lex_state = 7, .external_lex_state = 14}, + [9161] = {.lex_state = 7, .external_lex_state = 14}, + [9162] = {.lex_state = 7, .external_lex_state = 14}, + [9163] = {.lex_state = 7, .external_lex_state = 14}, + [9164] = {.lex_state = 7, .external_lex_state = 14}, + [9165] = {.lex_state = 7, .external_lex_state = 14}, + [9166] = {.lex_state = 7, .external_lex_state = 14}, + [9167] = {.lex_state = 7, .external_lex_state = 14}, + [9168] = {.lex_state = 7, .external_lex_state = 14}, + [9169] = {.lex_state = 7, .external_lex_state = 14}, + [9170] = {.lex_state = 7, .external_lex_state = 14}, + [9171] = {.lex_state = 7, .external_lex_state = 14}, + [9172] = {.lex_state = 7, .external_lex_state = 14}, + [9173] = {.lex_state = 7, .external_lex_state = 14}, + [9174] = {.lex_state = 7, .external_lex_state = 14}, + [9175] = {.lex_state = 7, .external_lex_state = 14}, + [9176] = {.lex_state = 7, .external_lex_state = 14}, + [9177] = {.lex_state = 7, .external_lex_state = 14}, + [9178] = {.lex_state = 7, .external_lex_state = 14}, + [9179] = {.lex_state = 7, .external_lex_state = 14}, + [9180] = {.lex_state = 7, .external_lex_state = 13}, + [9181] = {.lex_state = 7, .external_lex_state = 14}, + [9182] = {.lex_state = 7, .external_lex_state = 14}, + [9183] = {.lex_state = 7, .external_lex_state = 14}, + [9184] = {.lex_state = 7, .external_lex_state = 14}, + [9185] = {.lex_state = 7, .external_lex_state = 14}, + [9186] = {.lex_state = 7, .external_lex_state = 14}, + [9187] = {.lex_state = 7, .external_lex_state = 14}, + [9188] = {.lex_state = 7, .external_lex_state = 14}, + [9189] = {.lex_state = 7, .external_lex_state = 14}, + [9190] = {.lex_state = 7, .external_lex_state = 14}, + [9191] = {.lex_state = 7, .external_lex_state = 14}, + [9192] = {.lex_state = 7, .external_lex_state = 14}, + [9193] = {.lex_state = 7, .external_lex_state = 14}, + [9194] = {.lex_state = 7, .external_lex_state = 14}, + [9195] = {.lex_state = 7, .external_lex_state = 14}, + [9196] = {.lex_state = 7, .external_lex_state = 14}, + [9197] = {.lex_state = 7, .external_lex_state = 14}, + [9198] = {.lex_state = 7, .external_lex_state = 14}, + [9199] = {.lex_state = 7, .external_lex_state = 13}, + [9200] = {.lex_state = 7, .external_lex_state = 14}, + [9201] = {.lex_state = 7, .external_lex_state = 14}, + [9202] = {.lex_state = 7, .external_lex_state = 15}, + [9203] = {.lex_state = 7, .external_lex_state = 14}, + [9204] = {.lex_state = 7, .external_lex_state = 14}, + [9205] = {.lex_state = 7, .external_lex_state = 14}, + [9206] = {.lex_state = 7, .external_lex_state = 14}, + [9207] = {.lex_state = 7, .external_lex_state = 14}, + [9208] = {.lex_state = 7, .external_lex_state = 14}, + [9209] = {.lex_state = 7, .external_lex_state = 14}, + [9210] = {.lex_state = 7, .external_lex_state = 14}, + [9211] = {.lex_state = 7, .external_lex_state = 14}, + [9212] = {.lex_state = 7, .external_lex_state = 14}, + [9213] = {.lex_state = 7, .external_lex_state = 14}, + [9214] = {.lex_state = 7, .external_lex_state = 14}, + [9215] = {.lex_state = 7, .external_lex_state = 14}, + [9216] = {.lex_state = 7, .external_lex_state = 14}, + [9217] = {.lex_state = 7, .external_lex_state = 14}, + [9218] = {.lex_state = 7, .external_lex_state = 14}, + [9219] = {.lex_state = 7, .external_lex_state = 14}, + [9220] = {.lex_state = 7, .external_lex_state = 14}, + [9221] = {.lex_state = 7, .external_lex_state = 14}, + [9222] = {.lex_state = 7, .external_lex_state = 14}, + [9223] = {.lex_state = 7, .external_lex_state = 14}, + [9224] = {.lex_state = 7, .external_lex_state = 14}, + [9225] = {.lex_state = 7, .external_lex_state = 14}, + [9226] = {.lex_state = 7, .external_lex_state = 14}, + [9227] = {.lex_state = 7, .external_lex_state = 14}, + [9228] = {.lex_state = 7, .external_lex_state = 14}, + [9229] = {.lex_state = 7, .external_lex_state = 14}, + [9230] = {.lex_state = 7, .external_lex_state = 14}, + [9231] = {.lex_state = 7, .external_lex_state = 14}, + [9232] = {.lex_state = 7, .external_lex_state = 14}, + [9233] = {.lex_state = 7, .external_lex_state = 14}, + [9234] = {.lex_state = 7, .external_lex_state = 14}, + [9235] = {.lex_state = 7, .external_lex_state = 14}, + [9236] = {.lex_state = 7, .external_lex_state = 14}, + [9237] = {.lex_state = 7, .external_lex_state = 14}, + [9238] = {.lex_state = 7, .external_lex_state = 14}, + [9239] = {.lex_state = 7, .external_lex_state = 14}, + [9240] = {.lex_state = 7, .external_lex_state = 14}, + [9241] = {.lex_state = 7, .external_lex_state = 14}, + [9242] = {.lex_state = 7, .external_lex_state = 14}, + [9243] = {.lex_state = 7, .external_lex_state = 14}, + [9244] = {.lex_state = 7, .external_lex_state = 14}, + [9245] = {.lex_state = 7, .external_lex_state = 14}, + [9246] = {.lex_state = 7, .external_lex_state = 14}, + [9247] = {.lex_state = 7, .external_lex_state = 14}, + [9248] = {.lex_state = 7, .external_lex_state = 14}, + [9249] = {.lex_state = 7, .external_lex_state = 14}, + [9250] = {.lex_state = 7, .external_lex_state = 14}, + [9251] = {.lex_state = 7, .external_lex_state = 14}, + [9252] = {.lex_state = 7, .external_lex_state = 14}, + [9253] = {.lex_state = 7, .external_lex_state = 14}, + [9254] = {.lex_state = 7, .external_lex_state = 14}, + [9255] = {.lex_state = 7, .external_lex_state = 14}, + [9256] = {.lex_state = 7, .external_lex_state = 14}, + [9257] = {.lex_state = 7, .external_lex_state = 14}, + [9258] = {.lex_state = 7, .external_lex_state = 14}, + [9259] = {.lex_state = 7, .external_lex_state = 14}, + [9260] = {.lex_state = 7, .external_lex_state = 14}, + [9261] = {.lex_state = 7, .external_lex_state = 14}, + [9262] = {.lex_state = 7, .external_lex_state = 14}, + [9263] = {.lex_state = 7, .external_lex_state = 14}, + [9264] = {.lex_state = 7, .external_lex_state = 14}, + [9265] = {.lex_state = 7, .external_lex_state = 14}, + [9266] = {.lex_state = 7, .external_lex_state = 14}, + [9267] = {.lex_state = 7, .external_lex_state = 13}, + [9268] = {.lex_state = 7, .external_lex_state = 13}, + [9269] = {.lex_state = 7, .external_lex_state = 13}, + [9270] = {.lex_state = 7, .external_lex_state = 13}, + [9271] = {.lex_state = 7, .external_lex_state = 13}, + [9272] = {.lex_state = 7, .external_lex_state = 13}, + [9273] = {.lex_state = 7, .external_lex_state = 15}, + [9274] = {.lex_state = 7, .external_lex_state = 13}, + [9275] = {.lex_state = 7, .external_lex_state = 13}, + [9276] = {.lex_state = 7, .external_lex_state = 12}, + [9277] = {.lex_state = 7, .external_lex_state = 13}, + [9278] = {.lex_state = 7, .external_lex_state = 13}, + [9279] = {.lex_state = 7, .external_lex_state = 13}, + [9280] = {.lex_state = 7, .external_lex_state = 13}, + [9281] = {.lex_state = 7, .external_lex_state = 13}, + [9282] = {.lex_state = 7, .external_lex_state = 13}, + [9283] = {.lex_state = 7, .external_lex_state = 13}, + [9284] = {.lex_state = 7, .external_lex_state = 13}, + [9285] = {.lex_state = 7, .external_lex_state = 13}, + [9286] = {.lex_state = 7, .external_lex_state = 11}, + [9287] = {.lex_state = 7, .external_lex_state = 13}, + [9288] = {.lex_state = 7, .external_lex_state = 13}, + [9289] = {.lex_state = 7, .external_lex_state = 13}, + [9290] = {.lex_state = 7, .external_lex_state = 13}, + [9291] = {.lex_state = 7, .external_lex_state = 13}, + [9292] = {.lex_state = 7, .external_lex_state = 13}, + [9293] = {.lex_state = 7, .external_lex_state = 13}, + [9294] = {.lex_state = 7, .external_lex_state = 13}, + [9295] = {.lex_state = 7, .external_lex_state = 13}, + [9296] = {.lex_state = 7, .external_lex_state = 13}, + [9297] = {.lex_state = 7, .external_lex_state = 13}, + [9298] = {.lex_state = 7, .external_lex_state = 13}, + [9299] = {.lex_state = 7, .external_lex_state = 13}, + [9300] = {.lex_state = 7, .external_lex_state = 13}, + [9301] = {.lex_state = 7, .external_lex_state = 11}, + [9302] = {.lex_state = 7, .external_lex_state = 13}, + [9303] = {.lex_state = 7, .external_lex_state = 13}, + [9304] = {.lex_state = 7, .external_lex_state = 13}, + [9305] = {.lex_state = 7, .external_lex_state = 13}, + [9306] = {.lex_state = 7, .external_lex_state = 13}, + [9307] = {.lex_state = 7, .external_lex_state = 13}, + [9308] = {.lex_state = 7, .external_lex_state = 13}, + [9309] = {.lex_state = 7, .external_lex_state = 13}, + [9310] = {.lex_state = 7, .external_lex_state = 13}, + [9311] = {.lex_state = 7, .external_lex_state = 11}, + [9312] = {.lex_state = 7, .external_lex_state = 13}, + [9313] = {.lex_state = 7, .external_lex_state = 13}, + [9314] = {.lex_state = 7, .external_lex_state = 13}, + [9315] = {.lex_state = 7, .external_lex_state = 13}, + [9316] = {.lex_state = 7, .external_lex_state = 13}, + [9317] = {.lex_state = 7, .external_lex_state = 13}, + [9318] = {.lex_state = 7, .external_lex_state = 13}, + [9319] = {.lex_state = 7, .external_lex_state = 13}, + [9320] = {.lex_state = 7, .external_lex_state = 13}, + [9321] = {.lex_state = 7, .external_lex_state = 13}, + [9322] = {.lex_state = 7, .external_lex_state = 13}, + [9323] = {.lex_state = 7, .external_lex_state = 13}, + [9324] = {.lex_state = 7, .external_lex_state = 13}, + [9325] = {.lex_state = 7, .external_lex_state = 13}, + [9326] = {.lex_state = 7, .external_lex_state = 13}, + [9327] = {.lex_state = 7, .external_lex_state = 13}, + [9328] = {.lex_state = 7, .external_lex_state = 13}, + [9329] = {.lex_state = 7, .external_lex_state = 13}, + [9330] = {.lex_state = 7, .external_lex_state = 11}, + [9331] = {.lex_state = 7, .external_lex_state = 13}, + [9332] = {.lex_state = 7, .external_lex_state = 11}, + [9333] = {.lex_state = 7, .external_lex_state = 13}, + [9334] = {.lex_state = 7, .external_lex_state = 13}, + [9335] = {.lex_state = 7, .external_lex_state = 13}, + [9336] = {.lex_state = 7, .external_lex_state = 11}, + [9337] = {.lex_state = 7, .external_lex_state = 11}, + [9338] = {.lex_state = 7, .external_lex_state = 13}, + [9339] = {.lex_state = 7, .external_lex_state = 11}, + [9340] = {.lex_state = 7, .external_lex_state = 11}, + [9341] = {.lex_state = 7, .external_lex_state = 11}, + [9342] = {.lex_state = 7, .external_lex_state = 11}, + [9343] = {.lex_state = 7, .external_lex_state = 11}, + [9344] = {.lex_state = 7, .external_lex_state = 11}, + [9345] = {.lex_state = 7, .external_lex_state = 11}, + [9346] = {.lex_state = 7, .external_lex_state = 11}, + [9347] = {.lex_state = 7, .external_lex_state = 11}, + [9348] = {.lex_state = 7, .external_lex_state = 11}, + [9349] = {.lex_state = 7, .external_lex_state = 11}, + [9350] = {.lex_state = 7, .external_lex_state = 11}, + [9351] = {.lex_state = 7, .external_lex_state = 11}, + [9352] = {.lex_state = 7, .external_lex_state = 11}, + [9353] = {.lex_state = 7, .external_lex_state = 11}, + [9354] = {.lex_state = 7, .external_lex_state = 15}, + [9355] = {.lex_state = 7, .external_lex_state = 11}, + [9356] = {.lex_state = 7, .external_lex_state = 11}, + [9357] = {.lex_state = 7, .external_lex_state = 11}, + [9358] = {.lex_state = 7, .external_lex_state = 11}, + [9359] = {.lex_state = 7, .external_lex_state = 11}, + [9360] = {.lex_state = 7, .external_lex_state = 11}, + [9361] = {.lex_state = 7, .external_lex_state = 11}, + [9362] = {.lex_state = 7, .external_lex_state = 11}, + [9363] = {.lex_state = 7, .external_lex_state = 11}, + [9364] = {.lex_state = 7, .external_lex_state = 11}, + [9365] = {.lex_state = 7, .external_lex_state = 11}, + [9366] = {.lex_state = 7, .external_lex_state = 11}, + [9367] = {.lex_state = 7, .external_lex_state = 11}, + [9368] = {.lex_state = 7, .external_lex_state = 11}, + [9369] = {.lex_state = 7, .external_lex_state = 11}, + [9370] = {.lex_state = 7, .external_lex_state = 11}, + [9371] = {.lex_state = 7, .external_lex_state = 11}, + [9372] = {.lex_state = 7, .external_lex_state = 11}, + [9373] = {.lex_state = 7, .external_lex_state = 11}, + [9374] = {.lex_state = 7, .external_lex_state = 11}, + [9375] = {.lex_state = 7, .external_lex_state = 11}, + [9376] = {.lex_state = 7, .external_lex_state = 13}, + [9377] = {.lex_state = 7, .external_lex_state = 13}, + [9378] = {.lex_state = 7, .external_lex_state = 13}, + [9379] = {.lex_state = 7, .external_lex_state = 13}, + [9380] = {.lex_state = 7, .external_lex_state = 13}, + [9381] = {.lex_state = 7, .external_lex_state = 13}, + [9382] = {.lex_state = 7, .external_lex_state = 13}, + [9383] = {.lex_state = 7, .external_lex_state = 13}, + [9384] = {.lex_state = 7, .external_lex_state = 13}, + [9385] = {.lex_state = 7, .external_lex_state = 13}, + [9386] = {.lex_state = 7, .external_lex_state = 13}, + [9387] = {.lex_state = 7, .external_lex_state = 13}, + [9388] = {.lex_state = 7, .external_lex_state = 13}, + [9389] = {.lex_state = 7, .external_lex_state = 13}, + [9390] = {.lex_state = 7, .external_lex_state = 12}, + [9391] = {.lex_state = 7, .external_lex_state = 11}, + [9392] = {.lex_state = 7, .external_lex_state = 11}, + [9393] = {.lex_state = 7, .external_lex_state = 12}, + [9394] = {.lex_state = 7, .external_lex_state = 11}, + [9395] = {.lex_state = 7, .external_lex_state = 12}, + [9396] = {.lex_state = 7, .external_lex_state = 11}, + [9397] = {.lex_state = 7, .external_lex_state = 11}, + [9398] = {.lex_state = 7, .external_lex_state = 12}, + [9399] = {.lex_state = 7, .external_lex_state = 11}, + [9400] = {.lex_state = 7, .external_lex_state = 11}, + [9401] = {.lex_state = 7, .external_lex_state = 11}, + [9402] = {.lex_state = 7, .external_lex_state = 11}, + [9403] = {.lex_state = 7, .external_lex_state = 11}, + [9404] = {.lex_state = 7, .external_lex_state = 11}, + [9405] = {.lex_state = 7, .external_lex_state = 11}, + [9406] = {.lex_state = 7, .external_lex_state = 11}, + [9407] = {.lex_state = 7, .external_lex_state = 11}, + [9408] = {.lex_state = 7, .external_lex_state = 11}, + [9409] = {.lex_state = 7, .external_lex_state = 11}, + [9410] = {.lex_state = 7, .external_lex_state = 11}, + [9411] = {.lex_state = 7, .external_lex_state = 14}, + [9412] = {.lex_state = 7, .external_lex_state = 11}, + [9413] = {.lex_state = 7, .external_lex_state = 14}, + [9414] = {.lex_state = 7, .external_lex_state = 14}, + [9415] = {.lex_state = 7, .external_lex_state = 14}, + [9416] = {.lex_state = 7, .external_lex_state = 14}, + [9417] = {.lex_state = 7, .external_lex_state = 14}, + [9418] = {.lex_state = 7, .external_lex_state = 14}, + [9419] = {.lex_state = 7, .external_lex_state = 14}, + [9420] = {.lex_state = 7, .external_lex_state = 14}, + [9421] = {.lex_state = 7, .external_lex_state = 14}, + [9422] = {.lex_state = 7, .external_lex_state = 14}, + [9423] = {.lex_state = 7, .external_lex_state = 14}, + [9424] = {.lex_state = 7, .external_lex_state = 14}, + [9425] = {.lex_state = 7, .external_lex_state = 14}, + [9426] = {.lex_state = 7, .external_lex_state = 14}, + [9427] = {.lex_state = 7, .external_lex_state = 14}, + [9428] = {.lex_state = 7, .external_lex_state = 14}, + [9429] = {.lex_state = 7, .external_lex_state = 14}, + [9430] = {.lex_state = 7, .external_lex_state = 14}, + [9431] = {.lex_state = 7, .external_lex_state = 14}, + [9432] = {.lex_state = 7, .external_lex_state = 11}, + [9433] = {.lex_state = 7, .external_lex_state = 14}, + [9434] = {.lex_state = 7, .external_lex_state = 14}, + [9435] = {.lex_state = 7, .external_lex_state = 14}, + [9436] = {.lex_state = 7, .external_lex_state = 14}, + [9437] = {.lex_state = 7, .external_lex_state = 14}, + [9438] = {.lex_state = 7, .external_lex_state = 14}, + [9439] = {.lex_state = 7, .external_lex_state = 14}, + [9440] = {.lex_state = 7, .external_lex_state = 11}, + [9441] = {.lex_state = 7, .external_lex_state = 14}, + [9442] = {.lex_state = 7, .external_lex_state = 14}, + [9443] = {.lex_state = 7, .external_lex_state = 14}, + [9444] = {.lex_state = 7, .external_lex_state = 14}, + [9445] = {.lex_state = 7, .external_lex_state = 14}, + [9446] = {.lex_state = 7, .external_lex_state = 14}, + [9447] = {.lex_state = 7, .external_lex_state = 14}, + [9448] = {.lex_state = 7, .external_lex_state = 14}, + [9449] = {.lex_state = 7, .external_lex_state = 14}, + [9450] = {.lex_state = 7, .external_lex_state = 11}, + [9451] = {.lex_state = 7, .external_lex_state = 14}, + [9452] = {.lex_state = 7, .external_lex_state = 12}, + [9453] = {.lex_state = 7, .external_lex_state = 12}, + [9454] = {.lex_state = 7, .external_lex_state = 12}, + [9455] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9456] = {.lex_state = 7, .external_lex_state = 12}, + [9457] = {.lex_state = 7, .external_lex_state = 12}, + [9458] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9459] = {.lex_state = 7, .external_lex_state = 12}, + [9460] = {.lex_state = 7, .external_lex_state = 12}, + [9461] = {.lex_state = 7, .external_lex_state = 12}, + [9462] = {.lex_state = 7, .external_lex_state = 12}, + [9463] = {.lex_state = 7, .external_lex_state = 12}, + [9464] = {.lex_state = 7, .external_lex_state = 15}, + [9465] = {.lex_state = 7, .external_lex_state = 12}, + [9466] = {.lex_state = 7, .external_lex_state = 15}, + [9467] = {.lex_state = 7, .external_lex_state = 15}, + [9468] = {.lex_state = 7, .external_lex_state = 12}, + [9469] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9470] = {.lex_state = 7, .external_lex_state = 12}, + [9471] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9472] = {.lex_state = 7, .external_lex_state = 12}, + [9473] = {.lex_state = 7, .external_lex_state = 12}, + [9474] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9475] = {.lex_state = 7, .external_lex_state = 12}, + [9476] = {.lex_state = 7, .external_lex_state = 12}, + [9477] = {.lex_state = 7, .external_lex_state = 12}, + [9478] = {.lex_state = 7, .external_lex_state = 12}, + [9479] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [9480] = {.lex_state = 7, .external_lex_state = 15}, + [9481] = {.lex_state = 7, .external_lex_state = 12}, + [9482] = {.lex_state = 7, .external_lex_state = 15}, + [9483] = {.lex_state = 7, .external_lex_state = 12}, + [9484] = {.lex_state = 7, .external_lex_state = 15}, + [9485] = {.lex_state = 7, .external_lex_state = 12}, + [9486] = {.lex_state = 7, .external_lex_state = 15}, + [9487] = {.lex_state = 7, .external_lex_state = 11}, + [9488] = {.lex_state = 7, .external_lex_state = 15}, + [9489] = {.lex_state = 7, .external_lex_state = 11}, + [9490] = {.lex_state = 7, .external_lex_state = 15}, + [9491] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9492] = {.lex_state = 7, .external_lex_state = 12}, + [9493] = {.lex_state = 7, .external_lex_state = 12}, + [9494] = {.lex_state = 7, .external_lex_state = 15}, + [9495] = {.lex_state = 7, .external_lex_state = 15}, + [9496] = {.lex_state = 7, .external_lex_state = 12}, + [9497] = {.lex_state = 7, .external_lex_state = 11}, + [9498] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9499] = {.lex_state = 7, .external_lex_state = 12}, + [9500] = {.lex_state = 7, .external_lex_state = 11}, + [9501] = {.lex_state = 7, .external_lex_state = 11}, + [9502] = {.lex_state = 7, .external_lex_state = 12}, + [9503] = {.lex_state = 7, .external_lex_state = 12}, + [9504] = {.lex_state = 7, .external_lex_state = 15}, + [9505] = {.lex_state = 7, .external_lex_state = 12}, + [9506] = {.lex_state = 7, .external_lex_state = 12}, + [9507] = {.lex_state = 7, .external_lex_state = 11}, + [9508] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9509] = {.lex_state = 7, .external_lex_state = 11}, + [9510] = {.lex_state = 7, .external_lex_state = 11}, + [9511] = {.lex_state = 7, .external_lex_state = 11}, + [9512] = {.lex_state = 7, .external_lex_state = 11}, + [9513] = {.lex_state = 7, .external_lex_state = 11}, + [9514] = {.lex_state = 7, .external_lex_state = 11}, + [9515] = {.lex_state = 7, .external_lex_state = 11}, + [9516] = {.lex_state = 7, .external_lex_state = 11}, + [9517] = {.lex_state = 7, .external_lex_state = 11}, + [9518] = {.lex_state = 7, .external_lex_state = 11}, + [9519] = {.lex_state = 7, .external_lex_state = 11}, + [9520] = {.lex_state = 7, .external_lex_state = 11}, + [9521] = {.lex_state = 7, .external_lex_state = 11}, + [9522] = {.lex_state = 7, .external_lex_state = 11}, + [9523] = {.lex_state = 7, .external_lex_state = 11}, + [9524] = {.lex_state = 7, .external_lex_state = 11}, + [9525] = {.lex_state = 7, .external_lex_state = 11}, + [9526] = {.lex_state = 7, .external_lex_state = 11}, + [9527] = {.lex_state = 7, .external_lex_state = 12}, + [9528] = {.lex_state = 7, .external_lex_state = 11}, + [9529] = {.lex_state = 7, .external_lex_state = 11}, + [9530] = {.lex_state = 7, .external_lex_state = 12}, + [9531] = {.lex_state = 7, .external_lex_state = 11}, + [9532] = {.lex_state = 7, .external_lex_state = 12}, + [9533] = {.lex_state = 7, .external_lex_state = 11}, + [9534] = {.lex_state = 7, .external_lex_state = 11}, + [9535] = {.lex_state = 7, .external_lex_state = 11}, + [9536] = {.lex_state = 7, .external_lex_state = 11}, + [9537] = {.lex_state = 7, .external_lex_state = 11}, + [9538] = {.lex_state = 7, .external_lex_state = 11}, + [9539] = {.lex_state = 7, .external_lex_state = 11}, + [9540] = {.lex_state = 7, .external_lex_state = 11}, + [9541] = {.lex_state = 7, .external_lex_state = 11}, + [9542] = {.lex_state = 7, .external_lex_state = 11}, + [9543] = {.lex_state = 7, .external_lex_state = 12}, + [9544] = {.lex_state = 7, .external_lex_state = 12}, + [9545] = {.lex_state = 7, .external_lex_state = 12}, + [9546] = {.lex_state = 7, .external_lex_state = 12}, + [9547] = {.lex_state = 7, .external_lex_state = 15}, + [9548] = {.lex_state = 7, .external_lex_state = 15}, + [9549] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 32}, + [9550] = {.lex_state = 7, .external_lex_state = 13}, + [9551] = {.lex_state = 7, .external_lex_state = 12}, + [9552] = {.lex_state = 0, .external_lex_state = 17}, + [9553] = {.lex_state = 7, .external_lex_state = 12}, + [9554] = {.lex_state = 0, .external_lex_state = 17}, + [9555] = {.lex_state = 0, .external_lex_state = 17}, + [9556] = {.lex_state = 7, .external_lex_state = 13}, + [9557] = {.lex_state = 0, .external_lex_state = 17}, + [9558] = {.lex_state = 7, .external_lex_state = 14}, + [9559] = {.lex_state = 7, .external_lex_state = 12}, + [9560] = {.lex_state = 7, .external_lex_state = 14}, + [9561] = {.lex_state = 0, .external_lex_state = 17}, + [9562] = {.lex_state = 0, .external_lex_state = 17}, + [9563] = {.lex_state = 7, .external_lex_state = 13}, + [9564] = {.lex_state = 7, .external_lex_state = 14}, + [9565] = {.lex_state = 7, .external_lex_state = 14}, + [9566] = {.lex_state = 0, .external_lex_state = 17}, + [9567] = {.lex_state = 7, .external_lex_state = 13}, + [9568] = {.lex_state = 0, .external_lex_state = 17}, + [9569] = {.lex_state = 0, .external_lex_state = 17}, + [9570] = {.lex_state = 7, .external_lex_state = 13}, + [9571] = {.lex_state = 7, .external_lex_state = 11}, + [9572] = {.lex_state = 7, .external_lex_state = 13}, + [9573] = {.lex_state = 7, .external_lex_state = 14}, + [9574] = {.lex_state = 0, .external_lex_state = 17}, + [9575] = {.lex_state = 7, .external_lex_state = 14}, + [9576] = {.lex_state = 7, .external_lex_state = 14}, + [9577] = {.lex_state = 7, .external_lex_state = 13}, + [9578] = {.lex_state = 7, .external_lex_state = 14}, + [9579] = {.lex_state = 7, .external_lex_state = 13}, + [9580] = {.lex_state = 7, .external_lex_state = 13}, + [9581] = {.lex_state = 7, .external_lex_state = 14}, + [9582] = {.lex_state = 0, .external_lex_state = 17}, + [9583] = {.lex_state = 0, .external_lex_state = 17}, + [9584] = {.lex_state = 7, .external_lex_state = 13}, + [9585] = {.lex_state = 7, .external_lex_state = 12}, + [9586] = {.lex_state = 7, .external_lex_state = 14}, + [9587] = {.lex_state = 7, .external_lex_state = 14}, + [9588] = {.lex_state = 7, .external_lex_state = 14}, + [9589] = {.lex_state = 7, .external_lex_state = 14}, + [9590] = {.lex_state = 0, .external_lex_state = 17}, + [9591] = {.lex_state = 7, .external_lex_state = 13}, + [9592] = {.lex_state = 7, .external_lex_state = 12}, + [9593] = {.lex_state = 7, .external_lex_state = 12}, + [9594] = {.lex_state = 7, .external_lex_state = 14}, + [9595] = {.lex_state = 7, .external_lex_state = 14}, + [9596] = {.lex_state = 7, .external_lex_state = 13}, + [9597] = {.lex_state = 7, .external_lex_state = 13}, + [9598] = {.lex_state = 0, .external_lex_state = 17}, + [9599] = {.lex_state = 7, .external_lex_state = 12}, + [9600] = {.lex_state = 0, .external_lex_state = 17}, + [9601] = {.lex_state = 7, .external_lex_state = 14}, + [9602] = {.lex_state = 7, .external_lex_state = 14}, + [9603] = {.lex_state = 0, .external_lex_state = 17}, + [9604] = {.lex_state = 0, .external_lex_state = 17}, + [9605] = {.lex_state = 10, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9606] = {.lex_state = 0, .external_lex_state = 17}, + [9607] = {.lex_state = 7, .external_lex_state = 12}, + [9608] = {.lex_state = 7, .external_lex_state = 14}, + [9609] = {.lex_state = 0, .external_lex_state = 17}, + [9610] = {.lex_state = 0, .external_lex_state = 17}, + [9611] = {.lex_state = 7, .external_lex_state = 12}, + [9612] = {.lex_state = 0, .external_lex_state = 17}, + [9613] = {.lex_state = 7, .external_lex_state = 12}, + [9614] = {.lex_state = 7, .external_lex_state = 13}, + [9615] = {.lex_state = 7, .external_lex_state = 13}, + [9616] = {.lex_state = 7, .external_lex_state = 12}, + [9617] = {.lex_state = 7, .external_lex_state = 14}, + [9618] = {.lex_state = 7, .external_lex_state = 14}, + [9619] = {.lex_state = 7, .external_lex_state = 14}, + [9620] = {.lex_state = 7, .external_lex_state = 12}, + [9621] = {.lex_state = 0, .external_lex_state = 17}, + [9622] = {.lex_state = 7, .external_lex_state = 14}, + [9623] = {.lex_state = 7, .external_lex_state = 11}, + [9624] = {.lex_state = 7, .external_lex_state = 12}, + [9625] = {.lex_state = 7, .external_lex_state = 14}, + [9626] = {.lex_state = 7, .external_lex_state = 14}, + [9627] = {.lex_state = 7, .external_lex_state = 12}, + [9628] = {.lex_state = 7, .external_lex_state = 14}, + [9629] = {.lex_state = 0, .external_lex_state = 17}, + [9630] = {.lex_state = 7, .external_lex_state = 12}, + [9631] = {.lex_state = 7, .external_lex_state = 12}, + [9632] = {.lex_state = 7, .external_lex_state = 14}, + [9633] = {.lex_state = 7, .external_lex_state = 11}, + [9634] = {.lex_state = 7, .external_lex_state = 12}, + [9635] = {.lex_state = 7, .external_lex_state = 12}, + [9636] = {.lex_state = 7, .external_lex_state = 13}, + [9637] = {.lex_state = 7, .external_lex_state = 12}, + [9638] = {.lex_state = 7, .external_lex_state = 12}, + [9639] = {.lex_state = 7, .external_lex_state = 13}, + [9640] = {.lex_state = 7, .external_lex_state = 13}, + [9641] = {.lex_state = 7, .external_lex_state = 15}, + [9642] = {.lex_state = 7, .external_lex_state = 15}, + [9643] = {.lex_state = 7, .external_lex_state = 14}, + [9644] = {.lex_state = 7, .external_lex_state = 15}, + [9645] = {.lex_state = 7, .external_lex_state = 15}, + [9646] = {.lex_state = 7, .external_lex_state = 15}, + [9647] = {.lex_state = 7, .external_lex_state = 15}, + [9648] = {.lex_state = 7, .external_lex_state = 11}, + [9649] = {.lex_state = 7, .external_lex_state = 12}, + [9650] = {.lex_state = 7, .external_lex_state = 12}, + [9651] = {.lex_state = 7, .external_lex_state = 15}, + [9652] = {.lex_state = 7, .external_lex_state = 13}, + [9653] = {.lex_state = 7, .external_lex_state = 13}, + [9654] = {.lex_state = 9, .external_lex_state = 11, .reserved_word_set_id = 1}, + [9655] = {.lex_state = 7, .external_lex_state = 15}, + [9656] = {.lex_state = 7, .external_lex_state = 13}, + [9657] = {.lex_state = 7, .external_lex_state = 12}, + [9658] = {.lex_state = 7, .external_lex_state = 13}, + [9659] = {.lex_state = 7, .external_lex_state = 12}, + [9660] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9661] = {.lex_state = 7, .external_lex_state = 12}, + [9662] = {.lex_state = 7, .external_lex_state = 14}, + [9663] = {.lex_state = 7, .external_lex_state = 15}, + [9664] = {.lex_state = 9, .external_lex_state = 11, .reserved_word_set_id = 1}, + [9665] = {.lex_state = 7, .external_lex_state = 12}, + [9666] = {.lex_state = 7, .external_lex_state = 15}, + [9667] = {.lex_state = 7, .external_lex_state = 15}, + [9668] = {.lex_state = 7, .external_lex_state = 12}, + [9669] = {.lex_state = 9, .external_lex_state = 11, .reserved_word_set_id = 1}, + [9670] = {.lex_state = 7, .external_lex_state = 15}, + [9671] = {.lex_state = 7, .external_lex_state = 12}, + [9672] = {.lex_state = 7, .external_lex_state = 13}, + [9673] = {.lex_state = 7, .external_lex_state = 15}, + [9674] = {.lex_state = 7, .external_lex_state = 15}, + [9675] = {.lex_state = 7, .external_lex_state = 12}, + [9676] = {.lex_state = 7, .external_lex_state = 15}, + [9677] = {.lex_state = 7, .external_lex_state = 13}, + [9678] = {.lex_state = 7, .external_lex_state = 12}, + [9679] = {.lex_state = 7, .external_lex_state = 15}, + [9680] = {.lex_state = 7, .external_lex_state = 12}, + [9681] = {.lex_state = 7, .external_lex_state = 12}, + [9682] = {.lex_state = 7, .external_lex_state = 15}, + [9683] = {.lex_state = 7, .external_lex_state = 15}, + [9684] = {.lex_state = 7, .external_lex_state = 15}, + [9685] = {.lex_state = 7, .external_lex_state = 13}, + [9686] = {.lex_state = 7, .external_lex_state = 15}, + [9687] = {.lex_state = 7, .external_lex_state = 15}, + [9688] = {.lex_state = 7, .external_lex_state = 15}, + [9689] = {.lex_state = 7, .external_lex_state = 12}, + [9690] = {.lex_state = 7, .external_lex_state = 12}, + [9691] = {.lex_state = 54, .external_lex_state = 18}, + [9692] = {.lex_state = 7, .external_lex_state = 15}, + [9693] = {.lex_state = 9, .external_lex_state = 14, .reserved_word_set_id = 1}, + [9694] = {.lex_state = 7, .external_lex_state = 11}, + [9695] = {.lex_state = 7, .external_lex_state = 12}, + [9696] = {.lex_state = 7, .external_lex_state = 12}, + [9697] = {.lex_state = 7, .external_lex_state = 12}, + [9698] = {.lex_state = 7, .external_lex_state = 14}, + [9699] = {.lex_state = 7, .external_lex_state = 12}, + [9700] = {.lex_state = 7, .external_lex_state = 11}, + [9701] = {.lex_state = 7, .external_lex_state = 12}, + [9702] = {.lex_state = 7, .external_lex_state = 12}, + [9703] = {.lex_state = 7, .external_lex_state = 12}, + [9704] = {.lex_state = 7, .external_lex_state = 11}, + [9705] = {.lex_state = 7, .external_lex_state = 15}, + [9706] = {.lex_state = 7, .external_lex_state = 12}, + [9707] = {.lex_state = 7, .external_lex_state = 12}, + [9708] = {.lex_state = 7, .external_lex_state = 12}, + [9709] = {.lex_state = 7, .external_lex_state = 12}, + [9710] = {.lex_state = 7, .external_lex_state = 12}, + [9711] = {.lex_state = 7, .external_lex_state = 12}, + [9712] = {.lex_state = 54, .external_lex_state = 18}, + [9713] = {.lex_state = 7, .external_lex_state = 14}, + [9714] = {.lex_state = 7, .external_lex_state = 12}, + [9715] = {.lex_state = 7, .external_lex_state = 14}, + [9716] = {.lex_state = 7, .external_lex_state = 14}, + [9717] = {.lex_state = 7, .external_lex_state = 12}, + [9718] = {.lex_state = 7, .external_lex_state = 12}, + [9719] = {.lex_state = 7, .external_lex_state = 11}, + [9720] = {.lex_state = 7, .external_lex_state = 12}, + [9721] = {.lex_state = 7, .external_lex_state = 14}, + [9722] = {.lex_state = 7, .external_lex_state = 14}, + [9723] = {.lex_state = 9, .external_lex_state = 14, .reserved_word_set_id = 1}, + [9724] = {.lex_state = 54, .external_lex_state = 18}, + [9725] = {.lex_state = 7, .external_lex_state = 12}, + [9726] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9727] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9728] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9729] = {.lex_state = 7, .external_lex_state = 15}, + [9730] = {.lex_state = 7, .external_lex_state = 12}, + [9731] = {.lex_state = 7, .external_lex_state = 15}, + [9732] = {.lex_state = 7, .external_lex_state = 12}, + [9733] = {.lex_state = 7, .external_lex_state = 13}, + [9734] = {.lex_state = 7, .external_lex_state = 14}, + [9735] = {.lex_state = 7, .external_lex_state = 12}, + [9736] = {.lex_state = 7, .external_lex_state = 12}, + [9737] = {.lex_state = 7, .external_lex_state = 11}, + [9738] = {.lex_state = 7, .external_lex_state = 15}, + [9739] = {.lex_state = 7, .external_lex_state = 14}, + [9740] = {.lex_state = 7, .external_lex_state = 11}, + [9741] = {.lex_state = 7, .external_lex_state = 12}, + [9742] = {.lex_state = 7, .external_lex_state = 12}, + [9743] = {.lex_state = 7, .external_lex_state = 12}, + [9744] = {.lex_state = 7, .external_lex_state = 14}, + [9745] = {.lex_state = 7, .external_lex_state = 11}, + [9746] = {.lex_state = 7, .external_lex_state = 11}, + [9747] = {.lex_state = 7, .external_lex_state = 11}, + [9748] = {.lex_state = 7, .external_lex_state = 12}, + [9749] = {.lex_state = 7, .external_lex_state = 14}, + [9750] = {.lex_state = 7, .external_lex_state = 12}, + [9751] = {.lex_state = 7, .external_lex_state = 12}, + [9752] = {.lex_state = 7, .external_lex_state = 14}, + [9753] = {.lex_state = 7, .external_lex_state = 11}, + [9754] = {.lex_state = 7, .external_lex_state = 12}, + [9755] = {.lex_state = 7, .external_lex_state = 12}, + [9756] = {.lex_state = 9, .external_lex_state = 14, .reserved_word_set_id = 1}, + [9757] = {.lex_state = 7, .external_lex_state = 12}, + [9758] = {.lex_state = 54, .external_lex_state = 18}, + [9759] = {.lex_state = 7, .external_lex_state = 12}, + [9760] = {.lex_state = 7, .external_lex_state = 12}, + [9761] = {.lex_state = 7, .external_lex_state = 14}, + [9762] = {.lex_state = 7, .external_lex_state = 14}, + [9763] = {.lex_state = 7, .external_lex_state = 12}, + [9764] = {.lex_state = 7, .external_lex_state = 12}, + [9765] = {.lex_state = 7, .external_lex_state = 12}, + [9766] = {.lex_state = 0, .external_lex_state = 17}, + [9767] = {.lex_state = 7, .external_lex_state = 2}, + [9768] = {.lex_state = 7, .external_lex_state = 12}, + [9769] = {.lex_state = 0, .external_lex_state = 17}, + [9770] = {.lex_state = 7, .external_lex_state = 12}, + [9771] = {.lex_state = 7, .external_lex_state = 12}, + [9772] = {.lex_state = 7, .external_lex_state = 11}, + [9773] = {.lex_state = 7, .external_lex_state = 15}, + [9774] = {.lex_state = 7, .external_lex_state = 12}, + [9775] = {.lex_state = 7, .external_lex_state = 11}, + [9776] = {.lex_state = 7, .external_lex_state = 12}, + [9777] = {.lex_state = 7, .external_lex_state = 13}, + [9778] = {.lex_state = 7, .external_lex_state = 12}, + [9779] = {.lex_state = 7, .external_lex_state = 15}, + [9780] = {.lex_state = 7, .external_lex_state = 12}, + [9781] = {.lex_state = 7, .external_lex_state = 12}, + [9782] = {.lex_state = 7, .external_lex_state = 12}, + [9783] = {.lex_state = 7, .external_lex_state = 12}, + [9784] = {.lex_state = 7, .external_lex_state = 12}, + [9785] = {.lex_state = 7, .external_lex_state = 13}, + [9786] = {.lex_state = 7, .external_lex_state = 12}, + [9787] = {.lex_state = 7, .external_lex_state = 12}, + [9788] = {.lex_state = 7, .external_lex_state = 12}, + [9789] = {.lex_state = 7, .external_lex_state = 12}, + [9790] = {.lex_state = 7, .external_lex_state = 15}, + [9791] = {.lex_state = 7, .external_lex_state = 12}, + [9792] = {.lex_state = 7, .external_lex_state = 12}, + [9793] = {.lex_state = 7, .external_lex_state = 11}, + [9794] = {.lex_state = 7, .external_lex_state = 6}, + [9795] = {.lex_state = 7, .external_lex_state = 11}, + [9796] = {.lex_state = 7, .external_lex_state = 11}, + [9797] = {.lex_state = 7, .external_lex_state = 11}, + [9798] = {.lex_state = 7, .external_lex_state = 14}, + [9799] = {.lex_state = 7, .external_lex_state = 14}, + [9800] = {.lex_state = 7, .external_lex_state = 12}, + [9801] = {.lex_state = 7, .external_lex_state = 13}, + [9802] = {.lex_state = 7, .external_lex_state = 13}, + [9803] = {.lex_state = 7, .external_lex_state = 11}, + [9804] = {.lex_state = 7, .external_lex_state = 12}, + [9805] = {.lex_state = 7, .external_lex_state = 14}, + [9806] = {.lex_state = 7, .external_lex_state = 12}, + [9807] = {.lex_state = 7, .external_lex_state = 12}, + [9808] = {.lex_state = 7, .external_lex_state = 12}, + [9809] = {.lex_state = 7, .external_lex_state = 12}, + [9810] = {.lex_state = 7, .external_lex_state = 11}, + [9811] = {.lex_state = 7, .external_lex_state = 12}, + [9812] = {.lex_state = 7, .external_lex_state = 12}, + [9813] = {.lex_state = 7, .external_lex_state = 14}, + [9814] = {.lex_state = 7, .external_lex_state = 14}, + [9815] = {.lex_state = 7, .external_lex_state = 12}, + [9816] = {.lex_state = 7, .external_lex_state = 13}, + [9817] = {.lex_state = 7, .external_lex_state = 14}, + [9818] = {.lex_state = 7, .external_lex_state = 13}, + [9819] = {.lex_state = 7, .external_lex_state = 12}, + [9820] = {.lex_state = 7, .external_lex_state = 13}, + [9821] = {.lex_state = 7, .external_lex_state = 12}, + [9822] = {.lex_state = 7, .external_lex_state = 12}, + [9823] = {.lex_state = 7, .external_lex_state = 12}, + [9824] = {.lex_state = 7, .external_lex_state = 13}, + [9825] = {.lex_state = 7, .external_lex_state = 11}, + [9826] = {.lex_state = 7, .external_lex_state = 12}, + [9827] = {.lex_state = 7, .external_lex_state = 14}, + [9828] = {.lex_state = 7, .external_lex_state = 12}, + [9829] = {.lex_state = 7, .external_lex_state = 12}, + [9830] = {.lex_state = 7, .external_lex_state = 12}, + [9831] = {.lex_state = 7, .external_lex_state = 12}, + [9832] = {.lex_state = 7, .external_lex_state = 12}, + [9833] = {.lex_state = 7, .external_lex_state = 15}, + [9834] = {.lex_state = 7, .external_lex_state = 12}, + [9835] = {.lex_state = 7, .external_lex_state = 12}, + [9836] = {.lex_state = 7, .external_lex_state = 12}, + [9837] = {.lex_state = 7, .external_lex_state = 12}, + [9838] = {.lex_state = 7, .external_lex_state = 12}, + [9839] = {.lex_state = 7, .external_lex_state = 12}, + [9840] = {.lex_state = 7, .external_lex_state = 11}, + [9841] = {.lex_state = 7, .external_lex_state = 11}, + [9842] = {.lex_state = 7, .external_lex_state = 14}, + [9843] = {.lex_state = 7, .external_lex_state = 11}, + [9844] = {.lex_state = 7, .external_lex_state = 12}, + [9845] = {.lex_state = 7, .external_lex_state = 15}, + [9846] = {.lex_state = 7, .external_lex_state = 11}, + [9847] = {.lex_state = 7, .external_lex_state = 12}, + [9848] = {.lex_state = 7, .external_lex_state = 14}, + [9849] = {.lex_state = 7, .external_lex_state = 12}, + [9850] = {.lex_state = 7, .external_lex_state = 11}, + [9851] = {.lex_state = 7, .external_lex_state = 11}, + [9852] = {.lex_state = 7, .external_lex_state = 14}, + [9853] = {.lex_state = 7, .external_lex_state = 12}, + [9854] = {.lex_state = 7, .external_lex_state = 12}, + [9855] = {.lex_state = 7, .external_lex_state = 12}, + [9856] = {.lex_state = 7, .external_lex_state = 14}, + [9857] = {.lex_state = 7, .external_lex_state = 14}, + [9858] = {.lex_state = 7, .external_lex_state = 12}, + [9859] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9860] = {.lex_state = 7, .external_lex_state = 11}, + [9861] = {.lex_state = 7, .external_lex_state = 14}, + [9862] = {.lex_state = 7, .external_lex_state = 14}, + [9863] = {.lex_state = 7, .external_lex_state = 11}, + [9864] = {.lex_state = 7, .external_lex_state = 14}, + [9865] = {.lex_state = 7, .external_lex_state = 12}, + [9866] = {.lex_state = 7, .external_lex_state = 13}, + [9867] = {.lex_state = 7, .external_lex_state = 12}, + [9868] = {.lex_state = 7, .external_lex_state = 13}, + [9869] = {.lex_state = 7, .external_lex_state = 14}, + [9870] = {.lex_state = 7, .external_lex_state = 14}, + [9871] = {.lex_state = 7, .external_lex_state = 12}, + [9872] = {.lex_state = 7, .external_lex_state = 11}, + [9873] = {.lex_state = 7, .external_lex_state = 11}, + [9874] = {.lex_state = 7, .external_lex_state = 11}, + [9875] = {.lex_state = 7, .external_lex_state = 14}, + [9876] = {.lex_state = 7, .external_lex_state = 13}, + [9877] = {.lex_state = 7, .external_lex_state = 13}, + [9878] = {.lex_state = 7, .external_lex_state = 13}, + [9879] = {.lex_state = 7, .external_lex_state = 11}, + [9880] = {.lex_state = 7, .external_lex_state = 13}, + [9881] = {.lex_state = 7, .external_lex_state = 12}, + [9882] = {.lex_state = 7, .external_lex_state = 12}, + [9883] = {.lex_state = 7, .external_lex_state = 11}, + [9884] = {.lex_state = 7, .external_lex_state = 14}, + [9885] = {.lex_state = 7, .external_lex_state = 14}, + [9886] = {.lex_state = 7, .external_lex_state = 12}, + [9887] = {.lex_state = 7, .external_lex_state = 12}, + [9888] = {.lex_state = 7, .external_lex_state = 13}, + [9889] = {.lex_state = 7, .external_lex_state = 12}, + [9890] = {.lex_state = 7, .external_lex_state = 12}, + [9891] = {.lex_state = 7, .external_lex_state = 7}, + [9892] = {.lex_state = 7, .external_lex_state = 13}, + [9893] = {.lex_state = 7, .external_lex_state = 14}, + [9894] = {.lex_state = 7, .external_lex_state = 12}, + [9895] = {.lex_state = 7, .external_lex_state = 11}, + [9896] = {.lex_state = 7, .external_lex_state = 12}, + [9897] = {.lex_state = 7, .external_lex_state = 13}, + [9898] = {.lex_state = 7, .external_lex_state = 12}, + [9899] = {.lex_state = 7, .external_lex_state = 13}, + [9900] = {.lex_state = 7, .external_lex_state = 12}, + [9901] = {.lex_state = 7, .external_lex_state = 11}, + [9902] = {.lex_state = 7, .external_lex_state = 12}, + [9903] = {.lex_state = 7, .external_lex_state = 12}, + [9904] = {.lex_state = 7, .external_lex_state = 12}, + [9905] = {.lex_state = 7, .external_lex_state = 11}, + [9906] = {.lex_state = 7, .external_lex_state = 12}, + [9907] = {.lex_state = 7, .external_lex_state = 12}, + [9908] = {.lex_state = 7, .external_lex_state = 13}, + [9909] = {.lex_state = 7, .external_lex_state = 11}, + [9910] = {.lex_state = 7, .external_lex_state = 14}, + [9911] = {.lex_state = 7, .external_lex_state = 15}, + [9912] = {.lex_state = 7, .external_lex_state = 11}, + [9913] = {.lex_state = 7, .external_lex_state = 12}, + [9914] = {.lex_state = 7, .external_lex_state = 12}, + [9915] = {.lex_state = 7, .external_lex_state = 12}, + [9916] = {.lex_state = 7, .external_lex_state = 12}, + [9917] = {.lex_state = 7, .external_lex_state = 11}, + [9918] = {.lex_state = 7, .external_lex_state = 14}, + [9919] = {.lex_state = 7, .external_lex_state = 12}, + [9920] = {.lex_state = 7, .external_lex_state = 14}, + [9921] = {.lex_state = 7, .external_lex_state = 13}, + [9922] = {.lex_state = 7, .external_lex_state = 11}, + [9923] = {.lex_state = 7, .external_lex_state = 12}, + [9924] = {.lex_state = 7, .external_lex_state = 12}, + [9925] = {.lex_state = 7, .external_lex_state = 14}, + [9926] = {.lex_state = 7, .external_lex_state = 12}, + [9927] = {.lex_state = 7, .external_lex_state = 12}, + [9928] = {.lex_state = 7, .external_lex_state = 14}, + [9929] = {.lex_state = 7, .external_lex_state = 12}, + [9930] = {.lex_state = 7, .external_lex_state = 12}, + [9931] = {.lex_state = 7, .external_lex_state = 11}, + [9932] = {.lex_state = 7, .external_lex_state = 12}, + [9933] = {.lex_state = 7, .external_lex_state = 12}, + [9934] = {.lex_state = 7, .external_lex_state = 15}, + [9935] = {.lex_state = 7, .external_lex_state = 12}, + [9936] = {.lex_state = 7, .external_lex_state = 14}, + [9937] = {.lex_state = 7, .external_lex_state = 12}, + [9938] = {.lex_state = 7, .external_lex_state = 14}, + [9939] = {.lex_state = 7, .external_lex_state = 12}, + [9940] = {.lex_state = 7, .external_lex_state = 14}, + [9941] = {.lex_state = 7, .external_lex_state = 12}, + [9942] = {.lex_state = 7, .external_lex_state = 14}, + [9943] = {.lex_state = 7, .external_lex_state = 13}, + [9944] = {.lex_state = 7, .external_lex_state = 12}, + [9945] = {.lex_state = 7, .external_lex_state = 11}, + [9946] = {.lex_state = 7, .external_lex_state = 12}, + [9947] = {.lex_state = 7, .external_lex_state = 12}, + [9948] = {.lex_state = 7, .external_lex_state = 14}, + [9949] = {.lex_state = 7, .external_lex_state = 12}, + [9950] = {.lex_state = 7, .external_lex_state = 12}, + [9951] = {.lex_state = 7, .external_lex_state = 12}, + [9952] = {.lex_state = 7, .external_lex_state = 12}, + [9953] = {.lex_state = 7, .external_lex_state = 12}, + [9954] = {.lex_state = 7, .external_lex_state = 12}, + [9955] = {.lex_state = 7, .external_lex_state = 12}, + [9956] = {.lex_state = 7, .external_lex_state = 12}, + [9957] = {.lex_state = 7, .external_lex_state = 13}, + [9958] = {.lex_state = 7, .external_lex_state = 12}, + [9959] = {.lex_state = 7, .external_lex_state = 12}, + [9960] = {.lex_state = 7, .external_lex_state = 12}, + [9961] = {.lex_state = 7, .external_lex_state = 14}, + [9962] = {.lex_state = 7, .external_lex_state = 12}, + [9963] = {.lex_state = 7, .external_lex_state = 12}, + [9964] = {.lex_state = 7, .external_lex_state = 11}, + [9965] = {.lex_state = 7, .external_lex_state = 13}, + [9966] = {.lex_state = 7, .external_lex_state = 14}, + [9967] = {.lex_state = 7, .external_lex_state = 13}, + [9968] = {.lex_state = 7, .external_lex_state = 12}, + [9969] = {.lex_state = 7, .external_lex_state = 13}, + [9970] = {.lex_state = 7, .external_lex_state = 13}, + [9971] = {.lex_state = 7, .external_lex_state = 11}, + [9972] = {.lex_state = 7, .external_lex_state = 12}, + [9973] = {.lex_state = 7, .external_lex_state = 12}, + [9974] = {.lex_state = 7, .external_lex_state = 12}, + [9975] = {.lex_state = 7, .external_lex_state = 12}, + [9976] = {.lex_state = 7, .external_lex_state = 14}, + [9977] = {.lex_state = 7, .external_lex_state = 14}, + [9978] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [9979] = {.lex_state = 7, .external_lex_state = 13}, + [9980] = {.lex_state = 7, .external_lex_state = 13}, + [9981] = {.lex_state = 7, .external_lex_state = 13}, + [9982] = {.lex_state = 7, .external_lex_state = 12}, + [9983] = {.lex_state = 7, .external_lex_state = 15}, + [9984] = {.lex_state = 7, .external_lex_state = 14}, + [9985] = {.lex_state = 7, .external_lex_state = 12}, + [9986] = {.lex_state = 7, .external_lex_state = 13}, + [9987] = {.lex_state = 7, .external_lex_state = 15}, + [9988] = {.lex_state = 7, .external_lex_state = 13}, + [9989] = {.lex_state = 7, .external_lex_state = 12}, + [9990] = {.lex_state = 7, .external_lex_state = 12}, + [9991] = {.lex_state = 7, .external_lex_state = 15}, + [9992] = {.lex_state = 7, .external_lex_state = 12}, + [9993] = {.lex_state = 7, .external_lex_state = 12}, + [9994] = {.lex_state = 7, .external_lex_state = 12}, + [9995] = {.lex_state = 7, .external_lex_state = 15}, + [9996] = {.lex_state = 7, .external_lex_state = 15}, + [9997] = {.lex_state = 7, .external_lex_state = 12}, + [9998] = {.lex_state = 7, .external_lex_state = 14}, + [9999] = {.lex_state = 7, .external_lex_state = 12}, + [10000] = {.lex_state = 7, .external_lex_state = 12}, + [10001] = {.lex_state = 7, .external_lex_state = 12}, + [10002] = {.lex_state = 7, .external_lex_state = 13}, + [10003] = {.lex_state = 7, .external_lex_state = 12}, + [10004] = {.lex_state = 7, .external_lex_state = 12}, + [10005] = {.lex_state = 7, .external_lex_state = 12}, + [10006] = {.lex_state = 7, .external_lex_state = 12}, + [10007] = {.lex_state = 7, .external_lex_state = 12}, + [10008] = {.lex_state = 7, .external_lex_state = 14}, + [10009] = {.lex_state = 7, .external_lex_state = 12}, + [10010] = {.lex_state = 7, .external_lex_state = 12}, + [10011] = {.lex_state = 7, .external_lex_state = 13}, + [10012] = {.lex_state = 7, .external_lex_state = 8}, + [10013] = {.lex_state = 7, .external_lex_state = 12}, + [10014] = {.lex_state = 7, .external_lex_state = 15}, + [10015] = {.lex_state = 7, .external_lex_state = 12}, + [10016] = {.lex_state = 7, .external_lex_state = 14}, + [10017] = {.lex_state = 7, .external_lex_state = 15}, + [10018] = {.lex_state = 7, .external_lex_state = 13}, + [10019] = {.lex_state = 7, .external_lex_state = 13}, + [10020] = {.lex_state = 7, .external_lex_state = 12}, + [10021] = {.lex_state = 7, .external_lex_state = 12}, + [10022] = {.lex_state = 7, .external_lex_state = 12}, + [10023] = {.lex_state = 7, .external_lex_state = 12}, + [10024] = {.lex_state = 7, .external_lex_state = 12}, + [10025] = {.lex_state = 7, .external_lex_state = 12}, + [10026] = {.lex_state = 7, .external_lex_state = 14}, + [10027] = {.lex_state = 7, .external_lex_state = 11}, + [10028] = {.lex_state = 7, .external_lex_state = 14}, + [10029] = {.lex_state = 7, .external_lex_state = 12}, + [10030] = {.lex_state = 7, .external_lex_state = 13}, + [10031] = {.lex_state = 7, .external_lex_state = 12}, + [10032] = {.lex_state = 7, .external_lex_state = 14}, + [10033] = {.lex_state = 7, .external_lex_state = 12}, + [10034] = {.lex_state = 7, .external_lex_state = 12}, + [10035] = {.lex_state = 7, .external_lex_state = 13}, + [10036] = {.lex_state = 7, .external_lex_state = 12}, + [10037] = {.lex_state = 7, .external_lex_state = 13}, + [10038] = {.lex_state = 7, .external_lex_state = 11}, + [10039] = {.lex_state = 7, .external_lex_state = 12}, + [10040] = {.lex_state = 7, .external_lex_state = 12}, + [10041] = {.lex_state = 7, .external_lex_state = 14}, + [10042] = {.lex_state = 7, .external_lex_state = 12}, + [10043] = {.lex_state = 7, .external_lex_state = 12}, + [10044] = {.lex_state = 7, .external_lex_state = 12}, + [10045] = {.lex_state = 7, .external_lex_state = 12}, + [10046] = {.lex_state = 7, .external_lex_state = 13}, + [10047] = {.lex_state = 7, .external_lex_state = 12}, + [10048] = {.lex_state = 7, .external_lex_state = 11}, + [10049] = {.lex_state = 7, .external_lex_state = 12}, + [10050] = {.lex_state = 7, .external_lex_state = 13}, + [10051] = {.lex_state = 7, .external_lex_state = 12}, + [10052] = {.lex_state = 7, .external_lex_state = 14}, + [10053] = {.lex_state = 7, .external_lex_state = 14}, + [10054] = {.lex_state = 7, .external_lex_state = 12}, + [10055] = {.lex_state = 7, .external_lex_state = 14}, + [10056] = {.lex_state = 7, .external_lex_state = 12}, + [10057] = {.lex_state = 7, .external_lex_state = 12}, + [10058] = {.lex_state = 7, .external_lex_state = 12}, + [10059] = {.lex_state = 7, .external_lex_state = 12}, + [10060] = {.lex_state = 7, .external_lex_state = 14}, + [10061] = {.lex_state = 7, .external_lex_state = 14}, + [10062] = {.lex_state = 7, .external_lex_state = 14}, + [10063] = {.lex_state = 7, .external_lex_state = 12}, + [10064] = {.lex_state = 7, .external_lex_state = 14}, + [10065] = {.lex_state = 7, .external_lex_state = 15}, + [10066] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [10067] = {.lex_state = 7, .external_lex_state = 12}, + [10068] = {.lex_state = 7, .external_lex_state = 12}, + [10069] = {.lex_state = 7, .external_lex_state = 12}, + [10070] = {.lex_state = 7, .external_lex_state = 12}, + [10071] = {.lex_state = 7, .external_lex_state = 14}, + [10072] = {.lex_state = 7, .external_lex_state = 13}, + [10073] = {.lex_state = 7, .external_lex_state = 14}, + [10074] = {.lex_state = 7, .external_lex_state = 12}, + [10075] = {.lex_state = 7, .external_lex_state = 12}, + [10076] = {.lex_state = 7, .external_lex_state = 12}, + [10077] = {.lex_state = 7, .external_lex_state = 13}, + [10078] = {.lex_state = 7, .external_lex_state = 13}, + [10079] = {.lex_state = 7, .external_lex_state = 12}, + [10080] = {.lex_state = 7, .external_lex_state = 11}, + [10081] = {.lex_state = 7, .external_lex_state = 12}, + [10082] = {.lex_state = 7, .external_lex_state = 12}, + [10083] = {.lex_state = 7, .external_lex_state = 12}, + [10084] = {.lex_state = 7, .external_lex_state = 13}, + [10085] = {.lex_state = 7, .external_lex_state = 12}, + [10086] = {.lex_state = 7, .external_lex_state = 14}, + [10087] = {.lex_state = 7, .external_lex_state = 12}, + [10088] = {.lex_state = 7, .external_lex_state = 11}, + [10089] = {.lex_state = 7, .external_lex_state = 13}, + [10090] = {.lex_state = 7, .external_lex_state = 12}, + [10091] = {.lex_state = 7, .external_lex_state = 12}, + [10092] = {.lex_state = 7, .external_lex_state = 13}, + [10093] = {.lex_state = 7, .external_lex_state = 11}, + [10094] = {.lex_state = 7, .external_lex_state = 11}, + [10095] = {.lex_state = 7, .external_lex_state = 13}, + [10096] = {.lex_state = 7, .external_lex_state = 14}, + [10097] = {.lex_state = 7, .external_lex_state = 13}, + [10098] = {.lex_state = 7, .external_lex_state = 11}, + [10099] = {.lex_state = 7, .external_lex_state = 11}, + [10100] = {.lex_state = 7, .external_lex_state = 13}, + [10101] = {.lex_state = 7, .external_lex_state = 14}, + [10102] = {.lex_state = 7, .external_lex_state = 11}, + [10103] = {.lex_state = 7, .external_lex_state = 13}, + [10104] = {.lex_state = 7, .external_lex_state = 11}, + [10105] = {.lex_state = 7, .external_lex_state = 14}, + [10106] = {.lex_state = 7, .external_lex_state = 13}, + [10107] = {.lex_state = 7, .external_lex_state = 14}, + [10108] = {.lex_state = 7, .external_lex_state = 11}, + [10109] = {.lex_state = 7, .external_lex_state = 13}, + [10110] = {.lex_state = 7, .external_lex_state = 13}, + [10111] = {.lex_state = 7, .external_lex_state = 11}, + [10112] = {.lex_state = 7, .external_lex_state = 14}, + [10113] = {.lex_state = 7, .external_lex_state = 13}, + [10114] = {.lex_state = 7, .external_lex_state = 13}, + [10115] = {.lex_state = 7, .external_lex_state = 13}, + [10116] = {.lex_state = 7, .external_lex_state = 14}, + [10117] = {.lex_state = 7, .external_lex_state = 12}, + [10118] = {.lex_state = 7, .external_lex_state = 12}, + [10119] = {.lex_state = 7, .external_lex_state = 12}, + [10120] = {.lex_state = 7, .external_lex_state = 13}, + [10121] = {.lex_state = 7, .external_lex_state = 13}, + [10122] = {.lex_state = 7, .external_lex_state = 13}, + [10123] = {.lex_state = 7, .external_lex_state = 13}, + [10124] = {.lex_state = 7, .external_lex_state = 13}, + [10125] = {.lex_state = 7, .external_lex_state = 13}, + [10126] = {.lex_state = 7, .external_lex_state = 13}, + [10127] = {.lex_state = 7, .external_lex_state = 13}, + [10128] = {.lex_state = 53, .external_lex_state = 15}, + [10129] = {.lex_state = 7, .external_lex_state = 14}, + [10130] = {.lex_state = 7, .external_lex_state = 13}, + [10131] = {.lex_state = 7, .external_lex_state = 13}, + [10132] = {.lex_state = 7, .external_lex_state = 13}, + [10133] = {.lex_state = 7, .external_lex_state = 13}, + [10134] = {.lex_state = 7, .external_lex_state = 13}, + [10135] = {.lex_state = 7, .external_lex_state = 13}, + [10136] = {.lex_state = 7, .external_lex_state = 13}, + [10137] = {.lex_state = 7, .external_lex_state = 12}, + [10138] = {.lex_state = 7, .external_lex_state = 14}, + [10139] = {.lex_state = 7, .external_lex_state = 12}, + [10140] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10141] = {.lex_state = 7, .external_lex_state = 13}, + [10142] = {.lex_state = 7, .external_lex_state = 14}, + [10143] = {.lex_state = 7, .external_lex_state = 13}, + [10144] = {.lex_state = 7, .external_lex_state = 14}, + [10145] = {.lex_state = 7, .external_lex_state = 13}, + [10146] = {.lex_state = 7, .external_lex_state = 13}, + [10147] = {.lex_state = 7, .external_lex_state = 11}, + [10148] = {.lex_state = 7, .external_lex_state = 13}, + [10149] = {.lex_state = 7, .external_lex_state = 13}, + [10150] = {.lex_state = 7, .external_lex_state = 13}, + [10151] = {.lex_state = 7, .external_lex_state = 13}, + [10152] = {.lex_state = 7, .external_lex_state = 13}, + [10153] = {.lex_state = 7, .external_lex_state = 13}, + [10154] = {.lex_state = 7, .external_lex_state = 13}, + [10155] = {.lex_state = 7, .external_lex_state = 13}, + [10156] = {.lex_state = 7, .external_lex_state = 13}, + [10157] = {.lex_state = 7, .external_lex_state = 13}, + [10158] = {.lex_state = 7, .external_lex_state = 13}, + [10159] = {.lex_state = 7, .external_lex_state = 13}, + [10160] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10161] = {.lex_state = 7, .external_lex_state = 14}, + [10162] = {.lex_state = 7, .external_lex_state = 13}, + [10163] = {.lex_state = 7, .external_lex_state = 13}, + [10164] = {.lex_state = 7, .external_lex_state = 13}, + [10165] = {.lex_state = 7, .external_lex_state = 14}, + [10166] = {.lex_state = 7, .external_lex_state = 13}, + [10167] = {.lex_state = 7, .external_lex_state = 13}, + [10168] = {.lex_state = 7, .external_lex_state = 13}, + [10169] = {.lex_state = 7, .external_lex_state = 13}, + [10170] = {.lex_state = 7, .external_lex_state = 13}, + [10171] = {.lex_state = 7, .external_lex_state = 13}, + [10172] = {.lex_state = 7, .external_lex_state = 13}, + [10173] = {.lex_state = 7, .external_lex_state = 13}, + [10174] = {.lex_state = 7, .external_lex_state = 13}, + [10175] = {.lex_state = 7, .external_lex_state = 13}, + [10176] = {.lex_state = 7, .external_lex_state = 13}, + [10177] = {.lex_state = 7, .external_lex_state = 13}, + [10178] = {.lex_state = 7, .external_lex_state = 11}, + [10179] = {.lex_state = 53, .external_lex_state = 15}, + [10180] = {.lex_state = 7, .external_lex_state = 14}, + [10181] = {.lex_state = 7, .external_lex_state = 11}, + [10182] = {.lex_state = 7, .external_lex_state = 13}, + [10183] = {.lex_state = 7, .external_lex_state = 13}, + [10184] = {.lex_state = 7, .external_lex_state = 13}, + [10185] = {.lex_state = 7, .external_lex_state = 13}, + [10186] = {.lex_state = 7, .external_lex_state = 13}, + [10187] = {.lex_state = 7, .external_lex_state = 11}, + [10188] = {.lex_state = 7, .external_lex_state = 13}, + [10189] = {.lex_state = 7, .external_lex_state = 11}, + [10190] = {.lex_state = 7, .external_lex_state = 13}, + [10191] = {.lex_state = 7, .external_lex_state = 13}, + [10192] = {.lex_state = 7, .external_lex_state = 13}, + [10193] = {.lex_state = 7, .external_lex_state = 13}, + [10194] = {.lex_state = 7, .external_lex_state = 13}, + [10195] = {.lex_state = 7, .external_lex_state = 13}, + [10196] = {.lex_state = 7, .external_lex_state = 13}, + [10197] = {.lex_state = 7, .external_lex_state = 13}, + [10198] = {.lex_state = 7, .external_lex_state = 13}, + [10199] = {.lex_state = 7, .external_lex_state = 13}, + [10200] = {.lex_state = 7, .external_lex_state = 13}, + [10201] = {.lex_state = 7, .external_lex_state = 15}, + [10202] = {.lex_state = 7, .external_lex_state = 13}, + [10203] = {.lex_state = 7, .external_lex_state = 13}, + [10204] = {.lex_state = 7, .external_lex_state = 13}, + [10205] = {.lex_state = 7, .external_lex_state = 13}, + [10206] = {.lex_state = 7, .external_lex_state = 13}, + [10207] = {.lex_state = 7, .external_lex_state = 13}, + [10208] = {.lex_state = 7, .external_lex_state = 13}, + [10209] = {.lex_state = 7, .external_lex_state = 13}, + [10210] = {.lex_state = 7, .external_lex_state = 13}, + [10211] = {.lex_state = 7, .external_lex_state = 13}, + [10212] = {.lex_state = 7, .external_lex_state = 13}, + [10213] = {.lex_state = 7, .external_lex_state = 13}, + [10214] = {.lex_state = 7, .external_lex_state = 13}, + [10215] = {.lex_state = 7, .external_lex_state = 13}, + [10216] = {.lex_state = 7, .external_lex_state = 13}, + [10217] = {.lex_state = 7, .external_lex_state = 13}, + [10218] = {.lex_state = 7, .external_lex_state = 13}, + [10219] = {.lex_state = 7, .external_lex_state = 12}, + [10220] = {.lex_state = 7, .external_lex_state = 13}, + [10221] = {.lex_state = 7, .external_lex_state = 14}, + [10222] = {.lex_state = 7, .external_lex_state = 13}, + [10223] = {.lex_state = 7, .external_lex_state = 13}, + [10224] = {.lex_state = 53, .external_lex_state = 15}, + [10225] = {.lex_state = 7, .external_lex_state = 11}, + [10226] = {.lex_state = 7, .external_lex_state = 13}, + [10227] = {.lex_state = 7, .external_lex_state = 13}, + [10228] = {.lex_state = 7, .external_lex_state = 13}, + [10229] = {.lex_state = 7, .external_lex_state = 11}, + [10230] = {.lex_state = 7, .external_lex_state = 11}, + [10231] = {.lex_state = 7, .external_lex_state = 14}, + [10232] = {.lex_state = 7, .external_lex_state = 11}, + [10233] = {.lex_state = 7, .external_lex_state = 14}, + [10234] = {.lex_state = 7, .external_lex_state = 13}, + [10235] = {.lex_state = 7, .external_lex_state = 13}, + [10236] = {.lex_state = 7, .external_lex_state = 13}, + [10237] = {.lex_state = 7, .external_lex_state = 13}, + [10238] = {.lex_state = 7, .external_lex_state = 13}, + [10239] = {.lex_state = 7, .external_lex_state = 13}, + [10240] = {.lex_state = 7, .external_lex_state = 13}, + [10241] = {.lex_state = 7, .external_lex_state = 13}, + [10242] = {.lex_state = 7, .external_lex_state = 13}, + [10243] = {.lex_state = 7, .external_lex_state = 13}, + [10244] = {.lex_state = 7, .external_lex_state = 13}, + [10245] = {.lex_state = 7, .external_lex_state = 13}, + [10246] = {.lex_state = 7, .external_lex_state = 13}, + [10247] = {.lex_state = 7, .external_lex_state = 13}, + [10248] = {.lex_state = 7, .external_lex_state = 13}, + [10249] = {.lex_state = 7, .external_lex_state = 13}, + [10250] = {.lex_state = 7, .external_lex_state = 13}, + [10251] = {.lex_state = 7, .external_lex_state = 13}, + [10252] = {.lex_state = 7, .external_lex_state = 11}, + [10253] = {.lex_state = 7, .external_lex_state = 11}, + [10254] = {.lex_state = 7, .external_lex_state = 13}, + [10255] = {.lex_state = 7, .external_lex_state = 13}, + [10256] = {.lex_state = 7, .external_lex_state = 14}, + [10257] = {.lex_state = 7, .external_lex_state = 13}, + [10258] = {.lex_state = 7, .external_lex_state = 15}, + [10259] = {.lex_state = 7, .external_lex_state = 13}, + [10260] = {.lex_state = 7, .external_lex_state = 14}, + [10261] = {.lex_state = 9, .external_lex_state = 11, .reserved_word_set_id = 1}, + [10262] = {.lex_state = 7, .external_lex_state = 13}, + [10263] = {.lex_state = 7, .external_lex_state = 13}, + [10264] = {.lex_state = 7, .external_lex_state = 14}, + [10265] = {.lex_state = 7, .external_lex_state = 14}, + [10266] = {.lex_state = 7, .external_lex_state = 11}, + [10267] = {.lex_state = 7, .external_lex_state = 13}, + [10268] = {.lex_state = 7, .external_lex_state = 13}, + [10269] = {.lex_state = 7, .external_lex_state = 13}, + [10270] = {.lex_state = 7, .external_lex_state = 13}, + [10271] = {.lex_state = 7, .external_lex_state = 13}, + [10272] = {.lex_state = 7, .external_lex_state = 13}, + [10273] = {.lex_state = 7, .external_lex_state = 13}, + [10274] = {.lex_state = 7, .external_lex_state = 13}, + [10275] = {.lex_state = 7, .external_lex_state = 13}, + [10276] = {.lex_state = 7, .external_lex_state = 13}, + [10277] = {.lex_state = 7, .external_lex_state = 13}, + [10278] = {.lex_state = 7, .external_lex_state = 13}, + [10279] = {.lex_state = 7, .external_lex_state = 13}, + [10280] = {.lex_state = 7, .external_lex_state = 12}, + [10281] = {.lex_state = 7, .external_lex_state = 13}, + [10282] = {.lex_state = 7, .external_lex_state = 13}, + [10283] = {.lex_state = 7, .external_lex_state = 11}, + [10284] = {.lex_state = 7, .external_lex_state = 14}, + [10285] = {.lex_state = 7, .external_lex_state = 13}, + [10286] = {.lex_state = 7, .external_lex_state = 13}, + [10287] = {.lex_state = 7, .external_lex_state = 14}, + [10288] = {.lex_state = 7, .external_lex_state = 11}, + [10289] = {.lex_state = 7, .external_lex_state = 12}, + [10290] = {.lex_state = 7, .external_lex_state = 13}, + [10291] = {.lex_state = 53, .external_lex_state = 15}, + [10292] = {.lex_state = 7, .external_lex_state = 11}, + [10293] = {.lex_state = 7, .external_lex_state = 13}, + [10294] = {.lex_state = 7, .external_lex_state = 13}, + [10295] = {.lex_state = 7, .external_lex_state = 13}, + [10296] = {.lex_state = 7, .external_lex_state = 13}, + [10297] = {.lex_state = 7, .external_lex_state = 13}, + [10298] = {.lex_state = 7, .external_lex_state = 13}, + [10299] = {.lex_state = 7, .external_lex_state = 13}, + [10300] = {.lex_state = 7, .external_lex_state = 13}, + [10301] = {.lex_state = 7, .external_lex_state = 13}, + [10302] = {.lex_state = 7, .external_lex_state = 13}, + [10303] = {.lex_state = 7, .external_lex_state = 13}, + [10304] = {.lex_state = 7, .external_lex_state = 13}, + [10305] = {.lex_state = 7, .external_lex_state = 13}, + [10306] = {.lex_state = 7, .external_lex_state = 13}, + [10307] = {.lex_state = 7, .external_lex_state = 13}, + [10308] = {.lex_state = 7, .external_lex_state = 13}, + [10309] = {.lex_state = 7, .external_lex_state = 15}, + [10310] = {.lex_state = 7, .external_lex_state = 13}, + [10311] = {.lex_state = 7, .external_lex_state = 11}, + [10312] = {.lex_state = 7, .external_lex_state = 15}, + [10313] = {.lex_state = 7, .external_lex_state = 12}, + [10314] = {.lex_state = 7, .external_lex_state = 14}, + [10315] = {.lex_state = 7, .external_lex_state = 14}, + [10316] = {.lex_state = 7, .external_lex_state = 11}, + [10317] = {.lex_state = 7, .external_lex_state = 14}, + [10318] = {.lex_state = 7, .external_lex_state = 11}, + [10319] = {.lex_state = 7, .external_lex_state = 14}, + [10320] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [10321] = {.lex_state = 7, .external_lex_state = 12}, + [10322] = {.lex_state = 7, .external_lex_state = 14}, + [10323] = {.lex_state = 7, .external_lex_state = 14}, + [10324] = {.lex_state = 7, .external_lex_state = 13}, + [10325] = {.lex_state = 7, .external_lex_state = 13}, + [10326] = {.lex_state = 7, .external_lex_state = 13}, + [10327] = {.lex_state = 7, .external_lex_state = 13}, + [10328] = {.lex_state = 7, .external_lex_state = 13}, + [10329] = {.lex_state = 7, .external_lex_state = 13}, + [10330] = {.lex_state = 7, .external_lex_state = 13}, + [10331] = {.lex_state = 7, .external_lex_state = 13}, + [10332] = {.lex_state = 7, .external_lex_state = 13}, + [10333] = {.lex_state = 7, .external_lex_state = 13}, + [10334] = {.lex_state = 7, .external_lex_state = 13}, + [10335] = {.lex_state = 7, .external_lex_state = 13}, + [10336] = {.lex_state = 7, .external_lex_state = 13}, + [10337] = {.lex_state = 7, .external_lex_state = 13}, + [10338] = {.lex_state = 7, .external_lex_state = 13}, + [10339] = {.lex_state = 7, .external_lex_state = 13}, + [10340] = {.lex_state = 7, .external_lex_state = 13}, + [10341] = {.lex_state = 7, .external_lex_state = 13}, + [10342] = {.lex_state = 7, .external_lex_state = 13}, + [10343] = {.lex_state = 7, .external_lex_state = 13}, + [10344] = {.lex_state = 7, .external_lex_state = 13}, + [10345] = {.lex_state = 7, .external_lex_state = 13}, + [10346] = {.lex_state = 7, .external_lex_state = 13}, + [10347] = {.lex_state = 7, .external_lex_state = 13}, + [10348] = {.lex_state = 7, .external_lex_state = 13}, + [10349] = {.lex_state = 7, .external_lex_state = 13}, + [10350] = {.lex_state = 7, .external_lex_state = 14}, + [10351] = {.lex_state = 7, .external_lex_state = 13}, + [10352] = {.lex_state = 7, .external_lex_state = 13}, + [10353] = {.lex_state = 7, .external_lex_state = 14}, + [10354] = {.lex_state = 7, .external_lex_state = 14}, + [10355] = {.lex_state = 7, .external_lex_state = 13}, + [10356] = {.lex_state = 7, .external_lex_state = 13}, + [10357] = {.lex_state = 7, .external_lex_state = 13}, + [10358] = {.lex_state = 7, .external_lex_state = 13}, + [10359] = {.lex_state = 7, .external_lex_state = 13}, + [10360] = {.lex_state = 7, .external_lex_state = 13}, + [10361] = {.lex_state = 7, .external_lex_state = 13}, + [10362] = {.lex_state = 7, .external_lex_state = 13}, + [10363] = {.lex_state = 7, .external_lex_state = 13}, + [10364] = {.lex_state = 7, .external_lex_state = 13}, + [10365] = {.lex_state = 7, .external_lex_state = 13}, + [10366] = {.lex_state = 7, .external_lex_state = 13}, + [10367] = {.lex_state = 7, .external_lex_state = 13}, + [10368] = {.lex_state = 7, .external_lex_state = 13}, + [10369] = {.lex_state = 7, .external_lex_state = 13}, + [10370] = {.lex_state = 7, .external_lex_state = 13}, + [10371] = {.lex_state = 7, .external_lex_state = 13}, + [10372] = {.lex_state = 7, .external_lex_state = 13}, + [10373] = {.lex_state = 7, .external_lex_state = 13}, + [10374] = {.lex_state = 7, .external_lex_state = 13}, + [10375] = {.lex_state = 7, .external_lex_state = 13}, + [10376] = {.lex_state = 7, .external_lex_state = 13}, + [10377] = {.lex_state = 7, .external_lex_state = 13}, + [10378] = {.lex_state = 7, .external_lex_state = 13}, + [10379] = {.lex_state = 7, .external_lex_state = 13}, + [10380] = {.lex_state = 7, .external_lex_state = 13}, + [10381] = {.lex_state = 7, .external_lex_state = 13}, + [10382] = {.lex_state = 7, .external_lex_state = 15}, + [10383] = {.lex_state = 7, .external_lex_state = 11}, + [10384] = {.lex_state = 7, .external_lex_state = 12}, + [10385] = {.lex_state = 7, .external_lex_state = 13}, + [10386] = {.lex_state = 7, .external_lex_state = 13}, + [10387] = {.lex_state = 7, .external_lex_state = 13}, + [10388] = {.lex_state = 7, .external_lex_state = 13}, + [10389] = {.lex_state = 7, .external_lex_state = 13}, + [10390] = {.lex_state = 7, .external_lex_state = 13}, + [10391] = {.lex_state = 7, .external_lex_state = 13}, + [10392] = {.lex_state = 7, .external_lex_state = 13}, + [10393] = {.lex_state = 7, .external_lex_state = 13}, + [10394] = {.lex_state = 7, .external_lex_state = 13}, + [10395] = {.lex_state = 7, .external_lex_state = 13}, + [10396] = {.lex_state = 7, .external_lex_state = 13}, + [10397] = {.lex_state = 7, .external_lex_state = 13}, + [10398] = {.lex_state = 7, .external_lex_state = 13}, + [10399] = {.lex_state = 7, .external_lex_state = 13}, + [10400] = {.lex_state = 7, .external_lex_state = 13}, + [10401] = {.lex_state = 7, .external_lex_state = 13}, + [10402] = {.lex_state = 7, .external_lex_state = 13}, + [10403] = {.lex_state = 7, .external_lex_state = 13}, + [10404] = {.lex_state = 7, .external_lex_state = 14}, + [10405] = {.lex_state = 7, .external_lex_state = 13}, + [10406] = {.lex_state = 7, .external_lex_state = 13}, + [10407] = {.lex_state = 7, .external_lex_state = 13}, + [10408] = {.lex_state = 7, .external_lex_state = 13}, + [10409] = {.lex_state = 7, .external_lex_state = 13}, + [10410] = {.lex_state = 7, .external_lex_state = 13}, + [10411] = {.lex_state = 7, .external_lex_state = 13}, + [10412] = {.lex_state = 7, .external_lex_state = 13}, + [10413] = {.lex_state = 7, .external_lex_state = 13}, + [10414] = {.lex_state = 7, .external_lex_state = 14}, + [10415] = {.lex_state = 7, .external_lex_state = 12}, + [10416] = {.lex_state = 7, .external_lex_state = 14}, + [10417] = {.lex_state = 7, .external_lex_state = 14}, + [10418] = {.lex_state = 7, .external_lex_state = 13}, + [10419] = {.lex_state = 7, .external_lex_state = 14}, + [10420] = {.lex_state = 7, .external_lex_state = 13}, + [10421] = {.lex_state = 7, .external_lex_state = 14}, + [10422] = {.lex_state = 7, .external_lex_state = 13}, + [10423] = {.lex_state = 7, .external_lex_state = 12}, + [10424] = {.lex_state = 7, .external_lex_state = 14}, + [10425] = {.lex_state = 7, .external_lex_state = 14}, + [10426] = {.lex_state = 7, .external_lex_state = 14}, + [10427] = {.lex_state = 7, .external_lex_state = 14}, + [10428] = {.lex_state = 7, .external_lex_state = 12}, + [10429] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10430] = {.lex_state = 7, .external_lex_state = 14}, + [10431] = {.lex_state = 7, .external_lex_state = 13}, + [10432] = {.lex_state = 7, .external_lex_state = 11}, + [10433] = {.lex_state = 7, .external_lex_state = 14}, + [10434] = {.lex_state = 7, .external_lex_state = 13}, + [10435] = {.lex_state = 7, .external_lex_state = 15}, + [10436] = {.lex_state = 7, .external_lex_state = 12}, + [10437] = {.lex_state = 7, .external_lex_state = 14}, + [10438] = {.lex_state = 7, .external_lex_state = 14}, + [10439] = {.lex_state = 7, .external_lex_state = 13}, + [10440] = {.lex_state = 7, .external_lex_state = 14}, + [10441] = {.lex_state = 7, .external_lex_state = 14}, + [10442] = {.lex_state = 7, .external_lex_state = 14}, + [10443] = {.lex_state = 7, .external_lex_state = 14}, + [10444] = {.lex_state = 7, .external_lex_state = 11}, + [10445] = {.lex_state = 7, .external_lex_state = 14}, + [10446] = {.lex_state = 7, .external_lex_state = 14}, + [10447] = {.lex_state = 7, .external_lex_state = 14}, + [10448] = {.lex_state = 7, .external_lex_state = 14}, + [10449] = {.lex_state = 7, .external_lex_state = 14}, + [10450] = {.lex_state = 7, .external_lex_state = 14}, + [10451] = {.lex_state = 7, .external_lex_state = 13}, + [10452] = {.lex_state = 7, .external_lex_state = 11}, + [10453] = {.lex_state = 7, .external_lex_state = 15}, + [10454] = {.lex_state = 7, .external_lex_state = 15}, + [10455] = {.lex_state = 7, .external_lex_state = 14}, + [10456] = {.lex_state = 7, .external_lex_state = 13}, + [10457] = {.lex_state = 7, .external_lex_state = 13}, + [10458] = {.lex_state = 7, .external_lex_state = 13}, + [10459] = {.lex_state = 7, .external_lex_state = 14}, + [10460] = {.lex_state = 7, .external_lex_state = 13}, + [10461] = {.lex_state = 7, .external_lex_state = 13}, + [10462] = {.lex_state = 7, .external_lex_state = 13}, + [10463] = {.lex_state = 7, .external_lex_state = 14}, + [10464] = {.lex_state = 7, .external_lex_state = 14}, + [10465] = {.lex_state = 7, .external_lex_state = 13}, + [10466] = {.lex_state = 7, .external_lex_state = 13}, + [10467] = {.lex_state = 7, .external_lex_state = 12}, + [10468] = {.lex_state = 7, .external_lex_state = 11}, + [10469] = {.lex_state = 0, .external_lex_state = 17}, + [10470] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10471] = {.lex_state = 7, .external_lex_state = 11}, + [10472] = {.lex_state = 7, .external_lex_state = 11}, + [10473] = {.lex_state = 0, .external_lex_state = 17}, + [10474] = {.lex_state = 0, .external_lex_state = 17}, + [10475] = {.lex_state = 7, .external_lex_state = 11}, + [10476] = {.lex_state = 7, .external_lex_state = 11}, + [10477] = {.lex_state = 7, .external_lex_state = 11}, + [10478] = {.lex_state = 7, .external_lex_state = 14}, + [10479] = {.lex_state = 7, .external_lex_state = 11}, + [10480] = {.lex_state = 7, .external_lex_state = 11}, + [10481] = {.lex_state = 7, .external_lex_state = 14}, + [10482] = {.lex_state = 7, .external_lex_state = 14}, + [10483] = {.lex_state = 7, .external_lex_state = 14}, + [10484] = {.lex_state = 7, .external_lex_state = 13}, + [10485] = {.lex_state = 7, .external_lex_state = 12}, + [10486] = {.lex_state = 7, .external_lex_state = 14}, + [10487] = {.lex_state = 7, .external_lex_state = 14}, + [10488] = {.lex_state = 7, .external_lex_state = 13}, + [10489] = {.lex_state = 7, .external_lex_state = 15}, + [10490] = {.lex_state = 7, .external_lex_state = 15}, + [10491] = {.lex_state = 7, .external_lex_state = 12}, + [10492] = {.lex_state = 7, .external_lex_state = 15}, + [10493] = {.lex_state = 7, .external_lex_state = 14}, + [10494] = {.lex_state = 7, .external_lex_state = 14}, + [10495] = {.lex_state = 7, .external_lex_state = 12}, + [10496] = {.lex_state = 7, .external_lex_state = 14}, + [10497] = {.lex_state = 7, .external_lex_state = 13}, + [10498] = {.lex_state = 7, .external_lex_state = 14}, + [10499] = {.lex_state = 7, .external_lex_state = 14}, + [10500] = {.lex_state = 7, .external_lex_state = 14}, + [10501] = {.lex_state = 7, .external_lex_state = 14}, + [10502] = {.lex_state = 7, .external_lex_state = 14}, + [10503] = {.lex_state = 7, .external_lex_state = 14}, + [10504] = {.lex_state = 7, .external_lex_state = 14}, + [10505] = {.lex_state = 7, .external_lex_state = 14}, + [10506] = {.lex_state = 7, .external_lex_state = 14}, + [10507] = {.lex_state = 7, .external_lex_state = 14}, + [10508] = {.lex_state = 7, .external_lex_state = 14}, + [10509] = {.lex_state = 7, .external_lex_state = 14}, + [10510] = {.lex_state = 7, .external_lex_state = 14}, + [10511] = {.lex_state = 7, .external_lex_state = 14}, + [10512] = {.lex_state = 7, .external_lex_state = 14}, + [10513] = {.lex_state = 7, .external_lex_state = 14}, + [10514] = {.lex_state = 7, .external_lex_state = 13}, + [10515] = {.lex_state = 7, .external_lex_state = 14}, + [10516] = {.lex_state = 7, .external_lex_state = 14}, + [10517] = {.lex_state = 7, .external_lex_state = 14}, + [10518] = {.lex_state = 7, .external_lex_state = 14}, + [10519] = {.lex_state = 7, .external_lex_state = 14}, + [10520] = {.lex_state = 7, .external_lex_state = 14}, + [10521] = {.lex_state = 7, .external_lex_state = 13}, + [10522] = {.lex_state = 7, .external_lex_state = 14}, + [10523] = {.lex_state = 7, .external_lex_state = 14}, + [10524] = {.lex_state = 7, .external_lex_state = 14}, + [10525] = {.lex_state = 7, .external_lex_state = 13}, + [10526] = {.lex_state = 7, .external_lex_state = 14}, + [10527] = {.lex_state = 7, .external_lex_state = 14}, + [10528] = {.lex_state = 7, .external_lex_state = 14}, + [10529] = {.lex_state = 7, .external_lex_state = 14}, + [10530] = {.lex_state = 7, .external_lex_state = 14}, + [10531] = {.lex_state = 7, .external_lex_state = 12}, + [10532] = {.lex_state = 7, .external_lex_state = 14}, + [10533] = {.lex_state = 7, .external_lex_state = 14}, + [10534] = {.lex_state = 7, .external_lex_state = 13}, + [10535] = {.lex_state = 7, .external_lex_state = 14}, + [10536] = {.lex_state = 7, .external_lex_state = 13}, + [10537] = {.lex_state = 7, .external_lex_state = 13}, + [10538] = {.lex_state = 7, .external_lex_state = 14}, + [10539] = {.lex_state = 7, .external_lex_state = 14}, + [10540] = {.lex_state = 7, .external_lex_state = 14}, + [10541] = {.lex_state = 7, .external_lex_state = 14}, + [10542] = {.lex_state = 7, .external_lex_state = 14}, + [10543] = {.lex_state = 7, .external_lex_state = 14}, + [10544] = {.lex_state = 0, .external_lex_state = 17}, + [10545] = {.lex_state = 7, .external_lex_state = 14}, + [10546] = {.lex_state = 7, .external_lex_state = 11}, + [10547] = {.lex_state = 7, .external_lex_state = 14}, + [10548] = {.lex_state = 7, .external_lex_state = 14}, + [10549] = {.lex_state = 7, .external_lex_state = 14}, + [10550] = {.lex_state = 7, .external_lex_state = 14}, + [10551] = {.lex_state = 7, .external_lex_state = 14}, + [10552] = {.lex_state = 7, .external_lex_state = 11}, + [10553] = {.lex_state = 7, .external_lex_state = 12}, + [10554] = {.lex_state = 7, .external_lex_state = 13}, + [10555] = {.lex_state = 7, .external_lex_state = 14}, + [10556] = {.lex_state = 7, .external_lex_state = 13}, + [10557] = {.lex_state = 7, .external_lex_state = 11}, + [10558] = {.lex_state = 7, .external_lex_state = 14}, + [10559] = {.lex_state = 7, .external_lex_state = 14}, + [10560] = {.lex_state = 7, .external_lex_state = 14}, + [10561] = {.lex_state = 7, .external_lex_state = 14}, + [10562] = {.lex_state = 7, .external_lex_state = 13}, + [10563] = {.lex_state = 7, .external_lex_state = 14}, + [10564] = {.lex_state = 7, .external_lex_state = 14}, + [10565] = {.lex_state = 7, .external_lex_state = 14}, + [10566] = {.lex_state = 7, .external_lex_state = 13}, + [10567] = {.lex_state = 7, .external_lex_state = 14}, + [10568] = {.lex_state = 7, .external_lex_state = 14}, + [10569] = {.lex_state = 7, .external_lex_state = 13}, + [10570] = {.lex_state = 7, .external_lex_state = 14}, + [10571] = {.lex_state = 7, .external_lex_state = 11}, + [10572] = {.lex_state = 7, .external_lex_state = 14}, + [10573] = {.lex_state = 7, .external_lex_state = 11}, + [10574] = {.lex_state = 7, .external_lex_state = 14}, + [10575] = {.lex_state = 7, .external_lex_state = 13}, + [10576] = {.lex_state = 7, .external_lex_state = 14}, + [10577] = {.lex_state = 7, .external_lex_state = 14}, + [10578] = {.lex_state = 7, .external_lex_state = 13}, + [10579] = {.lex_state = 7, .external_lex_state = 14}, + [10580] = {.lex_state = 7, .external_lex_state = 13}, + [10581] = {.lex_state = 7, .external_lex_state = 13}, + [10582] = {.lex_state = 7, .external_lex_state = 14}, + [10583] = {.lex_state = 7, .external_lex_state = 13}, + [10584] = {.lex_state = 7, .external_lex_state = 13}, + [10585] = {.lex_state = 7, .external_lex_state = 13}, + [10586] = {.lex_state = 7, .external_lex_state = 14}, + [10587] = {.lex_state = 7, .external_lex_state = 13}, + [10588] = {.lex_state = 7, .external_lex_state = 13}, + [10589] = {.lex_state = 7, .external_lex_state = 14}, + [10590] = {.lex_state = 7, .external_lex_state = 12}, + [10591] = {.lex_state = 7, .external_lex_state = 13}, + [10592] = {.lex_state = 7, .external_lex_state = 14}, + [10593] = {.lex_state = 7, .external_lex_state = 14}, + [10594] = {.lex_state = 7, .external_lex_state = 14}, + [10595] = {.lex_state = 7, .external_lex_state = 13}, + [10596] = {.lex_state = 7, .external_lex_state = 14}, + [10597] = {.lex_state = 7, .external_lex_state = 14}, + [10598] = {.lex_state = 7, .external_lex_state = 14}, + [10599] = {.lex_state = 7, .external_lex_state = 11}, + [10600] = {.lex_state = 7, .external_lex_state = 14}, + [10601] = {.lex_state = 7, .external_lex_state = 14}, + [10602] = {.lex_state = 7, .external_lex_state = 13}, + [10603] = {.lex_state = 7, .external_lex_state = 13}, + [10604] = {.lex_state = 7, .external_lex_state = 14}, + [10605] = {.lex_state = 7, .external_lex_state = 13}, + [10606] = {.lex_state = 7, .external_lex_state = 13}, + [10607] = {.lex_state = 7, .external_lex_state = 13}, + [10608] = {.lex_state = 7, .external_lex_state = 13}, + [10609] = {.lex_state = 7, .external_lex_state = 14}, + [10610] = {.lex_state = 7, .external_lex_state = 13}, + [10611] = {.lex_state = 7, .external_lex_state = 13}, + [10612] = {.lex_state = 7, .external_lex_state = 13}, + [10613] = {.lex_state = 7, .external_lex_state = 14}, + [10614] = {.lex_state = 7, .external_lex_state = 13}, + [10615] = {.lex_state = 7, .external_lex_state = 13}, + [10616] = {.lex_state = 7, .external_lex_state = 14}, + [10617] = {.lex_state = 7, .external_lex_state = 13}, + [10618] = {.lex_state = 7, .external_lex_state = 14}, + [10619] = {.lex_state = 7, .external_lex_state = 14}, + [10620] = {.lex_state = 7, .external_lex_state = 15}, + [10621] = {.lex_state = 7, .external_lex_state = 14}, + [10622] = {.lex_state = 7, .external_lex_state = 13}, + [10623] = {.lex_state = 7, .external_lex_state = 13}, + [10624] = {.lex_state = 7, .external_lex_state = 14}, + [10625] = {.lex_state = 7, .external_lex_state = 13}, + [10626] = {.lex_state = 7, .external_lex_state = 13}, + [10627] = {.lex_state = 7, .external_lex_state = 14}, + [10628] = {.lex_state = 7, .external_lex_state = 14}, + [10629] = {.lex_state = 7, .external_lex_state = 14}, + [10630] = {.lex_state = 7, .external_lex_state = 14}, + [10631] = {.lex_state = 7, .external_lex_state = 13}, + [10632] = {.lex_state = 7, .external_lex_state = 14}, + [10633] = {.lex_state = 7, .external_lex_state = 13}, + [10634] = {.lex_state = 7, .external_lex_state = 14}, + [10635] = {.lex_state = 7, .external_lex_state = 14}, + [10636] = {.lex_state = 7, .external_lex_state = 11}, + [10637] = {.lex_state = 7, .external_lex_state = 13}, + [10638] = {.lex_state = 7, .external_lex_state = 14}, + [10639] = {.lex_state = 7, .external_lex_state = 13}, + [10640] = {.lex_state = 7, .external_lex_state = 13}, + [10641] = {.lex_state = 7, .external_lex_state = 11}, + [10642] = {.lex_state = 7, .external_lex_state = 13}, + [10643] = {.lex_state = 7, .external_lex_state = 11}, + [10644] = {.lex_state = 7, .external_lex_state = 11}, + [10645] = {.lex_state = 7, .external_lex_state = 13}, + [10646] = {.lex_state = 7, .external_lex_state = 13}, + [10647] = {.lex_state = 7, .external_lex_state = 11}, + [10648] = {.lex_state = 7, .external_lex_state = 11}, + [10649] = {.lex_state = 7, .external_lex_state = 13}, + [10650] = {.lex_state = 7, .external_lex_state = 11}, + [10651] = {.lex_state = 7, .external_lex_state = 13}, + [10652] = {.lex_state = 7, .external_lex_state = 11}, + [10653] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [10654] = {.lex_state = 7, .external_lex_state = 13}, + [10655] = {.lex_state = 7, .external_lex_state = 11}, + [10656] = {.lex_state = 7, .external_lex_state = 11}, + [10657] = {.lex_state = 7, .external_lex_state = 11}, + [10658] = {.lex_state = 7, .external_lex_state = 11}, + [10659] = {.lex_state = 7, .external_lex_state = 13}, + [10660] = {.lex_state = 7, .external_lex_state = 13}, + [10661] = {.lex_state = 7, .external_lex_state = 11}, + [10662] = {.lex_state = 7, .external_lex_state = 13}, + [10663] = {.lex_state = 7, .external_lex_state = 13}, + [10664] = {.lex_state = 7, .external_lex_state = 11}, + [10665] = {.lex_state = 7, .external_lex_state = 11}, + [10666] = {.lex_state = 0, .external_lex_state = 17}, + [10667] = {.lex_state = 7, .external_lex_state = 13}, + [10668] = {.lex_state = 7, .external_lex_state = 11}, + [10669] = {.lex_state = 0, .external_lex_state = 17}, + [10670] = {.lex_state = 7, .external_lex_state = 13}, + [10671] = {.lex_state = 7, .external_lex_state = 13}, + [10672] = {.lex_state = 7, .external_lex_state = 13}, + [10673] = {.lex_state = 0, .external_lex_state = 17}, + [10674] = {.lex_state = 7, .external_lex_state = 13}, + [10675] = {.lex_state = 7, .external_lex_state = 13}, + [10676] = {.lex_state = 7, .external_lex_state = 13}, + [10677] = {.lex_state = 7, .external_lex_state = 13}, + [10678] = {.lex_state = 7, .external_lex_state = 14}, + [10679] = {.lex_state = 7, .external_lex_state = 13}, + [10680] = {.lex_state = 7, .external_lex_state = 12}, + [10681] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10682] = {.lex_state = 7, .external_lex_state = 13}, + [10683] = {.lex_state = 7, .external_lex_state = 13}, + [10684] = {.lex_state = 7, .external_lex_state = 11}, + [10685] = {.lex_state = 7, .external_lex_state = 13}, + [10686] = {.lex_state = 7, .external_lex_state = 13}, + [10687] = {.lex_state = 7, .external_lex_state = 13}, + [10688] = {.lex_state = 7, .external_lex_state = 13}, + [10689] = {.lex_state = 7, .external_lex_state = 13}, + [10690] = {.lex_state = 7, .external_lex_state = 15}, + [10691] = {.lex_state = 7, .external_lex_state = 14}, + [10692] = {.lex_state = 7, .external_lex_state = 11}, + [10693] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10694] = {.lex_state = 7, .external_lex_state = 13}, + [10695] = {.lex_state = 7, .external_lex_state = 13}, + [10696] = {.lex_state = 7, .external_lex_state = 11}, + [10697] = {.lex_state = 7, .external_lex_state = 11}, + [10698] = {.lex_state = 7, .external_lex_state = 13}, + [10699] = {.lex_state = 7, .external_lex_state = 13}, + [10700] = {.lex_state = 7, .external_lex_state = 13}, + [10701] = {.lex_state = 7, .external_lex_state = 13}, + [10702] = {.lex_state = 7, .external_lex_state = 12}, + [10703] = {.lex_state = 7, .external_lex_state = 14}, + [10704] = {.lex_state = 7, .external_lex_state = 14}, + [10705] = {.lex_state = 7, .external_lex_state = 13}, + [10706] = {.lex_state = 7, .external_lex_state = 14}, + [10707] = {.lex_state = 7, .external_lex_state = 13}, + [10708] = {.lex_state = 7, .external_lex_state = 13}, + [10709] = {.lex_state = 7, .external_lex_state = 12}, + [10710] = {.lex_state = 7, .external_lex_state = 13}, + [10711] = {.lex_state = 7, .external_lex_state = 13}, + [10712] = {.lex_state = 7, .external_lex_state = 13}, + [10713] = {.lex_state = 7, .external_lex_state = 14}, + [10714] = {.lex_state = 7, .external_lex_state = 13}, + [10715] = {.lex_state = 7, .external_lex_state = 12}, + [10716] = {.lex_state = 7, .external_lex_state = 13}, + [10717] = {.lex_state = 7, .external_lex_state = 13}, + [10718] = {.lex_state = 7, .external_lex_state = 12}, + [10719] = {.lex_state = 7, .external_lex_state = 15}, + [10720] = {.lex_state = 7, .external_lex_state = 13}, + [10721] = {.lex_state = 7, .external_lex_state = 14}, + [10722] = {.lex_state = 7, .external_lex_state = 14}, + [10723] = {.lex_state = 7, .external_lex_state = 14}, + [10724] = {.lex_state = 7, .external_lex_state = 14}, + [10725] = {.lex_state = 7, .external_lex_state = 13}, + [10726] = {.lex_state = 7, .external_lex_state = 14}, + [10727] = {.lex_state = 7, .external_lex_state = 13}, + [10728] = {.lex_state = 7, .external_lex_state = 13}, + [10729] = {.lex_state = 7, .external_lex_state = 12}, + [10730] = {.lex_state = 7, .external_lex_state = 13}, + [10731] = {.lex_state = 7, .external_lex_state = 13}, + [10732] = {.lex_state = 7, .external_lex_state = 13}, + [10733] = {.lex_state = 7, .external_lex_state = 13}, + [10734] = {.lex_state = 7, .external_lex_state = 13}, + [10735] = {.lex_state = 7, .external_lex_state = 12}, + [10736] = {.lex_state = 7, .external_lex_state = 15}, + [10737] = {.lex_state = 7, .external_lex_state = 12}, + [10738] = {.lex_state = 7, .external_lex_state = 13}, + [10739] = {.lex_state = 7, .external_lex_state = 11}, + [10740] = {.lex_state = 7, .external_lex_state = 11}, + [10741] = {.lex_state = 7, .external_lex_state = 13}, + [10742] = {.lex_state = 7, .external_lex_state = 11}, + [10743] = {.lex_state = 7, .external_lex_state = 11}, + [10744] = {.lex_state = 7, .external_lex_state = 11}, + [10745] = {.lex_state = 7, .external_lex_state = 11}, + [10746] = {.lex_state = 7, .external_lex_state = 11}, + [10747] = {.lex_state = 7, .external_lex_state = 11}, + [10748] = {.lex_state = 7, .external_lex_state = 11}, + [10749] = {.lex_state = 7, .external_lex_state = 11}, + [10750] = {.lex_state = 7, .external_lex_state = 11}, + [10751] = {.lex_state = 7, .external_lex_state = 11}, + [10752] = {.lex_state = 7, .external_lex_state = 12}, + [10753] = {.lex_state = 7, .external_lex_state = 11}, + [10754] = {.lex_state = 7, .external_lex_state = 11}, + [10755] = {.lex_state = 7, .external_lex_state = 11}, + [10756] = {.lex_state = 7, .external_lex_state = 11}, + [10757] = {.lex_state = 7, .external_lex_state = 11}, + [10758] = {.lex_state = 7, .external_lex_state = 11}, + [10759] = {.lex_state = 7, .external_lex_state = 11}, + [10760] = {.lex_state = 7, .external_lex_state = 11}, + [10761] = {.lex_state = 7, .external_lex_state = 11}, + [10762] = {.lex_state = 7, .external_lex_state = 12}, + [10763] = {.lex_state = 7, .external_lex_state = 13}, + [10764] = {.lex_state = 7, .external_lex_state = 11}, + [10765] = {.lex_state = 7, .external_lex_state = 11}, + [10766] = {.lex_state = 7, .external_lex_state = 11}, + [10767] = {.lex_state = 0, .external_lex_state = 17}, + [10768] = {.lex_state = 7, .external_lex_state = 13}, + [10769] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10770] = {.lex_state = 7, .external_lex_state = 11}, + [10771] = {.lex_state = 7, .external_lex_state = 11}, + [10772] = {.lex_state = 7, .external_lex_state = 14}, + [10773] = {.lex_state = 7, .external_lex_state = 11}, + [10774] = {.lex_state = 7, .external_lex_state = 11}, + [10775] = {.lex_state = 7, .external_lex_state = 11}, + [10776] = {.lex_state = 7, .external_lex_state = 11}, + [10777] = {.lex_state = 7, .external_lex_state = 14}, + [10778] = {.lex_state = 7, .external_lex_state = 11}, + [10779] = {.lex_state = 7, .external_lex_state = 13}, + [10780] = {.lex_state = 7, .external_lex_state = 13}, + [10781] = {.lex_state = 7, .external_lex_state = 13}, + [10782] = {.lex_state = 7, .external_lex_state = 14}, + [10783] = {.lex_state = 7, .external_lex_state = 11}, + [10784] = {.lex_state = 7, .external_lex_state = 11}, + [10785] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10786] = {.lex_state = 7, .external_lex_state = 15}, + [10787] = {.lex_state = 7, .external_lex_state = 13}, + [10788] = {.lex_state = 7, .external_lex_state = 12}, + [10789] = {.lex_state = 7, .external_lex_state = 14}, + [10790] = {.lex_state = 7, .external_lex_state = 13}, + [10791] = {.lex_state = 7, .external_lex_state = 12}, + [10792] = {.lex_state = 7, .external_lex_state = 14}, + [10793] = {.lex_state = 7, .external_lex_state = 14}, + [10794] = {.lex_state = 7, .external_lex_state = 13}, + [10795] = {.lex_state = 7, .external_lex_state = 13}, + [10796] = {.lex_state = 7, .external_lex_state = 15}, + [10797] = {.lex_state = 7, .external_lex_state = 13}, + [10798] = {.lex_state = 7, .external_lex_state = 13}, + [10799] = {.lex_state = 7, .external_lex_state = 12}, + [10800] = {.lex_state = 7, .external_lex_state = 13}, + [10801] = {.lex_state = 7, .external_lex_state = 13}, + [10802] = {.lex_state = 7, .external_lex_state = 13}, + [10803] = {.lex_state = 7, .external_lex_state = 13}, + [10804] = {.lex_state = 7, .external_lex_state = 13}, + [10805] = {.lex_state = 7, .external_lex_state = 13}, + [10806] = {.lex_state = 7, .external_lex_state = 13}, + [10807] = {.lex_state = 7, .external_lex_state = 13}, + [10808] = {.lex_state = 7, .external_lex_state = 13}, + [10809] = {.lex_state = 7, .external_lex_state = 13}, + [10810] = {.lex_state = 7, .external_lex_state = 13}, + [10811] = {.lex_state = 7, .external_lex_state = 13}, + [10812] = {.lex_state = 7, .external_lex_state = 13}, + [10813] = {.lex_state = 7, .external_lex_state = 13}, + [10814] = {.lex_state = 7, .external_lex_state = 13}, + [10815] = {.lex_state = 7, .external_lex_state = 13}, + [10816] = {.lex_state = 7, .external_lex_state = 13}, + [10817] = {.lex_state = 7, .external_lex_state = 13}, + [10818] = {.lex_state = 7, .external_lex_state = 13}, + [10819] = {.lex_state = 7, .external_lex_state = 13}, + [10820] = {.lex_state = 7, .external_lex_state = 13}, + [10821] = {.lex_state = 7, .external_lex_state = 13}, + [10822] = {.lex_state = 7, .external_lex_state = 13}, + [10823] = {.lex_state = 7, .external_lex_state = 13}, + [10824] = {.lex_state = 7, .external_lex_state = 14}, + [10825] = {.lex_state = 7, .external_lex_state = 13}, + [10826] = {.lex_state = 7, .external_lex_state = 13}, + [10827] = {.lex_state = 7, .external_lex_state = 12}, + [10828] = {.lex_state = 7, .external_lex_state = 13}, + [10829] = {.lex_state = 7, .external_lex_state = 13}, + [10830] = {.lex_state = 7, .external_lex_state = 13}, + [10831] = {.lex_state = 7, .external_lex_state = 13}, + [10832] = {.lex_state = 7, .external_lex_state = 13}, + [10833] = {.lex_state = 7, .external_lex_state = 13}, + [10834] = {.lex_state = 7, .external_lex_state = 13}, + [10835] = {.lex_state = 7, .external_lex_state = 13}, + [10836] = {.lex_state = 7, .external_lex_state = 13}, + [10837] = {.lex_state = 9, .external_lex_state = 11, .reserved_word_set_id = 1}, + [10838] = {.lex_state = 7, .external_lex_state = 13}, + [10839] = {.lex_state = 7, .external_lex_state = 13}, + [10840] = {.lex_state = 7, .external_lex_state = 13}, + [10841] = {.lex_state = 7, .external_lex_state = 13}, + [10842] = {.lex_state = 7, .external_lex_state = 11}, + [10843] = {.lex_state = 7, .external_lex_state = 13}, + [10844] = {.lex_state = 7, .external_lex_state = 13}, + [10845] = {.lex_state = 7, .external_lex_state = 11}, + [10846] = {.lex_state = 7, .external_lex_state = 13}, + [10847] = {.lex_state = 7, .external_lex_state = 11}, + [10848] = {.lex_state = 7, .external_lex_state = 11}, + [10849] = {.lex_state = 7, .external_lex_state = 13}, + [10850] = {.lex_state = 7, .external_lex_state = 13}, + [10851] = {.lex_state = 7, .external_lex_state = 13}, + [10852] = {.lex_state = 7, .external_lex_state = 11}, + [10853] = {.lex_state = 7, .external_lex_state = 13}, + [10854] = {.lex_state = 7, .external_lex_state = 13}, + [10855] = {.lex_state = 7, .external_lex_state = 14}, + [10856] = {.lex_state = 7, .external_lex_state = 11}, + [10857] = {.lex_state = 7, .external_lex_state = 11}, + [10858] = {.lex_state = 7, .external_lex_state = 11}, + [10859] = {.lex_state = 7, .external_lex_state = 11}, + [10860] = {.lex_state = 7, .external_lex_state = 15}, + [10861] = {.lex_state = 7, .external_lex_state = 13}, + [10862] = {.lex_state = 7, .external_lex_state = 11}, + [10863] = {.lex_state = 7, .external_lex_state = 14}, + [10864] = {.lex_state = 7, .external_lex_state = 13}, + [10865] = {.lex_state = 7, .external_lex_state = 14}, + [10866] = {.lex_state = 7, .external_lex_state = 11}, + [10867] = {.lex_state = 7, .external_lex_state = 13}, + [10868] = {.lex_state = 7, .external_lex_state = 13}, + [10869] = {.lex_state = 7, .external_lex_state = 13}, + [10870] = {.lex_state = 7, .external_lex_state = 13}, + [10871] = {.lex_state = 7, .external_lex_state = 13}, + [10872] = {.lex_state = 7, .external_lex_state = 11}, + [10873] = {.lex_state = 7, .external_lex_state = 14}, + [10874] = {.lex_state = 7, .external_lex_state = 13}, + [10875] = {.lex_state = 7, .external_lex_state = 11}, + [10876] = {.lex_state = 7, .external_lex_state = 13}, + [10877] = {.lex_state = 7, .external_lex_state = 13}, + [10878] = {.lex_state = 7, .external_lex_state = 11}, + [10879] = {.lex_state = 7, .external_lex_state = 11}, + [10880] = {.lex_state = 7, .external_lex_state = 13}, + [10881] = {.lex_state = 7, .external_lex_state = 13}, + [10882] = {.lex_state = 7, .external_lex_state = 11}, + [10883] = {.lex_state = 7, .external_lex_state = 13}, + [10884] = {.lex_state = 7, .external_lex_state = 13}, + [10885] = {.lex_state = 7, .external_lex_state = 11}, + [10886] = {.lex_state = 7, .external_lex_state = 14}, + [10887] = {.lex_state = 7, .external_lex_state = 13}, + [10888] = {.lex_state = 7, .external_lex_state = 14}, + [10889] = {.lex_state = 7, .external_lex_state = 14}, + [10890] = {.lex_state = 7, .external_lex_state = 13}, + [10891] = {.lex_state = 7, .external_lex_state = 14}, + [10892] = {.lex_state = 7, .external_lex_state = 13}, + [10893] = {.lex_state = 7, .external_lex_state = 13}, + [10894] = {.lex_state = 7, .external_lex_state = 13}, + [10895] = {.lex_state = 7, .external_lex_state = 11}, + [10896] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10897] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10898] = {.lex_state = 7, .external_lex_state = 14}, + [10899] = {.lex_state = 7, .external_lex_state = 11}, + [10900] = {.lex_state = 7, .external_lex_state = 14}, + [10901] = {.lex_state = 7, .external_lex_state = 11}, + [10902] = {.lex_state = 7, .external_lex_state = 14}, + [10903] = {.lex_state = 7, .external_lex_state = 11}, + [10904] = {.lex_state = 7, .external_lex_state = 14}, + [10905] = {.lex_state = 7, .external_lex_state = 11}, + [10906] = {.lex_state = 7, .external_lex_state = 11}, + [10907] = {.lex_state = 7, .external_lex_state = 11}, + [10908] = {.lex_state = 7, .external_lex_state = 11}, + [10909] = {.lex_state = 7, .external_lex_state = 11}, + [10910] = {.lex_state = 7, .external_lex_state = 13}, + [10911] = {.lex_state = 7, .external_lex_state = 11}, + [10912] = {.lex_state = 7, .external_lex_state = 13}, + [10913] = {.lex_state = 7, .external_lex_state = 11}, + [10914] = {.lex_state = 7, .external_lex_state = 13}, + [10915] = {.lex_state = 7, .external_lex_state = 11}, + [10916] = {.lex_state = 7, .external_lex_state = 11}, + [10917] = {.lex_state = 7, .external_lex_state = 11}, + [10918] = {.lex_state = 7, .external_lex_state = 11}, + [10919] = {.lex_state = 7, .external_lex_state = 11}, + [10920] = {.lex_state = 7, .external_lex_state = 11}, + [10921] = {.lex_state = 7, .external_lex_state = 14}, + [10922] = {.lex_state = 7, .external_lex_state = 14}, + [10923] = {.lex_state = 7, .external_lex_state = 11}, + [10924] = {.lex_state = 7, .external_lex_state = 14}, + [10925] = {.lex_state = 7, .external_lex_state = 11}, + [10926] = {.lex_state = 7, .external_lex_state = 14}, + [10927] = {.lex_state = 7, .external_lex_state = 11}, + [10928] = {.lex_state = 7, .external_lex_state = 11}, + [10929] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10930] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10931] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10932] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10933] = {.lex_state = 7, .external_lex_state = 11}, + [10934] = {.lex_state = 7, .external_lex_state = 13}, + [10935] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10936] = {.lex_state = 7, .external_lex_state = 11}, + [10937] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 33}, + [10938] = {.lex_state = 7, .external_lex_state = 14}, + [10939] = {.lex_state = 7, .external_lex_state = 13}, + [10940] = {.lex_state = 7, .external_lex_state = 14}, + [10941] = {.lex_state = 7, .external_lex_state = 14}, + [10942] = {.lex_state = 7, .external_lex_state = 14}, + [10943] = {.lex_state = 53, .external_lex_state = 19}, + [10944] = {.lex_state = 7, .external_lex_state = 13}, + [10945] = {.lex_state = 7, .external_lex_state = 13}, + [10946] = {.lex_state = 7, .external_lex_state = 13}, + [10947] = {.lex_state = 53, .external_lex_state = 19}, + [10948] = {.lex_state = 7, .external_lex_state = 13}, + [10949] = {.lex_state = 7, .external_lex_state = 13}, + [10950] = {.lex_state = 7, .external_lex_state = 13}, + [10951] = {.lex_state = 7, .external_lex_state = 13}, + [10952] = {.lex_state = 7, .external_lex_state = 13}, + [10953] = {.lex_state = 7, .external_lex_state = 13}, + [10954] = {.lex_state = 7, .external_lex_state = 14}, + [10955] = {.lex_state = 7, .external_lex_state = 13}, + [10956] = {.lex_state = 53, .external_lex_state = 15}, + [10957] = {.lex_state = 53, .external_lex_state = 19}, + [10958] = {.lex_state = 7, .external_lex_state = 13}, + [10959] = {.lex_state = 53, .external_lex_state = 19}, + [10960] = {.lex_state = 7, .external_lex_state = 13}, + [10961] = {.lex_state = 7, .external_lex_state = 13}, + [10962] = {.lex_state = 7, .external_lex_state = 13}, + [10963] = {.lex_state = 7, .external_lex_state = 13}, + [10964] = {.lex_state = 7, .external_lex_state = 13}, + [10965] = {.lex_state = 7, .external_lex_state = 14}, + [10966] = {.lex_state = 7, .external_lex_state = 13}, + [10967] = {.lex_state = 7, .external_lex_state = 13}, + [10968] = {.lex_state = 7, .external_lex_state = 13}, + [10969] = {.lex_state = 53, .external_lex_state = 13}, + [10970] = {.lex_state = 7, .external_lex_state = 14}, + [10971] = {.lex_state = 7, .external_lex_state = 13}, + [10972] = {.lex_state = 53, .external_lex_state = 13}, + [10973] = {.lex_state = 53, .external_lex_state = 15}, + [10974] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [10975] = {.lex_state = 7, .external_lex_state = 12}, + [10976] = {.lex_state = 7, .external_lex_state = 14}, + [10977] = {.lex_state = 7, .external_lex_state = 14}, + [10978] = {.lex_state = 7, .external_lex_state = 14}, + [10979] = {.lex_state = 7, .external_lex_state = 12}, + [10980] = {.lex_state = 7, .external_lex_state = 13}, + [10981] = {.lex_state = 7, .external_lex_state = 12}, + [10982] = {.lex_state = 53, .external_lex_state = 19}, + [10983] = {.lex_state = 7, .external_lex_state = 13}, + [10984] = {.lex_state = 7, .external_lex_state = 12}, + [10985] = {.lex_state = 7, .external_lex_state = 13}, + [10986] = {.lex_state = 7, .external_lex_state = 13}, + [10987] = {.lex_state = 7, .external_lex_state = 13}, + [10988] = {.lex_state = 7, .external_lex_state = 12}, + [10989] = {.lex_state = 7, .external_lex_state = 12}, + [10990] = {.lex_state = 7, .external_lex_state = 13}, + [10991] = {.lex_state = 7, .external_lex_state = 14}, + [10992] = {.lex_state = 7, .external_lex_state = 12}, + [10993] = {.lex_state = 7, .external_lex_state = 13}, + [10994] = {.lex_state = 7, .external_lex_state = 12}, + [10995] = {.lex_state = 7, .external_lex_state = 13}, + [10996] = {.lex_state = 7, .external_lex_state = 13}, + [10997] = {.lex_state = 3, .external_lex_state = 15}, + [10998] = {.lex_state = 7, .external_lex_state = 13}, + [10999] = {.lex_state = 7, .external_lex_state = 13}, + [11000] = {.lex_state = 7, .external_lex_state = 13}, + [11001] = {.lex_state = 7, .external_lex_state = 13}, + [11002] = {.lex_state = 7, .external_lex_state = 12}, + [11003] = {.lex_state = 7, .external_lex_state = 13}, + [11004] = {.lex_state = 7, .external_lex_state = 13}, + [11005] = {.lex_state = 53, .external_lex_state = 19}, + [11006] = {.lex_state = 7, .external_lex_state = 14}, + [11007] = {.lex_state = 7, .external_lex_state = 13}, + [11008] = {.lex_state = 7, .external_lex_state = 14}, + [11009] = {.lex_state = 7, .external_lex_state = 13}, + [11010] = {.lex_state = 7, .external_lex_state = 13}, + [11011] = {.lex_state = 7, .external_lex_state = 13}, + [11012] = {.lex_state = 7, .external_lex_state = 13}, + [11013] = {.lex_state = 7, .external_lex_state = 13}, + [11014] = {.lex_state = 7, .external_lex_state = 13}, + [11015] = {.lex_state = 7, .external_lex_state = 15}, + [11016] = {.lex_state = 7, .external_lex_state = 15}, + [11017] = {.lex_state = 7, .external_lex_state = 13}, + [11018] = {.lex_state = 7, .external_lex_state = 13}, + [11019] = {.lex_state = 7, .external_lex_state = 12}, + [11020] = {.lex_state = 7, .external_lex_state = 12}, + [11021] = {.lex_state = 7, .external_lex_state = 12}, + [11022] = {.lex_state = 53, .external_lex_state = 19}, + [11023] = {.lex_state = 7, .external_lex_state = 13}, + [11024] = {.lex_state = 7, .external_lex_state = 13}, + [11025] = {.lex_state = 7, .external_lex_state = 13}, + [11026] = {.lex_state = 7, .external_lex_state = 13}, + [11027] = {.lex_state = 7, .external_lex_state = 13}, + [11028] = {.lex_state = 7, .external_lex_state = 13}, + [11029] = {.lex_state = 7, .external_lex_state = 13}, + [11030] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [11031] = {.lex_state = 7, .external_lex_state = 13}, + [11032] = {.lex_state = 3, .external_lex_state = 15}, + [11033] = {.lex_state = 7, .external_lex_state = 13}, + [11034] = {.lex_state = 7, .external_lex_state = 13}, + [11035] = {.lex_state = 7, .external_lex_state = 13}, + [11036] = {.lex_state = 7, .external_lex_state = 13}, + [11037] = {.lex_state = 7, .external_lex_state = 13}, + [11038] = {.lex_state = 7, .external_lex_state = 13}, + [11039] = {.lex_state = 7, .external_lex_state = 13}, + [11040] = {.lex_state = 53, .external_lex_state = 19}, + [11041] = {.lex_state = 7, .external_lex_state = 13}, + [11042] = {.lex_state = 7, .external_lex_state = 13}, + [11043] = {.lex_state = 7, .external_lex_state = 13}, + [11044] = {.lex_state = 7, .external_lex_state = 13}, + [11045] = {.lex_state = 7, .external_lex_state = 13}, + [11046] = {.lex_state = 7, .external_lex_state = 13}, + [11047] = {.lex_state = 7, .external_lex_state = 13}, + [11048] = {.lex_state = 53, .external_lex_state = 19}, + [11049] = {.lex_state = 7, .external_lex_state = 13}, + [11050] = {.lex_state = 7, .external_lex_state = 11}, + [11051] = {.lex_state = 7, .external_lex_state = 13}, + [11052] = {.lex_state = 7, .external_lex_state = 11}, + [11053] = {.lex_state = 7, .external_lex_state = 13}, + [11054] = {.lex_state = 7, .external_lex_state = 13}, + [11055] = {.lex_state = 7, .external_lex_state = 13}, + [11056] = {.lex_state = 7, .external_lex_state = 13}, + [11057] = {.lex_state = 7, .external_lex_state = 15}, + [11058] = {.lex_state = 7, .external_lex_state = 15}, + [11059] = {.lex_state = 53, .external_lex_state = 19}, + [11060] = {.lex_state = 7, .external_lex_state = 14}, + [11061] = {.lex_state = 7, .external_lex_state = 13}, + [11062] = {.lex_state = 7, .external_lex_state = 13}, + [11063] = {.lex_state = 53, .external_lex_state = 19}, + [11064] = {.lex_state = 53, .external_lex_state = 15}, + [11065] = {.lex_state = 53, .external_lex_state = 15}, + [11066] = {.lex_state = 7, .external_lex_state = 15}, + [11067] = {.lex_state = 7, .external_lex_state = 13}, + [11068] = {.lex_state = 7, .external_lex_state = 13}, + [11069] = {.lex_state = 7, .external_lex_state = 13}, + [11070] = {.lex_state = 7, .external_lex_state = 13}, + [11071] = {.lex_state = 7, .external_lex_state = 13}, + [11072] = {.lex_state = 53, .external_lex_state = 19}, + [11073] = {.lex_state = 7, .external_lex_state = 14}, + [11074] = {.lex_state = 7, .external_lex_state = 13}, + [11075] = {.lex_state = 7, .external_lex_state = 13}, + [11076] = {.lex_state = 7, .external_lex_state = 14}, + [11077] = {.lex_state = 7, .external_lex_state = 14}, + [11078] = {.lex_state = 7, .external_lex_state = 13}, + [11079] = {.lex_state = 7, .external_lex_state = 14}, + [11080] = {.lex_state = 7, .external_lex_state = 15}, + [11081] = {.lex_state = 3, .external_lex_state = 15}, + [11082] = {.lex_state = 7, .external_lex_state = 13}, + [11083] = {.lex_state = 7, .external_lex_state = 13}, + [11084] = {.lex_state = 7, .external_lex_state = 14}, + [11085] = {.lex_state = 7, .external_lex_state = 13}, + [11086] = {.lex_state = 7, .external_lex_state = 13}, + [11087] = {.lex_state = 7, .external_lex_state = 13}, + [11088] = {.lex_state = 7, .external_lex_state = 13}, + [11089] = {.lex_state = 7, .external_lex_state = 13}, + [11090] = {.lex_state = 7, .external_lex_state = 14}, + [11091] = {.lex_state = 53, .external_lex_state = 19}, + [11092] = {.lex_state = 7, .external_lex_state = 13}, + [11093] = {.lex_state = 7, .external_lex_state = 14}, + [11094] = {.lex_state = 7, .external_lex_state = 13}, + [11095] = {.lex_state = 7, .external_lex_state = 13}, + [11096] = {.lex_state = 7, .external_lex_state = 13}, + [11097] = {.lex_state = 53, .external_lex_state = 19}, + [11098] = {.lex_state = 7, .external_lex_state = 13}, + [11099] = {.lex_state = 7, .external_lex_state = 14}, + [11100] = {.lex_state = 7, .external_lex_state = 14}, + [11101] = {.lex_state = 7, .external_lex_state = 13}, + [11102] = {.lex_state = 7, .external_lex_state = 13}, + [11103] = {.lex_state = 7, .external_lex_state = 15}, + [11104] = {.lex_state = 7, .external_lex_state = 13}, + [11105] = {.lex_state = 7, .external_lex_state = 13}, + [11106] = {.lex_state = 53, .external_lex_state = 15}, + [11107] = {.lex_state = 7, .external_lex_state = 15}, + [11108] = {.lex_state = 7, .external_lex_state = 14}, + [11109] = {.lex_state = 7, .external_lex_state = 14}, + [11110] = {.lex_state = 7, .external_lex_state = 13}, + [11111] = {.lex_state = 7, .external_lex_state = 13}, + [11112] = {.lex_state = 7, .external_lex_state = 13}, + [11113] = {.lex_state = 7, .external_lex_state = 13}, + [11114] = {.lex_state = 7, .external_lex_state = 13}, + [11115] = {.lex_state = 7, .external_lex_state = 13}, + [11116] = {.lex_state = 7, .external_lex_state = 13}, + [11117] = {.lex_state = 7, .external_lex_state = 13}, + [11118] = {.lex_state = 7, .external_lex_state = 13}, + [11119] = {.lex_state = 7, .external_lex_state = 13}, + [11120] = {.lex_state = 7, .external_lex_state = 13}, + [11121] = {.lex_state = 7, .external_lex_state = 13}, + [11122] = {.lex_state = 9, .external_lex_state = 14, .reserved_word_set_id = 1}, + [11123] = {.lex_state = 7, .external_lex_state = 13}, + [11124] = {.lex_state = 7, .external_lex_state = 13}, + [11125] = {.lex_state = 7, .external_lex_state = 13}, + [11126] = {.lex_state = 53, .external_lex_state = 19}, + [11127] = {.lex_state = 7, .external_lex_state = 13}, + [11128] = {.lex_state = 7, .external_lex_state = 13}, + [11129] = {.lex_state = 53, .external_lex_state = 19}, + [11130] = {.lex_state = 7, .external_lex_state = 13}, + [11131] = {.lex_state = 7, .external_lex_state = 13}, + [11132] = {.lex_state = 7, .external_lex_state = 11}, + [11133] = {.lex_state = 7, .external_lex_state = 13}, + [11134] = {.lex_state = 7, .external_lex_state = 14}, + [11135] = {.lex_state = 7, .external_lex_state = 13}, + [11136] = {.lex_state = 7, .external_lex_state = 13}, + [11137] = {.lex_state = 7, .external_lex_state = 13}, + [11138] = {.lex_state = 53, .external_lex_state = 19}, + [11139] = {.lex_state = 7, .external_lex_state = 12}, + [11140] = {.lex_state = 7, .external_lex_state = 13}, + [11141] = {.lex_state = 7, .external_lex_state = 13}, + [11142] = {.lex_state = 7, .external_lex_state = 13}, + [11143] = {.lex_state = 7, .external_lex_state = 13}, + [11144] = {.lex_state = 7, .external_lex_state = 13}, + [11145] = {.lex_state = 7, .external_lex_state = 13}, + [11146] = {.lex_state = 7, .external_lex_state = 13}, + [11147] = {.lex_state = 53, .external_lex_state = 15}, + [11148] = {.lex_state = 7, .external_lex_state = 14}, + [11149] = {.lex_state = 7, .external_lex_state = 13}, + [11150] = {.lex_state = 7, .external_lex_state = 13}, + [11151] = {.lex_state = 7, .external_lex_state = 13}, + [11152] = {.lex_state = 53, .external_lex_state = 19}, + [11153] = {.lex_state = 7, .external_lex_state = 13}, + [11154] = {.lex_state = 7, .external_lex_state = 13}, + [11155] = {.lex_state = 53, .external_lex_state = 15}, + [11156] = {.lex_state = 7, .external_lex_state = 11}, + [11157] = {.lex_state = 7, .external_lex_state = 13}, + [11158] = {.lex_state = 53, .external_lex_state = 15}, + [11159] = {.lex_state = 7, .external_lex_state = 14}, + [11160] = {.lex_state = 7, .external_lex_state = 13}, + [11161] = {.lex_state = 7, .external_lex_state = 11}, + [11162] = {.lex_state = 7, .external_lex_state = 13}, + [11163] = {.lex_state = 53, .external_lex_state = 15}, + [11164] = {.lex_state = 53, .external_lex_state = 19}, + [11165] = {.lex_state = 7, .external_lex_state = 13}, + [11166] = {.lex_state = 7, .external_lex_state = 14}, + [11167] = {.lex_state = 53, .external_lex_state = 19}, + [11168] = {.lex_state = 53, .external_lex_state = 19}, + [11169] = {.lex_state = 9, .external_lex_state = 14, .reserved_word_set_id = 1}, + [11170] = {.lex_state = 7, .external_lex_state = 13}, + [11171] = {.lex_state = 7, .external_lex_state = 13}, + [11172] = {.lex_state = 53, .external_lex_state = 15}, + [11173] = {.lex_state = 7, .external_lex_state = 13}, + [11174] = {.lex_state = 7, .external_lex_state = 13}, + [11175] = {.lex_state = 7, .external_lex_state = 13}, + [11176] = {.lex_state = 7, .external_lex_state = 13}, + [11177] = {.lex_state = 7, .external_lex_state = 13}, + [11178] = {.lex_state = 7, .external_lex_state = 13}, + [11179] = {.lex_state = 7, .external_lex_state = 13}, + [11180] = {.lex_state = 7, .external_lex_state = 13}, + [11181] = {.lex_state = 7, .external_lex_state = 11}, + [11182] = {.lex_state = 7, .external_lex_state = 13}, + [11183] = {.lex_state = 7, .external_lex_state = 13}, + [11184] = {.lex_state = 7, .external_lex_state = 15}, + [11185] = {.lex_state = 7, .external_lex_state = 15}, + [11186] = {.lex_state = 53, .external_lex_state = 15}, + [11187] = {.lex_state = 7, .external_lex_state = 13}, + [11188] = {.lex_state = 7, .external_lex_state = 13}, + [11189] = {.lex_state = 53, .external_lex_state = 14}, + [11190] = {.lex_state = 7, .external_lex_state = 13}, + [11191] = {.lex_state = 7, .external_lex_state = 13}, + [11192] = {.lex_state = 7, .external_lex_state = 13}, + [11193] = {.lex_state = 7, .external_lex_state = 13}, + [11194] = {.lex_state = 7, .external_lex_state = 12}, + [11195] = {.lex_state = 7, .external_lex_state = 12}, + [11196] = {.lex_state = 7, .external_lex_state = 12}, + [11197] = {.lex_state = 7, .external_lex_state = 12}, + [11198] = {.lex_state = 53, .external_lex_state = 12}, + [11199] = {.lex_state = 7, .external_lex_state = 13}, + [11200] = {.lex_state = 7, .external_lex_state = 13}, + [11201] = {.lex_state = 7, .external_lex_state = 13}, + [11202] = {.lex_state = 7, .external_lex_state = 13}, + [11203] = {.lex_state = 7, .external_lex_state = 13}, + [11204] = {.lex_state = 7, .external_lex_state = 13}, + [11205] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11206] = {.lex_state = 7, .external_lex_state = 13}, + [11207] = {.lex_state = 7, .external_lex_state = 13}, + [11208] = {.lex_state = 7, .external_lex_state = 13}, + [11209] = {.lex_state = 7, .external_lex_state = 13}, + [11210] = {.lex_state = 7, .external_lex_state = 15}, + [11211] = {.lex_state = 7, .external_lex_state = 15}, + [11212] = {.lex_state = 7, .external_lex_state = 13}, + [11213] = {.lex_state = 7, .external_lex_state = 15}, + [11214] = {.lex_state = 7, .external_lex_state = 13}, + [11215] = {.lex_state = 7, .external_lex_state = 15}, + [11216] = {.lex_state = 7, .external_lex_state = 13}, + [11217] = {.lex_state = 7, .external_lex_state = 15}, + [11218] = {.lex_state = 7, .external_lex_state = 13}, + [11219] = {.lex_state = 7, .external_lex_state = 13}, + [11220] = {.lex_state = 53, .external_lex_state = 12}, + [11221] = {.lex_state = 7, .external_lex_state = 13}, + [11222] = {.lex_state = 7, .external_lex_state = 13}, + [11223] = {.lex_state = 7, .external_lex_state = 13}, + [11224] = {.lex_state = 7, .external_lex_state = 13}, + [11225] = {.lex_state = 7, .external_lex_state = 13}, + [11226] = {.lex_state = 7, .external_lex_state = 13}, + [11227] = {.lex_state = 7, .external_lex_state = 13}, + [11228] = {.lex_state = 7, .external_lex_state = 13}, + [11229] = {.lex_state = 7, .external_lex_state = 13}, + [11230] = {.lex_state = 7, .external_lex_state = 13}, + [11231] = {.lex_state = 7, .external_lex_state = 13}, + [11232] = {.lex_state = 7, .external_lex_state = 12}, + [11233] = {.lex_state = 7, .external_lex_state = 12}, + [11234] = {.lex_state = 7, .external_lex_state = 12}, + [11235] = {.lex_state = 7, .external_lex_state = 12}, + [11236] = {.lex_state = 7, .external_lex_state = 12}, + [11237] = {.lex_state = 7, .external_lex_state = 13}, + [11238] = {.lex_state = 7, .external_lex_state = 12}, + [11239] = {.lex_state = 7, .external_lex_state = 13}, + [11240] = {.lex_state = 7, .external_lex_state = 13}, + [11241] = {.lex_state = 7, .external_lex_state = 20}, + [11242] = {.lex_state = 7, .external_lex_state = 13}, + [11243] = {.lex_state = 7, .external_lex_state = 13}, + [11244] = {.lex_state = 7, .external_lex_state = 13}, + [11245] = {.lex_state = 7, .external_lex_state = 13}, + [11246] = {.lex_state = 7, .external_lex_state = 13}, + [11247] = {.lex_state = 7, .external_lex_state = 13}, + [11248] = {.lex_state = 7, .external_lex_state = 13}, + [11249] = {.lex_state = 7, .external_lex_state = 13}, + [11250] = {.lex_state = 7, .external_lex_state = 13}, + [11251] = {.lex_state = 7, .external_lex_state = 13}, + [11252] = {.lex_state = 53, .external_lex_state = 13}, + [11253] = {.lex_state = 7, .external_lex_state = 13}, + [11254] = {.lex_state = 7, .external_lex_state = 13}, + [11255] = {.lex_state = 53, .external_lex_state = 11}, + [11256] = {.lex_state = 7, .external_lex_state = 13}, + [11257] = {.lex_state = 7, .external_lex_state = 14}, + [11258] = {.lex_state = 7, .external_lex_state = 13}, + [11259] = {.lex_state = 7, .external_lex_state = 13}, + [11260] = {.lex_state = 7, .external_lex_state = 13}, + [11261] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11262] = {.lex_state = 53, .external_lex_state = 13}, + [11263] = {.lex_state = 7, .external_lex_state = 13}, + [11264] = {.lex_state = 7, .external_lex_state = 13}, + [11265] = {.lex_state = 7, .external_lex_state = 13}, + [11266] = {.lex_state = 7, .external_lex_state = 13}, + [11267] = {.lex_state = 7, .external_lex_state = 13}, + [11268] = {.lex_state = 53, .external_lex_state = 11}, + [11269] = {.lex_state = 7, .external_lex_state = 13}, + [11270] = {.lex_state = 7, .external_lex_state = 13}, + [11271] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11272] = {.lex_state = 7, .external_lex_state = 13}, + [11273] = {.lex_state = 7, .external_lex_state = 13}, + [11274] = {.lex_state = 7, .external_lex_state = 13}, + [11275] = {.lex_state = 7, .external_lex_state = 13}, + [11276] = {.lex_state = 7, .external_lex_state = 13}, + [11277] = {.lex_state = 7, .external_lex_state = 13}, + [11278] = {.lex_state = 7, .external_lex_state = 13}, + [11279] = {.lex_state = 7, .external_lex_state = 13}, + [11280] = {.lex_state = 7, .external_lex_state = 13}, + [11281] = {.lex_state = 7, .external_lex_state = 14}, + [11282] = {.lex_state = 7, .external_lex_state = 13}, + [11283] = {.lex_state = 7, .external_lex_state = 13}, + [11284] = {.lex_state = 7, .external_lex_state = 13}, + [11285] = {.lex_state = 7, .external_lex_state = 13}, + [11286] = {.lex_state = 7, .external_lex_state = 13}, + [11287] = {.lex_state = 7, .external_lex_state = 13}, + [11288] = {.lex_state = 7, .external_lex_state = 15}, + [11289] = {.lex_state = 7, .external_lex_state = 13}, + [11290] = {.lex_state = 7, .external_lex_state = 13}, + [11291] = {.lex_state = 53, .external_lex_state = 11}, + [11292] = {.lex_state = 7, .external_lex_state = 13}, + [11293] = {.lex_state = 7, .external_lex_state = 13}, + [11294] = {.lex_state = 7, .external_lex_state = 13}, + [11295] = {.lex_state = 7, .external_lex_state = 13}, + [11296] = {.lex_state = 7, .external_lex_state = 13}, + [11297] = {.lex_state = 7, .external_lex_state = 13}, + [11298] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11299] = {.lex_state = 7, .external_lex_state = 13}, + [11300] = {.lex_state = 7, .external_lex_state = 13}, + [11301] = {.lex_state = 7, .external_lex_state = 13}, + [11302] = {.lex_state = 7, .external_lex_state = 13}, + [11303] = {.lex_state = 7, .external_lex_state = 13}, + [11304] = {.lex_state = 7, .external_lex_state = 13}, + [11305] = {.lex_state = 7, .external_lex_state = 13}, + [11306] = {.lex_state = 7, .external_lex_state = 13}, + [11307] = {.lex_state = 53, .external_lex_state = 13}, + [11308] = {.lex_state = 7, .external_lex_state = 13}, + [11309] = {.lex_state = 53, .external_lex_state = 11}, + [11310] = {.lex_state = 7, .external_lex_state = 13}, + [11311] = {.lex_state = 7, .external_lex_state = 13}, + [11312] = {.lex_state = 53, .external_lex_state = 15}, + [11313] = {.lex_state = 7, .external_lex_state = 13}, + [11314] = {.lex_state = 7, .external_lex_state = 13}, + [11315] = {.lex_state = 53, .external_lex_state = 13}, + [11316] = {.lex_state = 7, .external_lex_state = 13}, + [11317] = {.lex_state = 7, .external_lex_state = 13}, + [11318] = {.lex_state = 7, .external_lex_state = 13}, + [11319] = {.lex_state = 7, .external_lex_state = 13}, + [11320] = {.lex_state = 7, .external_lex_state = 13}, + [11321] = {.lex_state = 7, .external_lex_state = 13}, + [11322] = {.lex_state = 7, .external_lex_state = 13}, + [11323] = {.lex_state = 7, .external_lex_state = 13}, + [11324] = {.lex_state = 7, .external_lex_state = 13}, + [11325] = {.lex_state = 7, .external_lex_state = 13}, + [11326] = {.lex_state = 7, .external_lex_state = 13}, + [11327] = {.lex_state = 7, .external_lex_state = 13}, + [11328] = {.lex_state = 7, .external_lex_state = 13}, + [11329] = {.lex_state = 7, .external_lex_state = 13}, + [11330] = {.lex_state = 7, .external_lex_state = 13}, + [11331] = {.lex_state = 7, .external_lex_state = 11}, + [11332] = {.lex_state = 7, .external_lex_state = 13}, + [11333] = {.lex_state = 7, .external_lex_state = 13}, + [11334] = {.lex_state = 7, .external_lex_state = 13}, + [11335] = {.lex_state = 7, .external_lex_state = 13}, + [11336] = {.lex_state = 7, .external_lex_state = 13}, + [11337] = {.lex_state = 7, .external_lex_state = 13}, + [11338] = {.lex_state = 7, .external_lex_state = 13}, + [11339] = {.lex_state = 7, .external_lex_state = 13}, + [11340] = {.lex_state = 7, .external_lex_state = 13}, + [11341] = {.lex_state = 7, .external_lex_state = 13}, + [11342] = {.lex_state = 7, .external_lex_state = 13}, + [11343] = {.lex_state = 7, .external_lex_state = 13}, + [11344] = {.lex_state = 7, .external_lex_state = 13}, + [11345] = {.lex_state = 7, .external_lex_state = 13}, + [11346] = {.lex_state = 7, .external_lex_state = 13}, + [11347] = {.lex_state = 7, .external_lex_state = 13}, + [11348] = {.lex_state = 53, .external_lex_state = 12}, + [11349] = {.lex_state = 7, .external_lex_state = 13}, + [11350] = {.lex_state = 7, .external_lex_state = 13}, + [11351] = {.lex_state = 7, .external_lex_state = 13}, + [11352] = {.lex_state = 7, .external_lex_state = 13}, + [11353] = {.lex_state = 7, .external_lex_state = 13}, + [11354] = {.lex_state = 7, .external_lex_state = 13}, + [11355] = {.lex_state = 7, .external_lex_state = 13}, + [11356] = {.lex_state = 7, .external_lex_state = 13}, + [11357] = {.lex_state = 7, .external_lex_state = 13}, + [11358] = {.lex_state = 9, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11359] = {.lex_state = 7, .external_lex_state = 13}, + [11360] = {.lex_state = 7, .external_lex_state = 13}, + [11361] = {.lex_state = 7, .external_lex_state = 13}, + [11362] = {.lex_state = 7, .external_lex_state = 13}, + [11363] = {.lex_state = 7, .external_lex_state = 14}, + [11364] = {.lex_state = 7, .external_lex_state = 12}, + [11365] = {.lex_state = 7, .external_lex_state = 13}, + [11366] = {.lex_state = 7, .external_lex_state = 13}, + [11367] = {.lex_state = 7, .external_lex_state = 13}, + [11368] = {.lex_state = 7, .external_lex_state = 13}, + [11369] = {.lex_state = 7, .external_lex_state = 13}, + [11370] = {.lex_state = 53, .external_lex_state = 11}, + [11371] = {.lex_state = 7, .external_lex_state = 13}, + [11372] = {.lex_state = 7, .external_lex_state = 13}, + [11373] = {.lex_state = 7, .external_lex_state = 13}, + [11374] = {.lex_state = 7, .external_lex_state = 13}, + [11375] = {.lex_state = 7, .external_lex_state = 13}, + [11376] = {.lex_state = 7, .external_lex_state = 14}, + [11377] = {.lex_state = 7, .external_lex_state = 14}, + [11378] = {.lex_state = 7, .external_lex_state = 13}, + [11379] = {.lex_state = 7, .external_lex_state = 13}, + [11380] = {.lex_state = 7, .external_lex_state = 14}, + [11381] = {.lex_state = 7, .external_lex_state = 13}, + [11382] = {.lex_state = 7, .external_lex_state = 13}, + [11383] = {.lex_state = 7, .external_lex_state = 13}, + [11384] = {.lex_state = 7, .external_lex_state = 13}, + [11385] = {.lex_state = 7, .external_lex_state = 13}, + [11386] = {.lex_state = 7, .external_lex_state = 13}, + [11387] = {.lex_state = 7, .external_lex_state = 13}, + [11388] = {.lex_state = 7, .external_lex_state = 12}, + [11389] = {.lex_state = 7, .external_lex_state = 12}, + [11390] = {.lex_state = 7, .external_lex_state = 12}, + [11391] = {.lex_state = 7, .external_lex_state = 13}, + [11392] = {.lex_state = 7, .external_lex_state = 12}, + [11393] = {.lex_state = 7, .external_lex_state = 13}, + [11394] = {.lex_state = 7, .external_lex_state = 13}, + [11395] = {.lex_state = 7, .external_lex_state = 13}, + [11396] = {.lex_state = 7, .external_lex_state = 13}, + [11397] = {.lex_state = 7, .external_lex_state = 14}, + [11398] = {.lex_state = 7, .external_lex_state = 13}, + [11399] = {.lex_state = 7, .external_lex_state = 14}, + [11400] = {.lex_state = 7, .external_lex_state = 13}, + [11401] = {.lex_state = 7, .external_lex_state = 12}, + [11402] = {.lex_state = 7, .external_lex_state = 12}, + [11403] = {.lex_state = 7, .external_lex_state = 12}, + [11404] = {.lex_state = 7, .external_lex_state = 12}, + [11405] = {.lex_state = 7, .external_lex_state = 13}, + [11406] = {.lex_state = 7, .external_lex_state = 13}, + [11407] = {.lex_state = 7, .external_lex_state = 13}, + [11408] = {.lex_state = 7, .external_lex_state = 13}, + [11409] = {.lex_state = 7, .external_lex_state = 13}, + [11410] = {.lex_state = 7, .external_lex_state = 14}, + [11411] = {.lex_state = 7, .external_lex_state = 13}, + [11412] = {.lex_state = 7, .external_lex_state = 13}, + [11413] = {.lex_state = 53, .external_lex_state = 11}, + [11414] = {.lex_state = 7, .external_lex_state = 13}, + [11415] = {.lex_state = 7, .external_lex_state = 13}, + [11416] = {.lex_state = 7, .external_lex_state = 13}, + [11417] = {.lex_state = 7, .external_lex_state = 13}, + [11418] = {.lex_state = 7, .external_lex_state = 13}, + [11419] = {.lex_state = 7, .external_lex_state = 13}, + [11420] = {.lex_state = 7, .external_lex_state = 13}, + [11421] = {.lex_state = 7, .external_lex_state = 13}, + [11422] = {.lex_state = 7, .external_lex_state = 13}, + [11423] = {.lex_state = 7, .external_lex_state = 13}, + [11424] = {.lex_state = 7, .external_lex_state = 13}, + [11425] = {.lex_state = 7, .external_lex_state = 13}, + [11426] = {.lex_state = 7, .external_lex_state = 13}, + [11427] = {.lex_state = 7, .external_lex_state = 13}, + [11428] = {.lex_state = 7, .external_lex_state = 13}, + [11429] = {.lex_state = 7, .external_lex_state = 13}, + [11430] = {.lex_state = 7, .external_lex_state = 13}, + [11431] = {.lex_state = 7, .external_lex_state = 13}, + [11432] = {.lex_state = 7, .external_lex_state = 13}, + [11433] = {.lex_state = 53, .external_lex_state = 12}, + [11434] = {.lex_state = 7, .external_lex_state = 13}, + [11435] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11436] = {.lex_state = 7, .external_lex_state = 14}, + [11437] = {.lex_state = 7, .external_lex_state = 13}, + [11438] = {.lex_state = 7, .external_lex_state = 13}, + [11439] = {.lex_state = 7, .external_lex_state = 13}, + [11440] = {.lex_state = 7, .external_lex_state = 13}, + [11441] = {.lex_state = 7, .external_lex_state = 13}, + [11442] = {.lex_state = 7, .external_lex_state = 13}, + [11443] = {.lex_state = 7, .external_lex_state = 13}, + [11444] = {.lex_state = 7, .external_lex_state = 13}, + [11445] = {.lex_state = 7, .external_lex_state = 13}, + [11446] = {.lex_state = 7, .external_lex_state = 13}, + [11447] = {.lex_state = 7, .external_lex_state = 13}, + [11448] = {.lex_state = 7, .external_lex_state = 13}, + [11449] = {.lex_state = 7, .external_lex_state = 13}, + [11450] = {.lex_state = 7, .external_lex_state = 13}, + [11451] = {.lex_state = 7, .external_lex_state = 13}, + [11452] = {.lex_state = 7, .external_lex_state = 14}, + [11453] = {.lex_state = 7, .external_lex_state = 13}, + [11454] = {.lex_state = 7, .external_lex_state = 14}, + [11455] = {.lex_state = 7, .external_lex_state = 13}, + [11456] = {.lex_state = 7, .external_lex_state = 13}, + [11457] = {.lex_state = 7, .external_lex_state = 14}, + [11458] = {.lex_state = 7, .external_lex_state = 14}, + [11459] = {.lex_state = 7, .external_lex_state = 13}, + [11460] = {.lex_state = 7, .external_lex_state = 14}, + [11461] = {.lex_state = 7, .external_lex_state = 13}, + [11462] = {.lex_state = 7, .external_lex_state = 13}, + [11463] = {.lex_state = 7, .external_lex_state = 13}, + [11464] = {.lex_state = 7, .external_lex_state = 13}, + [11465] = {.lex_state = 7, .external_lex_state = 13}, + [11466] = {.lex_state = 7, .external_lex_state = 13}, + [11467] = {.lex_state = 7, .external_lex_state = 13}, + [11468] = {.lex_state = 7, .external_lex_state = 13}, + [11469] = {.lex_state = 7, .external_lex_state = 13}, + [11470] = {.lex_state = 7, .external_lex_state = 13}, + [11471] = {.lex_state = 7, .external_lex_state = 13}, + [11472] = {.lex_state = 7, .external_lex_state = 13}, + [11473] = {.lex_state = 7, .external_lex_state = 13}, + [11474] = {.lex_state = 7, .external_lex_state = 13}, + [11475] = {.lex_state = 7, .external_lex_state = 13}, + [11476] = {.lex_state = 7, .external_lex_state = 13}, + [11477] = {.lex_state = 7, .external_lex_state = 13}, + [11478] = {.lex_state = 53, .external_lex_state = 12}, + [11479] = {.lex_state = 7, .external_lex_state = 13}, + [11480] = {.lex_state = 7, .external_lex_state = 13}, + [11481] = {.lex_state = 7, .external_lex_state = 13}, + [11482] = {.lex_state = 7, .external_lex_state = 13}, + [11483] = {.lex_state = 7, .external_lex_state = 13}, + [11484] = {.lex_state = 7, .external_lex_state = 13}, + [11485] = {.lex_state = 7, .external_lex_state = 13}, + [11486] = {.lex_state = 7, .external_lex_state = 13}, + [11487] = {.lex_state = 7, .external_lex_state = 13}, + [11488] = {.lex_state = 7, .external_lex_state = 13}, + [11489] = {.lex_state = 7, .external_lex_state = 13}, + [11490] = {.lex_state = 7, .external_lex_state = 13}, + [11491] = {.lex_state = 7, .external_lex_state = 13}, + [11492] = {.lex_state = 7, .external_lex_state = 13}, + [11493] = {.lex_state = 7, .external_lex_state = 13}, + [11494] = {.lex_state = 7, .external_lex_state = 13}, + [11495] = {.lex_state = 7, .external_lex_state = 13}, + [11496] = {.lex_state = 7, .external_lex_state = 13}, + [11497] = {.lex_state = 7, .external_lex_state = 13}, + [11498] = {.lex_state = 7, .external_lex_state = 13}, + [11499] = {.lex_state = 7, .external_lex_state = 13}, + [11500] = {.lex_state = 7, .external_lex_state = 13}, + [11501] = {.lex_state = 53, .external_lex_state = 11}, + [11502] = {.lex_state = 7, .external_lex_state = 13}, + [11503] = {.lex_state = 7, .external_lex_state = 13}, + [11504] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11505] = {.lex_state = 7, .external_lex_state = 13}, + [11506] = {.lex_state = 7, .external_lex_state = 13}, + [11507] = {.lex_state = 53, .external_lex_state = 13}, + [11508] = {.lex_state = 7, .external_lex_state = 15}, + [11509] = {.lex_state = 7, .external_lex_state = 12}, + [11510] = {.lex_state = 7, .external_lex_state = 13}, + [11511] = {.lex_state = 7, .external_lex_state = 12}, + [11512] = {.lex_state = 7, .external_lex_state = 12}, + [11513] = {.lex_state = 7, .external_lex_state = 12}, + [11514] = {.lex_state = 7, .external_lex_state = 12}, + [11515] = {.lex_state = 7, .external_lex_state = 13}, + [11516] = {.lex_state = 7, .external_lex_state = 13}, + [11517] = {.lex_state = 7, .external_lex_state = 13}, + [11518] = {.lex_state = 7, .external_lex_state = 15}, + [11519] = {.lex_state = 7, .external_lex_state = 13}, + [11520] = {.lex_state = 7, .external_lex_state = 13}, + [11521] = {.lex_state = 7, .external_lex_state = 13}, + [11522] = {.lex_state = 7, .external_lex_state = 13}, + [11523] = {.lex_state = 7, .external_lex_state = 15}, + [11524] = {.lex_state = 7, .external_lex_state = 13}, + [11525] = {.lex_state = 7, .external_lex_state = 14}, + [11526] = {.lex_state = 7, .external_lex_state = 12}, + [11527] = {.lex_state = 7, .external_lex_state = 13}, + [11528] = {.lex_state = 7, .external_lex_state = 13}, + [11529] = {.lex_state = 7, .external_lex_state = 13}, + [11530] = {.lex_state = 7, .external_lex_state = 13}, + [11531] = {.lex_state = 53, .external_lex_state = 11}, + [11532] = {.lex_state = 53, .external_lex_state = 11}, + [11533] = {.lex_state = 7, .external_lex_state = 13}, + [11534] = {.lex_state = 7, .external_lex_state = 13}, + [11535] = {.lex_state = 7, .external_lex_state = 13}, + [11536] = {.lex_state = 7, .external_lex_state = 13}, + [11537] = {.lex_state = 7, .external_lex_state = 13}, + [11538] = {.lex_state = 7, .external_lex_state = 13}, + [11539] = {.lex_state = 7, .external_lex_state = 13}, + [11540] = {.lex_state = 7, .external_lex_state = 13}, + [11541] = {.lex_state = 7, .external_lex_state = 14}, + [11542] = {.lex_state = 7, .external_lex_state = 13}, + [11543] = {.lex_state = 7, .external_lex_state = 13}, + [11544] = {.lex_state = 7, .external_lex_state = 13}, + [11545] = {.lex_state = 7, .external_lex_state = 13}, + [11546] = {.lex_state = 7, .external_lex_state = 13}, + [11547] = {.lex_state = 7, .external_lex_state = 13}, + [11548] = {.lex_state = 7, .external_lex_state = 13}, + [11549] = {.lex_state = 7, .external_lex_state = 13}, + [11550] = {.lex_state = 7, .external_lex_state = 13}, + [11551] = {.lex_state = 7, .external_lex_state = 13}, + [11552] = {.lex_state = 7, .external_lex_state = 13}, + [11553] = {.lex_state = 7, .external_lex_state = 13}, + [11554] = {.lex_state = 7, .external_lex_state = 13}, + [11555] = {.lex_state = 7, .external_lex_state = 13}, + [11556] = {.lex_state = 7, .external_lex_state = 13}, + [11557] = {.lex_state = 7, .external_lex_state = 13}, + [11558] = {.lex_state = 7, .external_lex_state = 13}, + [11559] = {.lex_state = 7, .external_lex_state = 13}, + [11560] = {.lex_state = 7, .external_lex_state = 13}, + [11561] = {.lex_state = 53, .external_lex_state = 11}, + [11562] = {.lex_state = 7, .external_lex_state = 13}, + [11563] = {.lex_state = 7, .external_lex_state = 13}, + [11564] = {.lex_state = 7, .external_lex_state = 13}, + [11565] = {.lex_state = 7, .external_lex_state = 13}, + [11566] = {.lex_state = 7, .external_lex_state = 13}, + [11567] = {.lex_state = 7, .external_lex_state = 13}, + [11568] = {.lex_state = 53, .external_lex_state = 11}, + [11569] = {.lex_state = 7, .external_lex_state = 13}, + [11570] = {.lex_state = 53, .external_lex_state = 13}, + [11571] = {.lex_state = 53, .external_lex_state = 13}, + [11572] = {.lex_state = 7, .external_lex_state = 13}, + [11573] = {.lex_state = 7, .external_lex_state = 13}, + [11574] = {.lex_state = 7, .external_lex_state = 13}, + [11575] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [11576] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11577] = {.lex_state = 7, .external_lex_state = 13}, + [11578] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11579] = {.lex_state = 7, .external_lex_state = 13}, + [11580] = {.lex_state = 7, .external_lex_state = 13}, + [11581] = {.lex_state = 7, .external_lex_state = 13}, + [11582] = {.lex_state = 7, .external_lex_state = 13}, + [11583] = {.lex_state = 7, .external_lex_state = 13}, + [11584] = {.lex_state = 7, .external_lex_state = 13}, + [11585] = {.lex_state = 53, .external_lex_state = 13}, + [11586] = {.lex_state = 7, .external_lex_state = 13}, + [11587] = {.lex_state = 7, .external_lex_state = 13}, + [11588] = {.lex_state = 7, .external_lex_state = 13}, + [11589] = {.lex_state = 7, .external_lex_state = 13}, + [11590] = {.lex_state = 7, .external_lex_state = 13}, + [11591] = {.lex_state = 7, .external_lex_state = 13}, + [11592] = {.lex_state = 53, .external_lex_state = 13}, + [11593] = {.lex_state = 7, .external_lex_state = 13}, + [11594] = {.lex_state = 7, .external_lex_state = 13}, + [11595] = {.lex_state = 7, .external_lex_state = 13}, + [11596] = {.lex_state = 7, .external_lex_state = 13}, + [11597] = {.lex_state = 7, .external_lex_state = 13}, + [11598] = {.lex_state = 53, .external_lex_state = 13}, + [11599] = {.lex_state = 7, .external_lex_state = 13}, + [11600] = {.lex_state = 7, .external_lex_state = 13}, + [11601] = {.lex_state = 7, .external_lex_state = 13}, + [11602] = {.lex_state = 53, .external_lex_state = 13}, + [11603] = {.lex_state = 7, .external_lex_state = 13}, + [11604] = {.lex_state = 7, .external_lex_state = 15}, + [11605] = {.lex_state = 7, .external_lex_state = 13}, + [11606] = {.lex_state = 7, .external_lex_state = 15}, + [11607] = {.lex_state = 53, .external_lex_state = 13}, + [11608] = {.lex_state = 7, .external_lex_state = 13}, + [11609] = {.lex_state = 7, .external_lex_state = 13}, + [11610] = {.lex_state = 7, .external_lex_state = 15}, + [11611] = {.lex_state = 7, .external_lex_state = 13}, + [11612] = {.lex_state = 7, .external_lex_state = 13}, + [11613] = {.lex_state = 7, .external_lex_state = 15}, + [11614] = {.lex_state = 7, .external_lex_state = 13}, + [11615] = {.lex_state = 7, .external_lex_state = 13}, + [11616] = {.lex_state = 7, .external_lex_state = 13}, + [11617] = {.lex_state = 7, .external_lex_state = 20}, + [11618] = {.lex_state = 7, .external_lex_state = 15}, + [11619] = {.lex_state = 7, .external_lex_state = 13}, + [11620] = {.lex_state = 53, .external_lex_state = 12}, + [11621] = {.lex_state = 7, .external_lex_state = 15}, + [11622] = {.lex_state = 7, .external_lex_state = 13}, + [11623] = {.lex_state = 7, .external_lex_state = 14}, + [11624] = {.lex_state = 7, .external_lex_state = 14}, + [11625] = {.lex_state = 7, .external_lex_state = 15}, + [11626] = {.lex_state = 7, .external_lex_state = 13}, + [11627] = {.lex_state = 7, .external_lex_state = 15}, + [11628] = {.lex_state = 7, .external_lex_state = 13}, + [11629] = {.lex_state = 7, .external_lex_state = 13}, + [11630] = {.lex_state = 7, .external_lex_state = 13}, + [11631] = {.lex_state = 7, .external_lex_state = 12}, + [11632] = {.lex_state = 7, .external_lex_state = 13}, + [11633] = {.lex_state = 7, .external_lex_state = 14}, + [11634] = {.lex_state = 7, .external_lex_state = 13}, + [11635] = {.lex_state = 7, .external_lex_state = 14}, + [11636] = {.lex_state = 7, .external_lex_state = 13}, + [11637] = {.lex_state = 53, .external_lex_state = 11}, + [11638] = {.lex_state = 7, .external_lex_state = 14}, + [11639] = {.lex_state = 53, .external_lex_state = 11}, + [11640] = {.lex_state = 7, .external_lex_state = 13}, + [11641] = {.lex_state = 7, .external_lex_state = 13}, + [11642] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11643] = {.lex_state = 53, .external_lex_state = 13}, + [11644] = {.lex_state = 7, .external_lex_state = 13}, + [11645] = {.lex_state = 7, .external_lex_state = 13}, + [11646] = {.lex_state = 7, .external_lex_state = 13}, + [11647] = {.lex_state = 7, .external_lex_state = 13}, + [11648] = {.lex_state = 7, .external_lex_state = 13}, + [11649] = {.lex_state = 7, .external_lex_state = 13}, + [11650] = {.lex_state = 53, .external_lex_state = 11}, + [11651] = {.lex_state = 7, .external_lex_state = 13}, + [11652] = {.lex_state = 7, .external_lex_state = 13}, + [11653] = {.lex_state = 7, .external_lex_state = 13}, + [11654] = {.lex_state = 7, .external_lex_state = 13}, + [11655] = {.lex_state = 7, .external_lex_state = 13}, + [11656] = {.lex_state = 7, .external_lex_state = 13}, + [11657] = {.lex_state = 7, .external_lex_state = 13}, + [11658] = {.lex_state = 53, .external_lex_state = 12}, + [11659] = {.lex_state = 7, .external_lex_state = 13}, + [11660] = {.lex_state = 7, .external_lex_state = 20}, + [11661] = {.lex_state = 7, .external_lex_state = 13}, + [11662] = {.lex_state = 7, .external_lex_state = 14}, + [11663] = {.lex_state = 7, .external_lex_state = 13}, + [11664] = {.lex_state = 7, .external_lex_state = 13}, + [11665] = {.lex_state = 7, .external_lex_state = 13}, + [11666] = {.lex_state = 7, .external_lex_state = 12}, + [11667] = {.lex_state = 7, .external_lex_state = 13}, + [11668] = {.lex_state = 7, .external_lex_state = 13}, + [11669] = {.lex_state = 7, .external_lex_state = 14}, + [11670] = {.lex_state = 7, .external_lex_state = 13}, + [11671] = {.lex_state = 7, .external_lex_state = 13}, + [11672] = {.lex_state = 7, .external_lex_state = 13}, + [11673] = {.lex_state = 7, .external_lex_state = 13}, + [11674] = {.lex_state = 7, .external_lex_state = 13}, + [11675] = {.lex_state = 7, .external_lex_state = 13}, + [11676] = {.lex_state = 7, .external_lex_state = 13}, + [11677] = {.lex_state = 7, .external_lex_state = 14}, + [11678] = {.lex_state = 7, .external_lex_state = 13}, + [11679] = {.lex_state = 7, .external_lex_state = 13}, + [11680] = {.lex_state = 7, .external_lex_state = 13}, + [11681] = {.lex_state = 7, .external_lex_state = 13}, + [11682] = {.lex_state = 7, .external_lex_state = 13}, + [11683] = {.lex_state = 7, .external_lex_state = 13}, + [11684] = {.lex_state = 7, .external_lex_state = 13}, + [11685] = {.lex_state = 53, .external_lex_state = 13}, + [11686] = {.lex_state = 7, .external_lex_state = 14}, + [11687] = {.lex_state = 7, .external_lex_state = 13}, + [11688] = {.lex_state = 7, .external_lex_state = 13}, + [11689] = {.lex_state = 7, .external_lex_state = 14}, + [11690] = {.lex_state = 7, .external_lex_state = 13}, + [11691] = {.lex_state = 7, .external_lex_state = 13}, + [11692] = {.lex_state = 7, .external_lex_state = 13}, + [11693] = {.lex_state = 7, .external_lex_state = 13}, + [11694] = {.lex_state = 53, .external_lex_state = 13}, + [11695] = {.lex_state = 7, .external_lex_state = 13}, + [11696] = {.lex_state = 7, .external_lex_state = 14}, + [11697] = {.lex_state = 7, .external_lex_state = 13}, + [11698] = {.lex_state = 7, .external_lex_state = 13}, + [11699] = {.lex_state = 7, .external_lex_state = 14}, + [11700] = {.lex_state = 7, .external_lex_state = 12}, + [11701] = {.lex_state = 7, .external_lex_state = 13}, + [11702] = {.lex_state = 7, .external_lex_state = 14}, + [11703] = {.lex_state = 4, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11704] = {.lex_state = 7, .external_lex_state = 13}, + [11705] = {.lex_state = 7, .external_lex_state = 13}, + [11706] = {.lex_state = 53, .external_lex_state = 11}, + [11707] = {.lex_state = 53, .external_lex_state = 11}, + [11708] = {.lex_state = 7, .external_lex_state = 14}, + [11709] = {.lex_state = 7, .external_lex_state = 13}, + [11710] = {.lex_state = 7, .external_lex_state = 13}, + [11711] = {.lex_state = 7, .external_lex_state = 13}, + [11712] = {.lex_state = 53, .external_lex_state = 15}, + [11713] = {.lex_state = 7, .external_lex_state = 13}, + [11714] = {.lex_state = 7, .external_lex_state = 13}, + [11715] = {.lex_state = 7, .external_lex_state = 14}, + [11716] = {.lex_state = 7, .external_lex_state = 13}, + [11717] = {.lex_state = 7, .external_lex_state = 13}, + [11718] = {.lex_state = 7, .external_lex_state = 13}, + [11719] = {.lex_state = 7, .external_lex_state = 13}, + [11720] = {.lex_state = 7, .external_lex_state = 13}, + [11721] = {.lex_state = 7, .external_lex_state = 13}, + [11722] = {.lex_state = 7, .external_lex_state = 14}, + [11723] = {.lex_state = 7, .external_lex_state = 13}, + [11724] = {.lex_state = 7, .external_lex_state = 13}, + [11725] = {.lex_state = 53, .external_lex_state = 12}, + [11726] = {.lex_state = 7, .external_lex_state = 13}, + [11727] = {.lex_state = 7, .external_lex_state = 13}, + [11728] = {.lex_state = 7, .external_lex_state = 13}, + [11729] = {.lex_state = 7, .external_lex_state = 13}, + [11730] = {.lex_state = 53, .external_lex_state = 12}, + [11731] = {.lex_state = 53, .external_lex_state = 12}, + [11732] = {.lex_state = 7, .external_lex_state = 13}, + [11733] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11734] = {.lex_state = 7, .external_lex_state = 13}, + [11735] = {.lex_state = 53, .external_lex_state = 15}, + [11736] = {.lex_state = 7, .external_lex_state = 13}, + [11737] = {.lex_state = 7, .external_lex_state = 15}, + [11738] = {.lex_state = 7, .external_lex_state = 15}, + [11739] = {.lex_state = 7, .external_lex_state = 13}, + [11740] = {.lex_state = 7, .external_lex_state = 15}, + [11741] = {.lex_state = 7, .external_lex_state = 15}, + [11742] = {.lex_state = 7, .external_lex_state = 13}, + [11743] = {.lex_state = 7, .external_lex_state = 13}, + [11744] = {.lex_state = 7, .external_lex_state = 13}, + [11745] = {.lex_state = 7, .external_lex_state = 13}, + [11746] = {.lex_state = 7, .external_lex_state = 13}, + [11747] = {.lex_state = 7, .external_lex_state = 13}, + [11748] = {.lex_state = 7, .external_lex_state = 13}, + [11749] = {.lex_state = 7, .external_lex_state = 13}, + [11750] = {.lex_state = 7, .external_lex_state = 13}, + [11751] = {.lex_state = 7, .external_lex_state = 13}, + [11752] = {.lex_state = 7, .external_lex_state = 13}, + [11753] = {.lex_state = 7, .external_lex_state = 13}, + [11754] = {.lex_state = 7, .external_lex_state = 13}, + [11755] = {.lex_state = 7, .external_lex_state = 13}, + [11756] = {.lex_state = 7, .external_lex_state = 13}, + [11757] = {.lex_state = 7, .external_lex_state = 20}, + [11758] = {.lex_state = 7, .external_lex_state = 13}, + [11759] = {.lex_state = 7, .external_lex_state = 13}, + [11760] = {.lex_state = 7, .external_lex_state = 13}, + [11761] = {.lex_state = 7, .external_lex_state = 13}, + [11762] = {.lex_state = 7, .external_lex_state = 13}, + [11763] = {.lex_state = 7, .external_lex_state = 13}, + [11764] = {.lex_state = 7, .external_lex_state = 13}, + [11765] = {.lex_state = 7, .external_lex_state = 13}, + [11766] = {.lex_state = 7, .external_lex_state = 13}, + [11767] = {.lex_state = 7, .external_lex_state = 13}, + [11768] = {.lex_state = 7, .external_lex_state = 13}, + [11769] = {.lex_state = 7, .external_lex_state = 13}, + [11770] = {.lex_state = 7, .external_lex_state = 13}, + [11771] = {.lex_state = 7, .external_lex_state = 13}, + [11772] = {.lex_state = 7, .external_lex_state = 13}, + [11773] = {.lex_state = 7, .external_lex_state = 13}, + [11774] = {.lex_state = 7, .external_lex_state = 13}, + [11775] = {.lex_state = 7, .external_lex_state = 13}, + [11776] = {.lex_state = 7, .external_lex_state = 13}, + [11777] = {.lex_state = 7, .external_lex_state = 13}, + [11778] = {.lex_state = 7, .external_lex_state = 13}, + [11779] = {.lex_state = 7, .external_lex_state = 13}, + [11780] = {.lex_state = 7, .external_lex_state = 13}, + [11781] = {.lex_state = 7, .external_lex_state = 13}, + [11782] = {.lex_state = 7, .external_lex_state = 13}, + [11783] = {.lex_state = 7, .external_lex_state = 13}, + [11784] = {.lex_state = 7, .external_lex_state = 13}, + [11785] = {.lex_state = 7, .external_lex_state = 13}, + [11786] = {.lex_state = 7, .external_lex_state = 20}, + [11787] = {.lex_state = 7, .external_lex_state = 13}, + [11788] = {.lex_state = 7, .external_lex_state = 13}, + [11789] = {.lex_state = 7, .external_lex_state = 13}, + [11790] = {.lex_state = 7, .external_lex_state = 13}, + [11791] = {.lex_state = 7, .external_lex_state = 13}, + [11792] = {.lex_state = 7, .external_lex_state = 13}, + [11793] = {.lex_state = 53, .external_lex_state = 11}, + [11794] = {.lex_state = 7, .external_lex_state = 15}, + [11795] = {.lex_state = 7, .external_lex_state = 13}, + [11796] = {.lex_state = 53, .external_lex_state = 13}, + [11797] = {.lex_state = 7, .external_lex_state = 13}, + [11798] = {.lex_state = 7, .external_lex_state = 13}, + [11799] = {.lex_state = 7, .external_lex_state = 15}, + [11800] = {.lex_state = 7, .external_lex_state = 13}, + [11801] = {.lex_state = 7, .external_lex_state = 13}, + [11802] = {.lex_state = 7, .external_lex_state = 13}, + [11803] = {.lex_state = 53, .external_lex_state = 13}, + [11804] = {.lex_state = 53, .external_lex_state = 13}, + [11805] = {.lex_state = 7, .external_lex_state = 13}, + [11806] = {.lex_state = 53, .external_lex_state = 11}, + [11807] = {.lex_state = 53, .external_lex_state = 14}, + [11808] = {.lex_state = 53, .external_lex_state = 12}, + [11809] = {.lex_state = 53, .external_lex_state = 15}, + [11810] = {.lex_state = 53, .external_lex_state = 15}, + [11811] = {.lex_state = 53, .external_lex_state = 15}, + [11812] = {.lex_state = 53, .external_lex_state = 15}, + [11813] = {.lex_state = 7, .external_lex_state = 14}, + [11814] = {.lex_state = 53, .external_lex_state = 11}, + [11815] = {.lex_state = 7, .external_lex_state = 13}, + [11816] = {.lex_state = 7, .external_lex_state = 14}, + [11817] = {.lex_state = 53, .external_lex_state = 15}, + [11818] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11819] = {.lex_state = 53, .external_lex_state = 14}, + [11820] = {.lex_state = 53, .external_lex_state = 15}, + [11821] = {.lex_state = 53, .external_lex_state = 14}, + [11822] = {.lex_state = 53, .external_lex_state = 14}, + [11823] = {.lex_state = 53, .external_lex_state = 12}, + [11824] = {.lex_state = 53, .external_lex_state = 14}, + [11825] = {.lex_state = 53, .external_lex_state = 12}, + [11826] = {.lex_state = 53, .external_lex_state = 15}, + [11827] = {.lex_state = 53, .external_lex_state = 12}, + [11828] = {.lex_state = 53, .external_lex_state = 15}, + [11829] = {.lex_state = 53, .external_lex_state = 12}, + [11830] = {.lex_state = 53, .external_lex_state = 13}, + [11831] = {.lex_state = 53, .external_lex_state = 12}, + [11832] = {.lex_state = 53, .external_lex_state = 12}, + [11833] = {.lex_state = 7, .external_lex_state = 15}, + [11834] = {.lex_state = 53, .external_lex_state = 21}, + [11835] = {.lex_state = 53, .external_lex_state = 11}, + [11836] = {.lex_state = 54, .external_lex_state = 18}, + [11837] = {.lex_state = 53, .external_lex_state = 12}, + [11838] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [11839] = {.lex_state = 53, .external_lex_state = 13}, + [11840] = {.lex_state = 53, .external_lex_state = 14}, + [11841] = {.lex_state = 53, .external_lex_state = 14}, + [11842] = {.lex_state = 53, .external_lex_state = 14}, + [11843] = {.lex_state = 53, .external_lex_state = 15}, + [11844] = {.lex_state = 7, .external_lex_state = 12}, + [11845] = {.lex_state = 7, .external_lex_state = 12}, + [11846] = {.lex_state = 53, .external_lex_state = 15}, + [11847] = {.lex_state = 53, .external_lex_state = 12}, + [11848] = {.lex_state = 7, .external_lex_state = 13}, + [11849] = {.lex_state = 7, .external_lex_state = 13}, + [11850] = {.lex_state = 53, .external_lex_state = 15}, + [11851] = {.lex_state = 53, .external_lex_state = 14}, + [11852] = {.lex_state = 53, .external_lex_state = 21}, + [11853] = {.lex_state = 7, .external_lex_state = 13}, + [11854] = {.lex_state = 53, .external_lex_state = 13}, + [11855] = {.lex_state = 7, .external_lex_state = 13}, + [11856] = {.lex_state = 53, .external_lex_state = 14}, + [11857] = {.lex_state = 53, .external_lex_state = 14}, + [11858] = {.lex_state = 53, .external_lex_state = 14}, + [11859] = {.lex_state = 53, .external_lex_state = 14}, + [11860] = {.lex_state = 53, .external_lex_state = 14}, + [11861] = {.lex_state = 53, .external_lex_state = 15}, + [11862] = {.lex_state = 53, .external_lex_state = 12}, + [11863] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11864] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [11865] = {.lex_state = 53, .external_lex_state = 12}, + [11866] = {.lex_state = 53, .external_lex_state = 12}, + [11867] = {.lex_state = 53, .external_lex_state = 12}, + [11868] = {.lex_state = 53, .external_lex_state = 11}, + [11869] = {.lex_state = 53, .external_lex_state = 15}, + [11870] = {.lex_state = 53, .external_lex_state = 14}, + [11871] = {.lex_state = 53, .external_lex_state = 15}, + [11872] = {.lex_state = 53, .external_lex_state = 14}, + [11873] = {.lex_state = 53, .external_lex_state = 15}, + [11874] = {.lex_state = 53, .external_lex_state = 15}, + [11875] = {.lex_state = 53, .external_lex_state = 12}, + [11876] = {.lex_state = 53, .external_lex_state = 13}, + [11877] = {.lex_state = 53, .external_lex_state = 15}, + [11878] = {.lex_state = 3, .external_lex_state = 15}, + [11879] = {.lex_state = 53, .external_lex_state = 14}, + [11880] = {.lex_state = 53, .external_lex_state = 12}, + [11881] = {.lex_state = 53, .external_lex_state = 14}, + [11882] = {.lex_state = 53, .external_lex_state = 13}, + [11883] = {.lex_state = 53, .external_lex_state = 12}, + [11884] = {.lex_state = 53, .external_lex_state = 15}, + [11885] = {.lex_state = 53, .external_lex_state = 12}, + [11886] = {.lex_state = 53, .external_lex_state = 14}, + [11887] = {.lex_state = 53, .external_lex_state = 12}, + [11888] = {.lex_state = 53, .external_lex_state = 12}, + [11889] = {.lex_state = 53, .external_lex_state = 12}, + [11890] = {.lex_state = 53, .external_lex_state = 12}, + [11891] = {.lex_state = 53, .external_lex_state = 12}, + [11892] = {.lex_state = 7, .external_lex_state = 13}, + [11893] = {.lex_state = 53, .external_lex_state = 12}, + [11894] = {.lex_state = 3, .external_lex_state = 15}, + [11895] = {.lex_state = 53, .external_lex_state = 14}, + [11896] = {.lex_state = 53, .external_lex_state = 12}, + [11897] = {.lex_state = 53, .external_lex_state = 12}, + [11898] = {.lex_state = 53, .external_lex_state = 14}, + [11899] = {.lex_state = 53, .external_lex_state = 14}, + [11900] = {.lex_state = 53, .external_lex_state = 12}, + [11901] = {.lex_state = 53, .external_lex_state = 14}, + [11902] = {.lex_state = 53, .external_lex_state = 12}, + [11903] = {.lex_state = 53, .external_lex_state = 12}, + [11904] = {.lex_state = 53, .external_lex_state = 14}, + [11905] = {.lex_state = 53, .external_lex_state = 15}, + [11906] = {.lex_state = 53, .external_lex_state = 11}, + [11907] = {.lex_state = 53, .external_lex_state = 12}, + [11908] = {.lex_state = 53, .external_lex_state = 14}, + [11909] = {.lex_state = 53, .external_lex_state = 12}, + [11910] = {.lex_state = 3, .external_lex_state = 15}, + [11911] = {.lex_state = 53, .external_lex_state = 13}, + [11912] = {.lex_state = 53, .external_lex_state = 12}, + [11913] = {.lex_state = 53, .external_lex_state = 14}, + [11914] = {.lex_state = 53, .external_lex_state = 15}, + [11915] = {.lex_state = 53, .external_lex_state = 15}, + [11916] = {.lex_state = 53, .external_lex_state = 12}, + [11917] = {.lex_state = 53, .external_lex_state = 14}, + [11918] = {.lex_state = 53, .external_lex_state = 14}, + [11919] = {.lex_state = 3, .external_lex_state = 15}, + [11920] = {.lex_state = 54, .external_lex_state = 18}, + [11921] = {.lex_state = 53, .external_lex_state = 15}, + [11922] = {.lex_state = 53, .external_lex_state = 14}, + [11923] = {.lex_state = 3, .external_lex_state = 15}, + [11924] = {.lex_state = 7, .external_lex_state = 13}, + [11925] = {.lex_state = 53, .external_lex_state = 14}, + [11926] = {.lex_state = 53, .external_lex_state = 12}, + [11927] = {.lex_state = 53, .external_lex_state = 11}, + [11928] = {.lex_state = 53, .external_lex_state = 12}, + [11929] = {.lex_state = 53, .external_lex_state = 12}, + [11930] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [11931] = {.lex_state = 53, .external_lex_state = 12}, + [11932] = {.lex_state = 53, .external_lex_state = 15}, + [11933] = {.lex_state = 53, .external_lex_state = 15}, + [11934] = {.lex_state = 53, .external_lex_state = 15}, + [11935] = {.lex_state = 53, .external_lex_state = 12}, + [11936] = {.lex_state = 53, .external_lex_state = 13}, + [11937] = {.lex_state = 53, .external_lex_state = 14}, + [11938] = {.lex_state = 53, .external_lex_state = 12}, + [11939] = {.lex_state = 53, .external_lex_state = 12}, + [11940] = {.lex_state = 53, .external_lex_state = 13}, + [11941] = {.lex_state = 53, .external_lex_state = 12}, + [11942] = {.lex_state = 53, .external_lex_state = 12}, + [11943] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [11944] = {.lex_state = 53, .external_lex_state = 14}, + [11945] = {.lex_state = 53, .external_lex_state = 13}, + [11946] = {.lex_state = 53, .external_lex_state = 15}, + [11947] = {.lex_state = 53, .external_lex_state = 14}, + [11948] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [11949] = {.lex_state = 53, .external_lex_state = 14}, + [11950] = {.lex_state = 53, .external_lex_state = 14}, + [11951] = {.lex_state = 53, .external_lex_state = 15}, + [11952] = {.lex_state = 53, .external_lex_state = 14}, + [11953] = {.lex_state = 53, .external_lex_state = 14}, + [11954] = {.lex_state = 53, .external_lex_state = 12}, + [11955] = {.lex_state = 53, .external_lex_state = 13}, + [11956] = {.lex_state = 53, .external_lex_state = 15}, + [11957] = {.lex_state = 53, .external_lex_state = 14}, + [11958] = {.lex_state = 7, .external_lex_state = 13}, + [11959] = {.lex_state = 7, .external_lex_state = 13}, + [11960] = {.lex_state = 53, .external_lex_state = 15}, + [11961] = {.lex_state = 53, .external_lex_state = 14}, + [11962] = {.lex_state = 7, .external_lex_state = 13}, + [11963] = {.lex_state = 53, .external_lex_state = 15}, + [11964] = {.lex_state = 53, .external_lex_state = 14}, + [11965] = {.lex_state = 53, .external_lex_state = 14}, + [11966] = {.lex_state = 7, .external_lex_state = 13}, + [11967] = {.lex_state = 53, .external_lex_state = 12}, + [11968] = {.lex_state = 53, .external_lex_state = 12}, + [11969] = {.lex_state = 53, .external_lex_state = 12}, + [11970] = {.lex_state = 53, .external_lex_state = 13}, + [11971] = {.lex_state = 53, .external_lex_state = 14}, + [11972] = {.lex_state = 53, .external_lex_state = 13}, + [11973] = {.lex_state = 7, .external_lex_state = 13}, + [11974] = {.lex_state = 53, .external_lex_state = 13}, + [11975] = {.lex_state = 53, .external_lex_state = 14}, + [11976] = {.lex_state = 53, .external_lex_state = 13}, + [11977] = {.lex_state = 53, .external_lex_state = 12}, + [11978] = {.lex_state = 53, .external_lex_state = 13}, + [11979] = {.lex_state = 3, .external_lex_state = 15}, + [11980] = {.lex_state = 53, .external_lex_state = 13}, + [11981] = {.lex_state = 53, .external_lex_state = 15}, + [11982] = {.lex_state = 53, .external_lex_state = 15}, + [11983] = {.lex_state = 53, .external_lex_state = 12}, + [11984] = {.lex_state = 53, .external_lex_state = 14}, + [11985] = {.lex_state = 53, .external_lex_state = 13}, + [11986] = {.lex_state = 53, .external_lex_state = 14}, + [11987] = {.lex_state = 53, .external_lex_state = 13}, + [11988] = {.lex_state = 53, .external_lex_state = 12}, + [11989] = {.lex_state = 53, .external_lex_state = 13}, + [11990] = {.lex_state = 53, .external_lex_state = 11}, + [11991] = {.lex_state = 53, .external_lex_state = 14}, + [11992] = {.lex_state = 53, .external_lex_state = 15}, + [11993] = {.lex_state = 53, .external_lex_state = 13}, + [11994] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [11995] = {.lex_state = 53, .external_lex_state = 12}, + [11996] = {.lex_state = 53, .external_lex_state = 14}, + [11997] = {.lex_state = 53, .external_lex_state = 13}, + [11998] = {.lex_state = 53, .external_lex_state = 14}, + [11999] = {.lex_state = 7, .external_lex_state = 13}, + [12000] = {.lex_state = 7, .external_lex_state = 13}, + [12001] = {.lex_state = 53, .external_lex_state = 14}, + [12002] = {.lex_state = 53, .external_lex_state = 15}, + [12003] = {.lex_state = 53, .external_lex_state = 14}, + [12004] = {.lex_state = 53, .external_lex_state = 14}, + [12005] = {.lex_state = 53, .external_lex_state = 14}, + [12006] = {.lex_state = 53, .external_lex_state = 15}, + [12007] = {.lex_state = 7, .external_lex_state = 11}, + [12008] = {.lex_state = 53, .external_lex_state = 15}, + [12009] = {.lex_state = 53, .external_lex_state = 12}, + [12010] = {.lex_state = 53, .external_lex_state = 14}, + [12011] = {.lex_state = 53, .external_lex_state = 15}, + [12012] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [12013] = {.lex_state = 53, .external_lex_state = 15}, + [12014] = {.lex_state = 53, .external_lex_state = 11}, + [12015] = {.lex_state = 53, .external_lex_state = 14}, + [12016] = {.lex_state = 53, .external_lex_state = 13}, + [12017] = {.lex_state = 53, .external_lex_state = 12}, + [12018] = {.lex_state = 53, .external_lex_state = 15}, + [12019] = {.lex_state = 53, .external_lex_state = 12}, + [12020] = {.lex_state = 53, .external_lex_state = 12}, + [12021] = {.lex_state = 53, .external_lex_state = 13}, + [12022] = {.lex_state = 7, .external_lex_state = 12}, + [12023] = {.lex_state = 53, .external_lex_state = 14}, + [12024] = {.lex_state = 53, .external_lex_state = 13}, + [12025] = {.lex_state = 53, .external_lex_state = 15}, + [12026] = {.lex_state = 53, .external_lex_state = 14}, + [12027] = {.lex_state = 53, .external_lex_state = 15}, + [12028] = {.lex_state = 53, .external_lex_state = 14}, + [12029] = {.lex_state = 7, .external_lex_state = 13}, + [12030] = {.lex_state = 53, .external_lex_state = 12}, + [12031] = {.lex_state = 53, .external_lex_state = 14}, + [12032] = {.lex_state = 53, .external_lex_state = 14}, + [12033] = {.lex_state = 53, .external_lex_state = 14}, + [12034] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [12035] = {.lex_state = 53, .external_lex_state = 12}, + [12036] = {.lex_state = 53, .external_lex_state = 15}, + [12037] = {.lex_state = 53, .external_lex_state = 12}, + [12038] = {.lex_state = 53, .external_lex_state = 15}, + [12039] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12040] = {.lex_state = 53, .external_lex_state = 13}, + [12041] = {.lex_state = 53, .external_lex_state = 14}, + [12042] = {.lex_state = 53, .external_lex_state = 14}, + [12043] = {.lex_state = 53, .external_lex_state = 12}, + [12044] = {.lex_state = 53, .external_lex_state = 15}, + [12045] = {.lex_state = 53, .external_lex_state = 12}, + [12046] = {.lex_state = 53, .external_lex_state = 11}, + [12047] = {.lex_state = 53, .external_lex_state = 21}, + [12048] = {.lex_state = 53, .external_lex_state = 12}, + [12049] = {.lex_state = 53, .external_lex_state = 14}, + [12050] = {.lex_state = 53, .external_lex_state = 14}, + [12051] = {.lex_state = 53, .external_lex_state = 15}, + [12052] = {.lex_state = 53, .external_lex_state = 14}, + [12053] = {.lex_state = 53, .external_lex_state = 13}, + [12054] = {.lex_state = 53, .external_lex_state = 14}, + [12055] = {.lex_state = 53, .external_lex_state = 12}, + [12056] = {.lex_state = 53, .external_lex_state = 12}, + [12057] = {.lex_state = 53, .external_lex_state = 14}, + [12058] = {.lex_state = 53, .external_lex_state = 14}, + [12059] = {.lex_state = 53, .external_lex_state = 14}, + [12060] = {.lex_state = 53, .external_lex_state = 12}, + [12061] = {.lex_state = 53, .external_lex_state = 12}, + [12062] = {.lex_state = 53, .external_lex_state = 12}, + [12063] = {.lex_state = 53, .external_lex_state = 12}, + [12064] = {.lex_state = 53, .external_lex_state = 12}, + [12065] = {.lex_state = 53, .external_lex_state = 12}, + [12066] = {.lex_state = 53, .external_lex_state = 13}, + [12067] = {.lex_state = 53, .external_lex_state = 12}, + [12068] = {.lex_state = 53, .external_lex_state = 12}, + [12069] = {.lex_state = 53, .external_lex_state = 12}, + [12070] = {.lex_state = 53, .external_lex_state = 12}, + [12071] = {.lex_state = 53, .external_lex_state = 12}, + [12072] = {.lex_state = 53, .external_lex_state = 12}, + [12073] = {.lex_state = 53, .external_lex_state = 12}, + [12074] = {.lex_state = 7, .external_lex_state = 15}, + [12075] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [12076] = {.lex_state = 53, .external_lex_state = 14}, + [12077] = {.lex_state = 53, .external_lex_state = 14}, + [12078] = {.lex_state = 53, .external_lex_state = 14}, + [12079] = {.lex_state = 53, .external_lex_state = 12}, + [12080] = {.lex_state = 53, .external_lex_state = 14}, + [12081] = {.lex_state = 53, .external_lex_state = 15}, + [12082] = {.lex_state = 53, .external_lex_state = 12}, + [12083] = {.lex_state = 53, .external_lex_state = 12}, + [12084] = {.lex_state = 53, .external_lex_state = 15}, + [12085] = {.lex_state = 7, .external_lex_state = 11}, + [12086] = {.lex_state = 53, .external_lex_state = 12}, + [12087] = {.lex_state = 53, .external_lex_state = 14}, + [12088] = {.lex_state = 53, .external_lex_state = 21}, + [12089] = {.lex_state = 53, .external_lex_state = 12}, + [12090] = {.lex_state = 53, .external_lex_state = 12}, + [12091] = {.lex_state = 53, .external_lex_state = 21}, + [12092] = {.lex_state = 53, .external_lex_state = 12}, + [12093] = {.lex_state = 53, .external_lex_state = 13}, + [12094] = {.lex_state = 53, .external_lex_state = 12}, + [12095] = {.lex_state = 53, .external_lex_state = 14}, + [12096] = {.lex_state = 53, .external_lex_state = 12}, + [12097] = {.lex_state = 53, .external_lex_state = 13}, + [12098] = {.lex_state = 53, .external_lex_state = 15}, + [12099] = {.lex_state = 53, .external_lex_state = 14}, + [12100] = {.lex_state = 53, .external_lex_state = 12}, + [12101] = {.lex_state = 53, .external_lex_state = 12}, + [12102] = {.lex_state = 53, .external_lex_state = 21}, + [12103] = {.lex_state = 53, .external_lex_state = 13}, + [12104] = {.lex_state = 53, .external_lex_state = 13}, + [12105] = {.lex_state = 53, .external_lex_state = 15}, + [12106] = {.lex_state = 53, .external_lex_state = 14}, + [12107] = {.lex_state = 7, .external_lex_state = 11}, + [12108] = {.lex_state = 53, .external_lex_state = 14}, + [12109] = {.lex_state = 53, .external_lex_state = 12}, + [12110] = {.lex_state = 7, .external_lex_state = 13}, + [12111] = {.lex_state = 53, .external_lex_state = 15}, + [12112] = {.lex_state = 7, .external_lex_state = 13}, + [12113] = {.lex_state = 7, .external_lex_state = 11}, + [12114] = {.lex_state = 53, .external_lex_state = 11}, + [12115] = {.lex_state = 53, .external_lex_state = 12}, + [12116] = {.lex_state = 53, .external_lex_state = 12}, + [12117] = {.lex_state = 3, .external_lex_state = 15}, + [12118] = {.lex_state = 53, .external_lex_state = 14}, + [12119] = {.lex_state = 53, .external_lex_state = 13}, + [12120] = {.lex_state = 53, .external_lex_state = 12}, + [12121] = {.lex_state = 53, .external_lex_state = 14}, + [12122] = {.lex_state = 53, .external_lex_state = 12}, + [12123] = {.lex_state = 53, .external_lex_state = 15}, + [12124] = {.lex_state = 53, .external_lex_state = 14}, + [12125] = {.lex_state = 7, .external_lex_state = 14}, + [12126] = {.lex_state = 53, .external_lex_state = 11}, + [12127] = {.lex_state = 53, .external_lex_state = 15}, + [12128] = {.lex_state = 53, .external_lex_state = 14}, + [12129] = {.lex_state = 53, .external_lex_state = 14}, + [12130] = {.lex_state = 53, .external_lex_state = 12}, + [12131] = {.lex_state = 53, .external_lex_state = 14}, + [12132] = {.lex_state = 53, .external_lex_state = 12}, + [12133] = {.lex_state = 53, .external_lex_state = 14}, + [12134] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [12135] = {.lex_state = 53, .external_lex_state = 15}, + [12136] = {.lex_state = 53, .external_lex_state = 14}, + [12137] = {.lex_state = 53, .external_lex_state = 12}, + [12138] = {.lex_state = 53, .external_lex_state = 12}, + [12139] = {.lex_state = 53, .external_lex_state = 12}, + [12140] = {.lex_state = 53, .external_lex_state = 12}, + [12141] = {.lex_state = 53, .external_lex_state = 14}, + [12142] = {.lex_state = 53, .external_lex_state = 15}, + [12143] = {.lex_state = 53, .external_lex_state = 15}, + [12144] = {.lex_state = 53, .external_lex_state = 12}, + [12145] = {.lex_state = 53, .external_lex_state = 12}, + [12146] = {.lex_state = 53, .external_lex_state = 14}, + [12147] = {.lex_state = 53, .external_lex_state = 14}, + [12148] = {.lex_state = 53, .external_lex_state = 12}, + [12149] = {.lex_state = 53, .external_lex_state = 12}, + [12150] = {.lex_state = 53, .external_lex_state = 14}, + [12151] = {.lex_state = 53, .external_lex_state = 12}, + [12152] = {.lex_state = 53, .external_lex_state = 14}, + [12153] = {.lex_state = 53, .external_lex_state = 12}, + [12154] = {.lex_state = 53, .external_lex_state = 15}, + [12155] = {.lex_state = 53, .external_lex_state = 15}, + [12156] = {.lex_state = 53, .external_lex_state = 12}, + [12157] = {.lex_state = 53, .external_lex_state = 12}, + [12158] = {.lex_state = 53, .external_lex_state = 12}, + [12159] = {.lex_state = 53, .external_lex_state = 12}, + [12160] = {.lex_state = 54, .external_lex_state = 18}, + [12161] = {.lex_state = 53, .external_lex_state = 14}, + [12162] = {.lex_state = 53, .external_lex_state = 21}, + [12163] = {.lex_state = 53, .external_lex_state = 14}, + [12164] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [12165] = {.lex_state = 53, .external_lex_state = 15}, + [12166] = {.lex_state = 53, .external_lex_state = 15}, + [12167] = {.lex_state = 53, .external_lex_state = 12}, + [12168] = {.lex_state = 53, .external_lex_state = 11}, + [12169] = {.lex_state = 53, .external_lex_state = 12}, + [12170] = {.lex_state = 53, .external_lex_state = 14}, + [12171] = {.lex_state = 53, .external_lex_state = 12}, + [12172] = {.lex_state = 53, .external_lex_state = 14}, + [12173] = {.lex_state = 53, .external_lex_state = 15}, + [12174] = {.lex_state = 53, .external_lex_state = 15}, + [12175] = {.lex_state = 53, .external_lex_state = 14}, + [12176] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [12177] = {.lex_state = 7, .external_lex_state = 13}, + [12178] = {.lex_state = 53, .external_lex_state = 15}, + [12179] = {.lex_state = 53, .external_lex_state = 14}, + [12180] = {.lex_state = 53, .external_lex_state = 13}, + [12181] = {.lex_state = 53, .external_lex_state = 13}, + [12182] = {.lex_state = 53, .external_lex_state = 15}, + [12183] = {.lex_state = 53, .external_lex_state = 15}, + [12184] = {.lex_state = 53, .external_lex_state = 14}, + [12185] = {.lex_state = 53, .external_lex_state = 12}, + [12186] = {.lex_state = 7, .external_lex_state = 13}, + [12187] = {.lex_state = 53, .external_lex_state = 14}, + [12188] = {.lex_state = 53, .external_lex_state = 14}, + [12189] = {.lex_state = 53, .external_lex_state = 12}, + [12190] = {.lex_state = 53, .external_lex_state = 12}, + [12191] = {.lex_state = 53, .external_lex_state = 12}, + [12192] = {.lex_state = 53, .external_lex_state = 14}, + [12193] = {.lex_state = 7, .external_lex_state = 13}, + [12194] = {.lex_state = 53, .external_lex_state = 21}, + [12195] = {.lex_state = 53, .external_lex_state = 12}, + [12196] = {.lex_state = 53, .external_lex_state = 12}, + [12197] = {.lex_state = 53, .external_lex_state = 12}, + [12198] = {.lex_state = 53, .external_lex_state = 14}, + [12199] = {.lex_state = 53, .external_lex_state = 14}, + [12200] = {.lex_state = 53, .external_lex_state = 14}, + [12201] = {.lex_state = 53, .external_lex_state = 12}, + [12202] = {.lex_state = 53, .external_lex_state = 12}, + [12203] = {.lex_state = 53, .external_lex_state = 12}, + [12204] = {.lex_state = 53, .external_lex_state = 12}, + [12205] = {.lex_state = 53, .external_lex_state = 12}, + [12206] = {.lex_state = 53, .external_lex_state = 12}, + [12207] = {.lex_state = 53, .external_lex_state = 14}, + [12208] = {.lex_state = 53, .external_lex_state = 15}, + [12209] = {.lex_state = 53, .external_lex_state = 14}, + [12210] = {.lex_state = 53, .external_lex_state = 12}, + [12211] = {.lex_state = 53, .external_lex_state = 15}, + [12212] = {.lex_state = 54, .external_lex_state = 18}, + [12213] = {.lex_state = 53, .external_lex_state = 14}, + [12214] = {.lex_state = 53, .external_lex_state = 11}, + [12215] = {.lex_state = 53, .external_lex_state = 14}, + [12216] = {.lex_state = 53, .external_lex_state = 14}, + [12217] = {.lex_state = 53, .external_lex_state = 14}, + [12218] = {.lex_state = 53, .external_lex_state = 13}, + [12219] = {.lex_state = 53, .external_lex_state = 12}, + [12220] = {.lex_state = 53, .external_lex_state = 12}, + [12221] = {.lex_state = 53, .external_lex_state = 12}, + [12222] = {.lex_state = 53, .external_lex_state = 14}, + [12223] = {.lex_state = 53, .external_lex_state = 13}, + [12224] = {.lex_state = 53, .external_lex_state = 12}, + [12225] = {.lex_state = 53, .external_lex_state = 11}, + [12226] = {.lex_state = 53, .external_lex_state = 12}, + [12227] = {.lex_state = 53, .external_lex_state = 14}, + [12228] = {.lex_state = 53, .external_lex_state = 12}, + [12229] = {.lex_state = 53, .external_lex_state = 12}, + [12230] = {.lex_state = 53, .external_lex_state = 14}, + [12231] = {.lex_state = 53, .external_lex_state = 14}, + [12232] = {.lex_state = 53, .external_lex_state = 14}, + [12233] = {.lex_state = 53, .external_lex_state = 11}, + [12234] = {.lex_state = 53, .external_lex_state = 14}, + [12235] = {.lex_state = 7, .external_lex_state = 14}, + [12236] = {.lex_state = 53, .external_lex_state = 14}, + [12237] = {.lex_state = 7, .external_lex_state = 14}, + [12238] = {.lex_state = 53, .external_lex_state = 12}, + [12239] = {.lex_state = 53, .external_lex_state = 11}, + [12240] = {.lex_state = 53, .external_lex_state = 14}, + [12241] = {.lex_state = 53, .external_lex_state = 14}, + [12242] = {.lex_state = 53, .external_lex_state = 15}, + [12243] = {.lex_state = 7, .external_lex_state = 14}, + [12244] = {.lex_state = 53, .external_lex_state = 14}, + [12245] = {.lex_state = 53, .external_lex_state = 14}, + [12246] = {.lex_state = 53, .external_lex_state = 14}, + [12247] = {.lex_state = 53, .external_lex_state = 12}, + [12248] = {.lex_state = 53, .external_lex_state = 13}, + [12249] = {.lex_state = 53, .external_lex_state = 14}, + [12250] = {.lex_state = 54, .external_lex_state = 18}, + [12251] = {.lex_state = 53, .external_lex_state = 13}, + [12252] = {.lex_state = 53, .external_lex_state = 14}, + [12253] = {.lex_state = 53, .external_lex_state = 14}, + [12254] = {.lex_state = 53, .external_lex_state = 12}, + [12255] = {.lex_state = 7, .external_lex_state = 13}, + [12256] = {.lex_state = 53, .external_lex_state = 15}, + [12257] = {.lex_state = 53, .external_lex_state = 12}, + [12258] = {.lex_state = 53, .external_lex_state = 14}, + [12259] = {.lex_state = 7, .external_lex_state = 13}, + [12260] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [12261] = {.lex_state = 53, .external_lex_state = 12}, + [12262] = {.lex_state = 7, .external_lex_state = 13}, + [12263] = {.lex_state = 53, .external_lex_state = 14}, + [12264] = {.lex_state = 53, .external_lex_state = 11}, + [12265] = {.lex_state = 53, .external_lex_state = 15}, + [12266] = {.lex_state = 53, .external_lex_state = 14}, + [12267] = {.lex_state = 53, .external_lex_state = 14}, + [12268] = {.lex_state = 53, .external_lex_state = 14}, + [12269] = {.lex_state = 53, .external_lex_state = 13}, + [12270] = {.lex_state = 53, .external_lex_state = 14}, + [12271] = {.lex_state = 3, .external_lex_state = 15}, + [12272] = {.lex_state = 53, .external_lex_state = 14}, + [12273] = {.lex_state = 53, .external_lex_state = 13}, + [12274] = {.lex_state = 53, .external_lex_state = 12}, + [12275] = {.lex_state = 7, .external_lex_state = 15}, + [12276] = {.lex_state = 53, .external_lex_state = 12}, + [12277] = {.lex_state = 53, .external_lex_state = 12}, + [12278] = {.lex_state = 53, .external_lex_state = 13}, + [12279] = {.lex_state = 3, .external_lex_state = 15}, + [12280] = {.lex_state = 53, .external_lex_state = 14}, + [12281] = {.lex_state = 53, .external_lex_state = 15}, + [12282] = {.lex_state = 53, .external_lex_state = 12}, + [12283] = {.lex_state = 53, .external_lex_state = 12}, + [12284] = {.lex_state = 53, .external_lex_state = 16, .reserved_word_set_id = 1}, + [12285] = {.lex_state = 53, .external_lex_state = 14}, + [12286] = {.lex_state = 53, .external_lex_state = 13}, + [12287] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [12288] = {.lex_state = 53, .external_lex_state = 13}, + [12289] = {.lex_state = 7, .external_lex_state = 20}, + [12290] = {.lex_state = 7, .external_lex_state = 13}, + [12291] = {.lex_state = 53, .external_lex_state = 14}, + [12292] = {.lex_state = 53, .external_lex_state = 13}, + [12293] = {.lex_state = 53, .external_lex_state = 13}, + [12294] = {.lex_state = 53, .external_lex_state = 13}, + [12295] = {.lex_state = 53, .external_lex_state = 11}, + [12296] = {.lex_state = 53, .external_lex_state = 13}, + [12297] = {.lex_state = 7, .external_lex_state = 13}, + [12298] = {.lex_state = 53, .external_lex_state = 13}, + [12299] = {.lex_state = 53, .external_lex_state = 11}, + [12300] = {.lex_state = 53, .external_lex_state = 13}, + [12301] = {.lex_state = 53, .external_lex_state = 13}, + [12302] = {.lex_state = 53, .external_lex_state = 12}, + [12303] = {.lex_state = 53, .external_lex_state = 13}, + [12304] = {.lex_state = 53, .external_lex_state = 13}, + [12305] = {.lex_state = 7, .external_lex_state = 20}, + [12306] = {.lex_state = 53, .external_lex_state = 11}, + [12307] = {.lex_state = 53, .external_lex_state = 13}, + [12308] = {.lex_state = 53, .external_lex_state = 13}, + [12309] = {.lex_state = 53, .external_lex_state = 13}, + [12310] = {.lex_state = 53, .external_lex_state = 13}, + [12311] = {.lex_state = 53, .external_lex_state = 12}, + [12312] = {.lex_state = 7, .external_lex_state = 20}, + [12313] = {.lex_state = 53, .external_lex_state = 2}, + [12314] = {.lex_state = 53, .external_lex_state = 12}, + [12315] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12316] = {.lex_state = 53, .external_lex_state = 13}, + [12317] = {.lex_state = 53, .external_lex_state = 13}, + [12318] = {.lex_state = 53, .external_lex_state = 12}, + [12319] = {.lex_state = 53, .external_lex_state = 11}, + [12320] = {.lex_state = 7, .external_lex_state = 13}, + [12321] = {.lex_state = 53, .external_lex_state = 13}, + [12322] = {.lex_state = 53, .external_lex_state = 13}, + [12323] = {.lex_state = 53, .external_lex_state = 11}, + [12324] = {.lex_state = 53, .external_lex_state = 11}, + [12325] = {.lex_state = 7, .external_lex_state = 20}, + [12326] = {.lex_state = 7, .external_lex_state = 20}, + [12327] = {.lex_state = 53, .external_lex_state = 12}, + [12328] = {.lex_state = 53, .external_lex_state = 13}, + [12329] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12330] = {.lex_state = 53, .external_lex_state = 13}, + [12331] = {.lex_state = 53, .external_lex_state = 13}, + [12332] = {.lex_state = 53, .external_lex_state = 13}, + [12333] = {.lex_state = 53, .external_lex_state = 13}, + [12334] = {.lex_state = 53, .external_lex_state = 2}, + [12335] = {.lex_state = 53, .external_lex_state = 14}, + [12336] = {.lex_state = 53, .external_lex_state = 14}, + [12337] = {.lex_state = 53, .external_lex_state = 11}, + [12338] = {.lex_state = 53, .external_lex_state = 11}, + [12339] = {.lex_state = 7, .external_lex_state = 13}, + [12340] = {.lex_state = 7, .external_lex_state = 20}, + [12341] = {.lex_state = 53, .external_lex_state = 12}, + [12342] = {.lex_state = 53, .external_lex_state = 13}, + [12343] = {.lex_state = 53, .external_lex_state = 13}, + [12344] = {.lex_state = 53, .external_lex_state = 14}, + [12345] = {.lex_state = 7, .external_lex_state = 20}, + [12346] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12347] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [12348] = {.lex_state = 53, .external_lex_state = 12}, + [12349] = {.lex_state = 53, .external_lex_state = 12}, + [12350] = {.lex_state = 7, .external_lex_state = 13}, + [12351] = {.lex_state = 53, .external_lex_state = 13}, + [12352] = {.lex_state = 53, .external_lex_state = 13}, + [12353] = {.lex_state = 53, .external_lex_state = 13}, + [12354] = {.lex_state = 53, .external_lex_state = 13}, + [12355] = {.lex_state = 7, .external_lex_state = 13}, + [12356] = {.lex_state = 53, .external_lex_state = 13}, + [12357] = {.lex_state = 7, .external_lex_state = 13}, + [12358] = {.lex_state = 53, .external_lex_state = 14}, + [12359] = {.lex_state = 53, .external_lex_state = 11}, + [12360] = {.lex_state = 7, .external_lex_state = 20}, + [12361] = {.lex_state = 53, .external_lex_state = 14}, + [12362] = {.lex_state = 7, .external_lex_state = 20}, + [12363] = {.lex_state = 7, .external_lex_state = 20}, + [12364] = {.lex_state = 53, .external_lex_state = 11}, + [12365] = {.lex_state = 53, .external_lex_state = 12}, + [12366] = {.lex_state = 53, .external_lex_state = 13}, + [12367] = {.lex_state = 7, .external_lex_state = 20}, + [12368] = {.lex_state = 53, .external_lex_state = 15}, + [12369] = {.lex_state = 7, .external_lex_state = 13}, + [12370] = {.lex_state = 53, .external_lex_state = 12}, + [12371] = {.lex_state = 53, .external_lex_state = 15}, + [12372] = {.lex_state = 53, .external_lex_state = 13}, + [12373] = {.lex_state = 53, .external_lex_state = 15}, + [12374] = {.lex_state = 53, .external_lex_state = 13}, + [12375] = {.lex_state = 53, .external_lex_state = 13}, + [12376] = {.lex_state = 53, .external_lex_state = 13}, + [12377] = {.lex_state = 53, .external_lex_state = 12}, + [12378] = {.lex_state = 53, .external_lex_state = 13}, + [12379] = {.lex_state = 53, .external_lex_state = 13}, + [12380] = {.lex_state = 53, .external_lex_state = 13}, + [12381] = {.lex_state = 53, .external_lex_state = 14}, + [12382] = {.lex_state = 7, .external_lex_state = 20}, + [12383] = {.lex_state = 53, .external_lex_state = 13}, + [12384] = {.lex_state = 53, .external_lex_state = 13}, + [12385] = {.lex_state = 53, .external_lex_state = 12}, + [12386] = {.lex_state = 53, .external_lex_state = 15}, + [12387] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12388] = {.lex_state = 53, .external_lex_state = 13}, + [12389] = {.lex_state = 53, .external_lex_state = 13}, + [12390] = {.lex_state = 53, .external_lex_state = 11}, + [12391] = {.lex_state = 53, .external_lex_state = 13}, + [12392] = {.lex_state = 53, .external_lex_state = 14}, + [12393] = {.lex_state = 53, .external_lex_state = 11}, + [12394] = {.lex_state = 53, .external_lex_state = 14}, + [12395] = {.lex_state = 53, .external_lex_state = 13}, + [12396] = {.lex_state = 53, .external_lex_state = 12}, + [12397] = {.lex_state = 53, .external_lex_state = 11}, + [12398] = {.lex_state = 53, .external_lex_state = 14}, + [12399] = {.lex_state = 53, .external_lex_state = 14}, + [12400] = {.lex_state = 53, .external_lex_state = 12}, + [12401] = {.lex_state = 53, .external_lex_state = 15}, + [12402] = {.lex_state = 53, .external_lex_state = 14}, + [12403] = {.lex_state = 53, .external_lex_state = 13}, + [12404] = {.lex_state = 53, .external_lex_state = 13}, + [12405] = {.lex_state = 53, .external_lex_state = 2}, + [12406] = {.lex_state = 53, .external_lex_state = 12}, + [12407] = {.lex_state = 53, .external_lex_state = 11}, + [12408] = {.lex_state = 53, .external_lex_state = 15}, + [12409] = {.lex_state = 7, .external_lex_state = 20}, + [12410] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12411] = {.lex_state = 53, .external_lex_state = 15}, + [12412] = {.lex_state = 53, .external_lex_state = 13}, + [12413] = {.lex_state = 53, .external_lex_state = 15}, + [12414] = {.lex_state = 53, .external_lex_state = 14}, + [12415] = {.lex_state = 53, .external_lex_state = 13}, + [12416] = {.lex_state = 7, .external_lex_state = 20}, + [12417] = {.lex_state = 53, .external_lex_state = 12}, + [12418] = {.lex_state = 7, .external_lex_state = 20}, + [12419] = {.lex_state = 53, .external_lex_state = 12}, + [12420] = {.lex_state = 53, .external_lex_state = 13}, + [12421] = {.lex_state = 53, .external_lex_state = 11}, + [12422] = {.lex_state = 53, .external_lex_state = 11}, + [12423] = {.lex_state = 53, .external_lex_state = 13}, + [12424] = {.lex_state = 53, .external_lex_state = 13}, + [12425] = {.lex_state = 53, .external_lex_state = 11}, + [12426] = {.lex_state = 53, .external_lex_state = 12}, + [12427] = {.lex_state = 53, .external_lex_state = 13}, + [12428] = {.lex_state = 53, .external_lex_state = 13}, + [12429] = {.lex_state = 53, .external_lex_state = 13}, + [12430] = {.lex_state = 7, .external_lex_state = 20}, + [12431] = {.lex_state = 53, .external_lex_state = 11}, + [12432] = {.lex_state = 53, .external_lex_state = 11}, + [12433] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12434] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12435] = {.lex_state = 53, .external_lex_state = 13}, + [12436] = {.lex_state = 53, .external_lex_state = 12}, + [12437] = {.lex_state = 53, .external_lex_state = 13}, + [12438] = {.lex_state = 53, .external_lex_state = 13}, + [12439] = {.lex_state = 7, .external_lex_state = 20}, + [12440] = {.lex_state = 53, .external_lex_state = 14}, + [12441] = {.lex_state = 53, .external_lex_state = 2}, + [12442] = {.lex_state = 53, .external_lex_state = 11}, + [12443] = {.lex_state = 7, .external_lex_state = 20}, + [12444] = {.lex_state = 53, .external_lex_state = 12}, + [12445] = {.lex_state = 53, .external_lex_state = 13}, + [12446] = {.lex_state = 53, .external_lex_state = 11}, + [12447] = {.lex_state = 53, .external_lex_state = 13}, + [12448] = {.lex_state = 53, .external_lex_state = 11}, + [12449] = {.lex_state = 53, .external_lex_state = 13}, + [12450] = {.lex_state = 53, .external_lex_state = 13}, + [12451] = {.lex_state = 53, .external_lex_state = 13}, + [12452] = {.lex_state = 53, .external_lex_state = 13}, + [12453] = {.lex_state = 53, .external_lex_state = 13}, + [12454] = {.lex_state = 53, .external_lex_state = 13}, + [12455] = {.lex_state = 53, .external_lex_state = 13}, + [12456] = {.lex_state = 53, .external_lex_state = 12}, + [12457] = {.lex_state = 53, .external_lex_state = 13}, + [12458] = {.lex_state = 53, .external_lex_state = 13}, + [12459] = {.lex_state = 53, .external_lex_state = 13}, + [12460] = {.lex_state = 53, .external_lex_state = 13}, + [12461] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12462] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12463] = {.lex_state = 53, .external_lex_state = 15}, + [12464] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12465] = {.lex_state = 53, .external_lex_state = 13}, + [12466] = {.lex_state = 53, .external_lex_state = 14}, + [12467] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12468] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12469] = {.lex_state = 7, .external_lex_state = 13}, + [12470] = {.lex_state = 53, .external_lex_state = 14}, + [12471] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12472] = {.lex_state = 53, .external_lex_state = 13}, + [12473] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12474] = {.lex_state = 53, .external_lex_state = 14}, + [12475] = {.lex_state = 5, .external_lex_state = 13}, + [12476] = {.lex_state = 53, .external_lex_state = 15}, + [12477] = {.lex_state = 53, .external_lex_state = 13}, + [12478] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12479] = {.lex_state = 53, .external_lex_state = 14}, + [12480] = {.lex_state = 53, .external_lex_state = 13}, + [12481] = {.lex_state = 53, .external_lex_state = 12}, + [12482] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12483] = {.lex_state = 53, .external_lex_state = 13}, + [12484] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12485] = {.lex_state = 53, .external_lex_state = 15}, + [12486] = {.lex_state = 5, .external_lex_state = 13}, + [12487] = {.lex_state = 7, .external_lex_state = 13}, + [12488] = {.lex_state = 53, .external_lex_state = 13}, + [12489] = {.lex_state = 53, .external_lex_state = 13}, + [12490] = {.lex_state = 53, .external_lex_state = 15}, + [12491] = {.lex_state = 53, .external_lex_state = 13}, + [12492] = {.lex_state = 53, .external_lex_state = 14}, + [12493] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12494] = {.lex_state = 53, .external_lex_state = 13}, + [12495] = {.lex_state = 53, .external_lex_state = 14}, + [12496] = {.lex_state = 53, .external_lex_state = 14}, + [12497] = {.lex_state = 53, .external_lex_state = 15}, + [12498] = {.lex_state = 53, .external_lex_state = 14}, + [12499] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12500] = {.lex_state = 53, .external_lex_state = 13}, + [12501] = {.lex_state = 53, .external_lex_state = 15}, + [12502] = {.lex_state = 53, .external_lex_state = 13}, + [12503] = {.lex_state = 53, .external_lex_state = 14}, + [12504] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12505] = {.lex_state = 5, .external_lex_state = 13}, + [12506] = {.lex_state = 53, .external_lex_state = 13}, + [12507] = {.lex_state = 53, .external_lex_state = 13}, + [12508] = {.lex_state = 53, .external_lex_state = 15}, + [12509] = {.lex_state = 53, .external_lex_state = 15}, + [12510] = {.lex_state = 53, .external_lex_state = 14}, + [12511] = {.lex_state = 53, .external_lex_state = 13}, + [12512] = {.lex_state = 53, .external_lex_state = 13}, + [12513] = {.lex_state = 53, .external_lex_state = 13}, + [12514] = {.lex_state = 53, .external_lex_state = 14}, + [12515] = {.lex_state = 7, .external_lex_state = 13}, + [12516] = {.lex_state = 5, .external_lex_state = 13}, + [12517] = {.lex_state = 53, .external_lex_state = 13}, + [12518] = {.lex_state = 53, .external_lex_state = 13}, + [12519] = {.lex_state = 53, .external_lex_state = 12}, + [12520] = {.lex_state = 53, .external_lex_state = 14}, + [12521] = {.lex_state = 53, .external_lex_state = 13}, + [12522] = {.lex_state = 53, .external_lex_state = 14}, + [12523] = {.lex_state = 53, .external_lex_state = 14}, + [12524] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12525] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12526] = {.lex_state = 53, .external_lex_state = 12}, + [12527] = {.lex_state = 53, .external_lex_state = 12}, + [12528] = {.lex_state = 53, .external_lex_state = 13}, + [12529] = {.lex_state = 53, .external_lex_state = 15}, + [12530] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12531] = {.lex_state = 53, .external_lex_state = 12}, + [12532] = {.lex_state = 53, .external_lex_state = 14}, + [12533] = {.lex_state = 53, .external_lex_state = 13}, + [12534] = {.lex_state = 53, .external_lex_state = 15}, + [12535] = {.lex_state = 5, .external_lex_state = 13}, + [12536] = {.lex_state = 53, .external_lex_state = 13}, + [12537] = {.lex_state = 7, .external_lex_state = 13}, + [12538] = {.lex_state = 53, .external_lex_state = 15}, + [12539] = {.lex_state = 53, .external_lex_state = 12}, + [12540] = {.lex_state = 53, .external_lex_state = 13}, + [12541] = {.lex_state = 53, .external_lex_state = 14}, + [12542] = {.lex_state = 53, .external_lex_state = 13}, + [12543] = {.lex_state = 53, .external_lex_state = 14}, + [12544] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12545] = {.lex_state = 53, .external_lex_state = 14}, + [12546] = {.lex_state = 53, .external_lex_state = 12}, + [12547] = {.lex_state = 53, .external_lex_state = 14}, + [12548] = {.lex_state = 53, .external_lex_state = 13}, + [12549] = {.lex_state = 53, .external_lex_state = 13}, + [12550] = {.lex_state = 53, .external_lex_state = 15}, + [12551] = {.lex_state = 53, .external_lex_state = 15}, + [12552] = {.lex_state = 53, .external_lex_state = 15}, + [12553] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12554] = {.lex_state = 53, .external_lex_state = 13}, + [12555] = {.lex_state = 7, .external_lex_state = 13}, + [12556] = {.lex_state = 53, .external_lex_state = 13}, + [12557] = {.lex_state = 53, .external_lex_state = 12}, + [12558] = {.lex_state = 53, .external_lex_state = 13}, + [12559] = {.lex_state = 53, .external_lex_state = 14}, + [12560] = {.lex_state = 53, .external_lex_state = 14}, + [12561] = {.lex_state = 53, .external_lex_state = 14}, + [12562] = {.lex_state = 53, .external_lex_state = 13}, + [12563] = {.lex_state = 53, .external_lex_state = 13}, + [12564] = {.lex_state = 7, .external_lex_state = 13}, + [12565] = {.lex_state = 53, .external_lex_state = 13}, + [12566] = {.lex_state = 53, .external_lex_state = 13}, + [12567] = {.lex_state = 53, .external_lex_state = 22}, + [12568] = {.lex_state = 53, .external_lex_state = 14}, + [12569] = {.lex_state = 53, .external_lex_state = 13}, + [12570] = {.lex_state = 53, .external_lex_state = 13}, + [12571] = {.lex_state = 53, .external_lex_state = 14}, + [12572] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12573] = {.lex_state = 53, .external_lex_state = 12}, + [12574] = {.lex_state = 53, .external_lex_state = 12}, + [12575] = {.lex_state = 7, .external_lex_state = 13}, + [12576] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12577] = {.lex_state = 53, .external_lex_state = 12}, + [12578] = {.lex_state = 53, .external_lex_state = 15}, + [12579] = {.lex_state = 53, .external_lex_state = 13}, + [12580] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12581] = {.lex_state = 53, .external_lex_state = 13}, + [12582] = {.lex_state = 53, .external_lex_state = 22}, + [12583] = {.lex_state = 53, .external_lex_state = 13}, + [12584] = {.lex_state = 7, .external_lex_state = 13}, + [12585] = {.lex_state = 53, .external_lex_state = 15}, + [12586] = {.lex_state = 53, .external_lex_state = 13}, + [12587] = {.lex_state = 53, .external_lex_state = 22}, + [12588] = {.lex_state = 53, .external_lex_state = 12}, + [12589] = {.lex_state = 53, .external_lex_state = 12}, + [12590] = {.lex_state = 53, .external_lex_state = 12}, + [12591] = {.lex_state = 53, .external_lex_state = 15}, + [12592] = {.lex_state = 53, .external_lex_state = 15}, + [12593] = {.lex_state = 53, .external_lex_state = 15}, + [12594] = {.lex_state = 53, .external_lex_state = 14}, + [12595] = {.lex_state = 53, .external_lex_state = 14}, + [12596] = {.lex_state = 53, .external_lex_state = 13}, + [12597] = {.lex_state = 53, .external_lex_state = 13}, + [12598] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12599] = {.lex_state = 53, .external_lex_state = 13}, + [12600] = {.lex_state = 53, .external_lex_state = 15}, + [12601] = {.lex_state = 7, .external_lex_state = 13}, + [12602] = {.lex_state = 53, .external_lex_state = 14}, + [12603] = {.lex_state = 53, .external_lex_state = 14}, + [12604] = {.lex_state = 53, .external_lex_state = 13}, + [12605] = {.lex_state = 53, .external_lex_state = 13}, + [12606] = {.lex_state = 53, .external_lex_state = 14}, + [12607] = {.lex_state = 53, .external_lex_state = 14}, + [12608] = {.lex_state = 53, .external_lex_state = 15}, + [12609] = {.lex_state = 53, .external_lex_state = 13}, + [12610] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12611] = {.lex_state = 53, .external_lex_state = 13}, + [12612] = {.lex_state = 53, .external_lex_state = 13}, + [12613] = {.lex_state = 7, .external_lex_state = 13}, + [12614] = {.lex_state = 53, .external_lex_state = 13}, + [12615] = {.lex_state = 7, .external_lex_state = 13}, + [12616] = {.lex_state = 53, .external_lex_state = 14}, + [12617] = {.lex_state = 53, .external_lex_state = 15}, + [12618] = {.lex_state = 53, .external_lex_state = 14}, + [12619] = {.lex_state = 53, .external_lex_state = 12}, + [12620] = {.lex_state = 5, .external_lex_state = 13}, + [12621] = {.lex_state = 53, .external_lex_state = 12}, + [12622] = {.lex_state = 53, .external_lex_state = 15}, + [12623] = {.lex_state = 53, .external_lex_state = 14}, + [12624] = {.lex_state = 53, .external_lex_state = 13}, + [12625] = {.lex_state = 53, .external_lex_state = 13}, + [12626] = {.lex_state = 53, .external_lex_state = 14}, + [12627] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12628] = {.lex_state = 53, .external_lex_state = 11}, + [12629] = {.lex_state = 53, .external_lex_state = 13}, + [12630] = {.lex_state = 53, .external_lex_state = 13}, + [12631] = {.lex_state = 5, .external_lex_state = 13}, + [12632] = {.lex_state = 53, .external_lex_state = 22}, + [12633] = {.lex_state = 53, .external_lex_state = 13}, + [12634] = {.lex_state = 53, .external_lex_state = 14}, + [12635] = {.lex_state = 7, .external_lex_state = 13}, + [12636] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12637] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12638] = {.lex_state = 53, .external_lex_state = 13}, + [12639] = {.lex_state = 53, .external_lex_state = 15}, + [12640] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12641] = {.lex_state = 53, .external_lex_state = 15}, + [12642] = {.lex_state = 53, .external_lex_state = 12}, + [12643] = {.lex_state = 53, .external_lex_state = 12}, + [12644] = {.lex_state = 53, .external_lex_state = 15}, + [12645] = {.lex_state = 53, .external_lex_state = 13}, + [12646] = {.lex_state = 53, .external_lex_state = 12}, + [12647] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12648] = {.lex_state = 53, .external_lex_state = 15}, + [12649] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12650] = {.lex_state = 53, .external_lex_state = 13}, + [12651] = {.lex_state = 53, .external_lex_state = 11}, + [12652] = {.lex_state = 7, .external_lex_state = 13}, + [12653] = {.lex_state = 53, .external_lex_state = 13}, + [12654] = {.lex_state = 53, .external_lex_state = 14}, + [12655] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12656] = {.lex_state = 53, .external_lex_state = 15}, + [12657] = {.lex_state = 53, .external_lex_state = 12}, + [12658] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12659] = {.lex_state = 53, .external_lex_state = 13}, + [12660] = {.lex_state = 53, .external_lex_state = 15}, + [12661] = {.lex_state = 53, .external_lex_state = 13}, + [12662] = {.lex_state = 53, .external_lex_state = 14}, + [12663] = {.lex_state = 53, .external_lex_state = 14}, + [12664] = {.lex_state = 53, .external_lex_state = 13}, + [12665] = {.lex_state = 53, .external_lex_state = 13}, + [12666] = {.lex_state = 53, .external_lex_state = 14}, + [12667] = {.lex_state = 53, .external_lex_state = 14}, + [12668] = {.lex_state = 53, .external_lex_state = 13}, + [12669] = {.lex_state = 53, .external_lex_state = 13}, + [12670] = {.lex_state = 53, .external_lex_state = 12}, + [12671] = {.lex_state = 53, .external_lex_state = 13}, + [12672] = {.lex_state = 5, .external_lex_state = 13}, + [12673] = {.lex_state = 53, .external_lex_state = 13}, + [12674] = {.lex_state = 53, .external_lex_state = 13}, + [12675] = {.lex_state = 53, .external_lex_state = 13}, + [12676] = {.lex_state = 53, .external_lex_state = 12}, + [12677] = {.lex_state = 53, .external_lex_state = 13}, + [12678] = {.lex_state = 53, .external_lex_state = 12}, + [12679] = {.lex_state = 7, .external_lex_state = 13}, + [12680] = {.lex_state = 53, .external_lex_state = 13}, + [12681] = {.lex_state = 7, .external_lex_state = 13}, + [12682] = {.lex_state = 53, .external_lex_state = 13}, + [12683] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12684] = {.lex_state = 53, .external_lex_state = 15}, + [12685] = {.lex_state = 53, .external_lex_state = 14}, + [12686] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12687] = {.lex_state = 53, .external_lex_state = 14}, + [12688] = {.lex_state = 53, .external_lex_state = 13}, + [12689] = {.lex_state = 7, .external_lex_state = 13}, + [12690] = {.lex_state = 53, .external_lex_state = 15}, + [12691] = {.lex_state = 53, .external_lex_state = 15}, + [12692] = {.lex_state = 53, .external_lex_state = 13}, + [12693] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12694] = {.lex_state = 7, .external_lex_state = 13}, + [12695] = {.lex_state = 53, .external_lex_state = 13}, + [12696] = {.lex_state = 7, .external_lex_state = 13}, + [12697] = {.lex_state = 53, .external_lex_state = 13}, + [12698] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12699] = {.lex_state = 5, .external_lex_state = 13}, + [12700] = {.lex_state = 53, .external_lex_state = 14}, + [12701] = {.lex_state = 7, .external_lex_state = 13}, + [12702] = {.lex_state = 53, .external_lex_state = 14}, + [12703] = {.lex_state = 7, .external_lex_state = 13}, + [12704] = {.lex_state = 53, .external_lex_state = 13}, + [12705] = {.lex_state = 53, .external_lex_state = 13}, + [12706] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12707] = {.lex_state = 53, .external_lex_state = 13}, + [12708] = {.lex_state = 5, .external_lex_state = 13}, + [12709] = {.lex_state = 53, .external_lex_state = 14}, + [12710] = {.lex_state = 5, .external_lex_state = 13}, + [12711] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12712] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12713] = {.lex_state = 53, .external_lex_state = 15}, + [12714] = {.lex_state = 53, .external_lex_state = 14}, + [12715] = {.lex_state = 53, .external_lex_state = 14}, + [12716] = {.lex_state = 53, .external_lex_state = 15}, + [12717] = {.lex_state = 53, .external_lex_state = 13}, + [12718] = {.lex_state = 53, .external_lex_state = 13}, + [12719] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12720] = {.lex_state = 53, .external_lex_state = 13}, + [12721] = {.lex_state = 53, .external_lex_state = 14}, + [12722] = {.lex_state = 53, .external_lex_state = 12}, + [12723] = {.lex_state = 53, .external_lex_state = 13}, + [12724] = {.lex_state = 53, .external_lex_state = 12}, + [12725] = {.lex_state = 53, .external_lex_state = 13}, + [12726] = {.lex_state = 53, .external_lex_state = 13}, + [12727] = {.lex_state = 53, .external_lex_state = 13}, + [12728] = {.lex_state = 53, .external_lex_state = 13}, + [12729] = {.lex_state = 53, .external_lex_state = 14}, + [12730] = {.lex_state = 53, .external_lex_state = 13}, + [12731] = {.lex_state = 53, .external_lex_state = 15}, + [12732] = {.lex_state = 53, .external_lex_state = 15}, + [12733] = {.lex_state = 7, .external_lex_state = 13}, + [12734] = {.lex_state = 53, .external_lex_state = 12}, + [12735] = {.lex_state = 53, .external_lex_state = 14}, + [12736] = {.lex_state = 53, .external_lex_state = 13}, + [12737] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12738] = {.lex_state = 53, .external_lex_state = 15}, + [12739] = {.lex_state = 53, .external_lex_state = 13}, + [12740] = {.lex_state = 53, .external_lex_state = 13}, + [12741] = {.lex_state = 53, .external_lex_state = 12}, + [12742] = {.lex_state = 53, .external_lex_state = 12}, + [12743] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12744] = {.lex_state = 53, .external_lex_state = 12}, + [12745] = {.lex_state = 53, .external_lex_state = 12}, + [12746] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12747] = {.lex_state = 53, .external_lex_state = 12}, + [12748] = {.lex_state = 53, .external_lex_state = 14}, + [12749] = {.lex_state = 53, .external_lex_state = 15}, + [12750] = {.lex_state = 53, .external_lex_state = 12}, + [12751] = {.lex_state = 53, .external_lex_state = 15}, + [12752] = {.lex_state = 5, .external_lex_state = 13}, + [12753] = {.lex_state = 53, .external_lex_state = 15}, + [12754] = {.lex_state = 53, .external_lex_state = 13}, + [12755] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12756] = {.lex_state = 53, .external_lex_state = 13, .reserved_word_set_id = 1}, + [12757] = {.lex_state = 7, .external_lex_state = 13}, +}; + +static const TSSymbol ts_reserved_words[34][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_comptime, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, + [2] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_finally, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [3] = { + anon_sym_as, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_class, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [4] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_lambda, + anon_sym_yield, + }, + [5] = { + anon_sym_import, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [6] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [7] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [8] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [9] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_lambda, + anon_sym_yield, + }, + [10] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [11] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [12] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [13] = { + anon_sym_import, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [14] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [15] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [16] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_lambda, + anon_sym_yield, + }, + [17] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_lambda, + anon_sym_yield, + }, + [18] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [19] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [20] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [21] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [22] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [23] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [24] = { + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [25] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [26] = { + anon_sym_as, + anon_sym_in, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [27] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [28] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [29] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [30] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_comptime, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, + [31] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_comptime, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + }, + [32] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, + [33] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + anon_sym_comptime, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [STATE(0)] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_from] = ACTIONS(1), + [anon_sym___future__] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_print] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_comptime] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), + [anon_sym___comptime_assert] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_del] = ACTIONS(1), + [anon_sym_raise] = ACTIONS(1), + [anon_sym_pass] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym___extension] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym___mlir_region] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_except] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_def] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_raises] = ACTIONS(1), + [anon_sym_capturing] = ACTIONS(1), + [anon_sym_escaping] = ACTIONS(1), + [anon_sym_thin] = ACTIONS(1), + [anon_sym_abi] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), + [anon_sym_nonlocal] = ACTIONS(1), + [anon_sym_exec] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_mut] = ACTIONS(1), + [anon_sym_out] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(1), + [anon_sym_trait] = ACTIONS(1), + [anon_sym_inferred] = ACTIONS(1), + [anon_sym_except_STAR] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), + [anon_sym_borrowed] = ACTIONS(1), + [anon_sym_inout] = ACTIONS(1), + [anon_sym_owned] = ACTIONS(1), + [anon_sym_read] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_deinit] = ACTIONS(1), + [anon_sym_unified] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_self] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_is] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_lambda] = 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_AT_EQ] = ACTIONS(1), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), + [sym_ellipsis] = ACTIONS(1), + [anon_sym___mlir_type] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [sym_type_conversion] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_none] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(5), + [sym__newline] = ACTIONS(1), + [sym__indent] = ACTIONS(1), + [sym__dedent] = ACTIONS(1), + [sym_string_start] = ACTIONS(1), + [sym__string_content] = ACTIONS(1), + [sym_escape_interpolation] = ACTIONS(1), + [sym_string_end] = ACTIONS(1), + [sym__mlir_backtick] = ACTIONS(1), + [sym__mlir_ident] = ACTIONS(1), + [sym__mlir_number] = ACTIONS(1), + [sym_mlir_punctuation] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_module] = STATE(12494), + [sym__statement] = STATE(921), + [sym__simple_statements] = STATE(921), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_extension_definition] = STATE(921), + [sym_mlir_region] = STATE(921), + [sym_comptime_statement] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_match_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_function_definition] = STATE(921), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_class_definition] = STATE(921), + [sym_trait_definition] = STATE(921), + [sym_decorated_definition] = STATE(921), + [sym_decorator] = STATE(3668), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(921), + [aux_sym_decorated_definition_repeat1] = STATE(3668), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(39), + [anon_sym___mlir_region] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_match] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_for] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_try] = ACTIONS(53), + [anon_sym_with] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_fn] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4831), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(3)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4443), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(4)] = { + [sym__statement] = STATE(922), + [sym__simple_statements] = STATE(922), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(922), + [sym_mlir_region] = STATE(922), + [sym_comptime_statement] = STATE(922), + [sym_if_statement] = STATE(922), + [sym_match_statement] = STATE(922), + [sym_for_statement] = STATE(922), + [sym_while_statement] = STATE(922), + [sym_try_statement] = STATE(922), + [sym_with_statement] = STATE(922), + [sym_function_definition] = STATE(922), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(922), + [sym_trait_definition] = STATE(922), + [sym_decorated_definition] = STATE(922), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(9691), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(922), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(127), + [sym_string_start] = ACTIONS(97), + }, + [STATE(5)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5514), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(6)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(3981), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(7)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4284), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(8)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5918), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(9)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6096), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(10)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(11)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6692), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(12)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4556), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(13)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5600), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(14)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4527), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(15)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4529), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(16)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4545), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(17)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4669), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(18)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4304), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(19)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4128), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(20)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4792), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(21)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4811), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(22)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4822), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(23)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4853), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(24)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4923), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(25)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4308), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(26)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4286), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(27)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4972), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(28)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4979), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(29)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5022), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(30)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4270), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(31)] = { + [sym__statement] = STATE(926), + [sym__simple_statements] = STATE(926), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(926), + [sym_mlir_region] = STATE(926), + [sym_comptime_statement] = STATE(926), + [sym_if_statement] = STATE(926), + [sym_match_statement] = STATE(926), + [sym_for_statement] = STATE(926), + [sym_while_statement] = STATE(926), + [sym_try_statement] = STATE(926), + [sym_with_statement] = STATE(926), + [sym_function_definition] = STATE(926), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(926), + [sym_trait_definition] = STATE(926), + [sym_decorated_definition] = STATE(926), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4271), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(926), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(131), + [sym_string_start] = ACTIONS(97), + }, + [STATE(32)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5065), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(33)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5070), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(34)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5079), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(35)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5086), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(36)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5090), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(37)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5124), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(38)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5131), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(39)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4297), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(40)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12409), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(41)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4289), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(42)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5258), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(43)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5266), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(44)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5276), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(45)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5288), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(46)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5293), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(47)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5321), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(48)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5326), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(49)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5407), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(50)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5420), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(51)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5437), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(52)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5455), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(53)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5458), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(54)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5472), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(55)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5489), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(56)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5498), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(57)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5506), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(58)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5519), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(59)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5529), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(60)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5535), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(61)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12345), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(62)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12326), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(63)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5945), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(64)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5958), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(65)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5984), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(66)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6056), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(67)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6063), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(68)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6094), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(69)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6113), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(70)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6139), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(71)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6166), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(72)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6195), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(73)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6211), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(74)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6221), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(75)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4151), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(76)] = { + [sym__statement] = STATE(926), + [sym__simple_statements] = STATE(926), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(926), + [sym_mlir_region] = STATE(926), + [sym_comptime_statement] = STATE(926), + [sym_if_statement] = STATE(926), + [sym_match_statement] = STATE(926), + [sym_for_statement] = STATE(926), + [sym_while_statement] = STATE(926), + [sym_try_statement] = STATE(926), + [sym_with_statement] = STATE(926), + [sym_function_definition] = STATE(926), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(926), + [sym_trait_definition] = STATE(926), + [sym_decorated_definition] = STATE(926), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4203), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(926), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(131), + [sym_string_start] = ACTIONS(97), + }, + [STATE(77)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6302), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(78)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6557), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(79)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6565), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(80)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6584), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(81)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6600), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(82)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6619), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(83)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6707), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(84)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4521), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(85)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4577), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(86)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4683), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(87)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4504), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(88)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4613), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(89)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4616), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(90)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4677), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(91)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4681), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(92)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12362), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(93)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12439), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(94)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(95)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4472), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(96)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4473), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(97)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4478), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(98)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4485), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(99)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4495), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(100)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4511), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(101)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4516), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(102)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4517), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(103)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4525), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(104)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4539), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(105)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4563), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(106)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4567), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(107)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4589), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(108)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4597), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(109)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4601), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(110)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4605), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(111)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4626), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(112)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4649), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(113)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4685), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(114)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4689), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(115)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4690), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(116)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4698), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(117)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4705), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(118)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4712), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(119)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4717), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(120)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4729), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(121)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4747), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(122)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4749), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(123)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4753), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(124)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4761), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(125)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4768), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(126)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4780), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(127)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4791), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(128)] = { + [sym__statement] = STATE(928), + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(928), + [sym_mlir_region] = STATE(928), + [sym_comptime_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_match_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_try_statement] = STATE(928), + [sym_with_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(928), + [sym_trait_definition] = STATE(928), + [sym_decorated_definition] = STATE(928), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(12418), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(928), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(97), + }, + [STATE(129)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4806), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(130)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4808), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(131)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4830), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(132)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4845), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(133)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4865), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(134)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4866), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(135)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4867), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(136)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4871), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(137)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4872), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(138)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4874), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(139)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4877), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(140)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4882), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(141)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4887), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(142)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4888), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(143)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4891), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(144)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4894), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(145)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4898), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(146)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4908), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(147)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4914), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(148)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4916), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(149)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4920), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(150)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4926), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(151)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4931), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(152)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4933), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(153)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4944), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(154)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4946), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(155)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4963), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(156)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4966), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(157)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4984), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(158)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4998), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(159)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4999), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(160)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5000), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(161)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5001), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(162)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5005), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(163)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5006), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(164)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5007), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(165)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5008), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(166)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5012), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(167)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5013), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(168)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5015), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(169)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5019), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(170)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5023), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(171)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5036), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(172)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5039), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(173)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5044), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(174)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5047), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(175)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5049), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(176)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5055), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(177)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5057), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(178)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5071), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(179)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5074), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(180)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5087), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(181)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5098), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(182)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5099), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(183)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5100), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(184)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5101), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(185)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5105), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(186)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5106), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(187)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5107), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(188)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5108), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(189)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5112), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(190)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5113), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(191)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5115), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(192)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5119), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(193)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5122), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(194)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5126), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(195)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5129), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(196)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5135), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(197)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5141), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(198)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5143), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(199)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5147), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(200)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5151), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(201)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5154), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(202)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5156), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(203)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5160), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(204)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5164), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(205)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5166), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(206)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5176), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(207)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5180), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(208)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5186), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(209)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5191), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(210)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5194), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(211)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5207), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(212)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5210), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(213)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5224), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(214)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5225), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(215)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5226), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(216)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5227), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(217)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5228), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(218)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5232), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(219)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5234), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(220)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5237), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(221)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5244), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(222)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5252), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(223)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5254), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(224)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5259), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(225)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5264), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(226)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5267), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(227)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5270), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(228)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5275), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(229)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5279), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(230)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5282), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(231)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5294), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(232)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5298), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(233)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5304), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(234)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5308), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(235)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5311), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(236)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5323), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(237)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5325), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(238)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5343), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(239)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5344), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(240)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6718), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(241)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5346), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(242)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5347), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(243)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5351), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(244)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5352), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(245)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5353), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(246)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5356), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(247)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5359), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(248)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5364), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(249)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5374), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(250)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5381), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(251)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5382), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(252)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5385), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(253)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5393), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(254)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5402), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(255)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5404), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(256)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5410), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(257)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5415), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(258)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5416), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(259)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5418), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(260)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5425), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(261)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5434), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(262)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5436), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(263)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5442), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(264)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5447), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(265)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5450), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(266)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5454), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(267)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5459), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(268)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5464), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(269)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5466), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(270)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5476), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(271)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5477), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(272)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5478), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(273)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5481), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(274)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5485), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(275)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5490), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(276)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5501), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(277)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5508), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(278)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5509), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(279)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5512), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(280)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5520), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(281)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5528), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(282)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5530), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(283)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5536), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(284)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5541), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(285)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5542), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(286)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5545), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(287)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5553), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(288)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5562), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(289)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5564), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(290)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5569), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(291)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5582), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(292)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5606), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(293)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5623), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(294)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5638), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(295)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5645), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(296)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5648), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(297)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5660), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(298)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5673), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(299)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5675), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(300)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5676), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(301)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5687), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(302)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5694), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(303)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5705), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(304)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5710), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(305)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5715), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(306)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5719), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(307)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5720), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(308)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5723), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(309)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5728), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(310)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5746), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(311)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5777), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(312)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5801), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(313)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5802), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(314)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5803), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(315)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5840), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(316)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5892), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(317)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5919), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(318)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5936), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(319)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5950), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(320)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5951), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(321)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5954), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(322)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5969), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(323)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5983), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(324)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5985), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(325)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6003), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(326)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6008), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(327)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6012), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(328)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6015), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(329)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6017), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(330)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6031), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(331)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6033), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(332)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6045), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(333)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6054), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(334)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6061), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(335)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6066), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(336)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6067), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(337)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6072), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(338)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6079), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(339)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6087), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(340)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6107), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(341)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6120), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(342)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6121), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(343)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6125), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(344)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6131), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(345)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6141), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(346)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6151), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(347)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6186), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(348)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6198), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(349)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6200), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(350)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6205), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(351)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6215), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(352)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6229), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(353)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6231), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(354)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6244), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(355)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6251), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(356)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6252), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(357)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6253), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(358)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6257), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(359)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6260), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(360)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6271), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(361)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6272), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(362)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6273), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(363)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6275), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(364)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6284), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(365)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6286), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(366)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6297), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(367)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6308), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(368)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6323), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(369)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6329), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(370)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6331), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(371)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6332), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(372)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6337), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(373)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6340), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(374)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6345), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(375)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6350), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(376)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6358), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(377)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6364), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(378)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6366), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(379)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6372), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(380)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6380), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(381)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6386), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(382)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6409), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(383)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6431), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(384)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6434), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(385)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6436), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(386)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6437), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(387)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6442), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(388)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6453), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(389)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6454), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(390)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6455), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(391)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6456), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(392)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6459), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(393)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6460), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(394)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6506), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(395)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6521), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(396)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6529), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(397)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6533), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(398)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6536), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(399)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6537), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(400)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6545), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(401)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6548), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(402)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6553), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(403)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6559), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(404)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6573), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(405)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6578), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(406)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6579), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(407)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6585), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(408)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6591), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(409)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6597), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(410)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6616), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(411)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6633), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(412)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6634), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(413)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6636), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(414)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6637), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(415)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6642), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(416)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6646), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(417)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6656), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(418)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6660), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(419)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6663), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(420)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6664), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(421)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6665), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(422)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6680), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(423)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6681), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(424)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6682), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(425)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6683), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(426)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6686), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(427)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6687), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(428)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6690), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(429)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6694), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(430)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6705), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(431)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6709), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(432)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6710), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(433)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6711), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(434)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6712), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(435)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6713), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(436)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4615), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(437)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4728), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(438)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4793), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(439)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4794), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(440)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4795), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(441)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5064), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(442)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5093), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(443)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5096), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(444)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5592), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(445)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5597), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(446)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5598), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(447)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4449), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(448)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4457), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(449)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4467), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(450)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4488), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(451)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4490), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(452)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4492), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(453)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4493), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(454)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4497), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(455)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4498), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(456)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4534), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(457)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4537), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(458)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4542), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(459)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4551), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(460)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4553), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(461)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4564), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(462)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4565), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(463)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4581), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(464)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4606), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(465)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4469), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(466)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(3916), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(467)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4305), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(468)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4502), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(469)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4505), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(470)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4510), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(471)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4519), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(472)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4532), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(473)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4544), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(474)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4557), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(475)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4558), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(476)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4561), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(477)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4569), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(478)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4302), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(479)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4191), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(480)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4580), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(481)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4584), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(482)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4587), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(483)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4598), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(484)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4618), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(485)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4310), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(486)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4300), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(487)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4623), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(488)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4625), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(489)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4634), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(490)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4148), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(491)] = { + [sym__statement] = STATE(920), + [sym__simple_statements] = STATE(920), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(920), + [sym_mlir_region] = STATE(920), + [sym_comptime_statement] = STATE(920), + [sym_if_statement] = STATE(920), + [sym_match_statement] = STATE(920), + [sym_for_statement] = STATE(920), + [sym_while_statement] = STATE(920), + [sym_try_statement] = STATE(920), + [sym_with_statement] = STATE(920), + [sym_function_definition] = STATE(920), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(920), + [sym_trait_definition] = STATE(920), + [sym_decorated_definition] = STATE(920), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4108), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(920), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(97), + }, + [STATE(492)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4643), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(493)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4645), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(494)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4648), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(495)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4653), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(496)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4655), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(497)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4663), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(498)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4665), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(499)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4290), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(500)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4301), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(501)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4693), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(502)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4695), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(503)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4700), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(504)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4703), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(505)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4707), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(506)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4715), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(507)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4719), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(508)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4733), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(509)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4735), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(510)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4739), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(511)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4745), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(512)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4746), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(513)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4755), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(514)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4758), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(515)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4762), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(516)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4765), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(517)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4773), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(518)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4776), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(519)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4782), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(520)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4805), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(521)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4813), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(522)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4819), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(523)] = { + [sym__statement] = STATE(922), + [sym__simple_statements] = STATE(922), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(922), + [sym_mlir_region] = STATE(922), + [sym_comptime_statement] = STATE(922), + [sym_if_statement] = STATE(922), + [sym_match_statement] = STATE(922), + [sym_for_statement] = STATE(922), + [sym_while_statement] = STATE(922), + [sym_try_statement] = STATE(922), + [sym_with_statement] = STATE(922), + [sym_function_definition] = STATE(922), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(922), + [sym_trait_definition] = STATE(922), + [sym_decorated_definition] = STATE(922), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(9724), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(922), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(127), + [sym_string_start] = ACTIONS(97), + }, + [STATE(524)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4833), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(525)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4839), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(526)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4846), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(527)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4849), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(528)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4854), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(529)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4858), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(530)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4864), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(531)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4879), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(532)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4124), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(533)] = { + [sym__statement] = STATE(920), + [sym__simple_statements] = STATE(920), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(920), + [sym_mlir_region] = STATE(920), + [sym_comptime_statement] = STATE(920), + [sym_if_statement] = STATE(920), + [sym_match_statement] = STATE(920), + [sym_for_statement] = STATE(920), + [sym_while_statement] = STATE(920), + [sym_try_statement] = STATE(920), + [sym_with_statement] = STATE(920), + [sym_function_definition] = STATE(920), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(920), + [sym_trait_definition] = STATE(920), + [sym_decorated_definition] = STATE(920), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4161), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(920), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(97), + }, + [STATE(534)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4897), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(535)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4918), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(536)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4919), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(537)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4925), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(538)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4936), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(539)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4941), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(540)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4956), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(541)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4969), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(542)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4971), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(543)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4977), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(544)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4988), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(545)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5010), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(546)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5017), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(547)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5029), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(548)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5033), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(549)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5174), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(550)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5189), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(551)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5193), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(552)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5198), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(553)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5205), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(554)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5211), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(555)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5223), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(556)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5248), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(557)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5250), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(558)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5262), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(559)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5299), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(560)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5332), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(561)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5334), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(562)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5340), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(563)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5363), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(564)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5371), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(565)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5376), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(566)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5399), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(567)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5413), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(568)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5441), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(569)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5445), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(570)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5453), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(571)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5471), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(572)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5474), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(573)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5495), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(574)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5525), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(575)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5548), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(576)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5561), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(577)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5568), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(578)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5572), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(579)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5576), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(580)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5579), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(581)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5586), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(582)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5591), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(583)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5607), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(584)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5610), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(585)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5617), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(586)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5621), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(587)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5628), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(588)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5629), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(589)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5630), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(590)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5633), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(591)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5634), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(592)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5637), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(593)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5642), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(594)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5649), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(595)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5654), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(596)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5655), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(597)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5658), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(598)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5663), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(599)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5666), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(600)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5672), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(601)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5681), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(602)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5683), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(603)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5686), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(604)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5690), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(605)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5693), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(606)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5698), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(607)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5704), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(608)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5709), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(609)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5730), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(610)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5732), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(611)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5740), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(612)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5747), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(613)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5748), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(614)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5750), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(615)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5751), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(616)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5754), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(617)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5755), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(618)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5756), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(619)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5757), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(620)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5760), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(621)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5761), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(622)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5763), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(623)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5770), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(624)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5773), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(625)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5782), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(626)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5784), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(627)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5787), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(628)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5791), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(629)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5793), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(630)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5805), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(631)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5807), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(632)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5816), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(633)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5818), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(634)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5825), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(635)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5829), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(636)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5830), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(637)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5831), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(638)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5832), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(639)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5835), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(640)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5836), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(641)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5837), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(642)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5838), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(643)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5842), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(644)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5843), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(645)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5845), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(646)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5848), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(647)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5851), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(648)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5854), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(649)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5856), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(650)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5860), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(651)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5866), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(652)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5867), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(653)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5870), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(654)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5873), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(655)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5875), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(656)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5877), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(657)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5880), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(658)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5883), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(659)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5885), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(660)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5894), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(661)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5896), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(662)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5899), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(663)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5902), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(664)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5904), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(665)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5910), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(666)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5912), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(667)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5923), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(668)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5924), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(669)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5927), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(670)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5929), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(671)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5931), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(672)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5935), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(673)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5938), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(674)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5940), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(675)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5952), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(676)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5964), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(677)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5965), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(678)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5968), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(679)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5974), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(680)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5978), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(681)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5982), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(682)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5988), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(683)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5993), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(684)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(5996), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(685)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6005), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(686)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6010), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(687)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6014), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(688)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6020), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(689)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6022), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(690)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6029), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(691)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6032), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(692)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6042), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(693)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6043), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(694)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6044), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(695)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6046), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(696)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6047), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(697)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6051), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(698)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6052), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(699)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6057), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(700)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6060), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(701)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6069), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(702)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6074), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(703)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6089), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(704)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6100), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(705)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6101), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(706)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6104), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(707)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6114), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(708)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6124), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(709)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6126), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(710)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6132), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(711)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6135), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(712)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6137), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(713)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6142), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(714)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6149), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(715)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6156), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(716)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6157), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(717)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6161), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(718)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6165), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(719)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6170), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(720)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6172), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(721)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6176), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(722)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6179), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(723)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6182), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(724)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6191), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(725)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6192), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(726)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6193), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(727)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6199), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(728)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6207), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(729)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6216), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(730)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6228), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(731)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6236), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(732)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6237), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(733)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6240), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(734)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6247), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(735)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6258), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(736)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6259), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(737)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6265), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(738)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6269), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(739)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6270), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(740)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6277), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(741)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6282), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(742)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6290), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(743)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6291), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(744)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6294), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(745)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6298), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(746)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6301), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(747)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6305), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(748)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6309), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(749)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6312), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(750)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6315), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(751)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6325), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(752)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6326), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(753)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6327), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(754)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6330), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(755)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6338), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(756)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6339), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(757)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6344), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(758)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6353), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(759)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6360), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(760)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6365), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(761)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6368), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(762)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6370), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(763)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6374), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(764)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6379), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(765)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6391), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(766)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(767)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6400), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(768)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6401), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(769)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6403), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(770)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6406), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(771)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6412), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(772)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6420), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(773)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6426), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(774)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6427), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(775)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6429), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(776)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6435), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(777)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6443), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(778)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6444), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(779)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6447), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(780)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6462), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(781)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6463), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(782)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6464), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(783)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6465), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(784)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6468), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(785)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6469), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(786)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6471), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(787)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6474), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(788)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6477), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(789)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6480), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(790)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6481), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(791)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6483), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(792)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6486), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(793)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6489), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(794)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6495), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(795)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6500), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(796)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6501), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(797)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6502), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(798)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6504), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(799)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6508), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(800)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6511), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(801)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6518), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(802)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6527), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(803)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6528), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(804)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6534), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(805)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6542), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(806)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6550), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(807)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6551), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(808)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6555), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(809)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6562), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(810)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6563), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(811)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6566), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(812)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6567), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(813)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6568), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(814)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6575), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(815)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6576), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(816)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6581), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(817)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6582), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(818)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6590), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(819)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6593), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(820)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6598), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(821)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6606), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(822)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6609), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(823)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6615), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(824)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6618), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(825)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6621), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(826)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6625), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(827)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6626), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(828)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6630), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(829)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6638), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(830)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6641), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(831)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6645), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(832)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6647), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(833)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6652), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(834)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6655), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(835)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6659), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(836)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6669), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(837)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6675), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(838)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6676), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(839)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6677), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(840)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6678), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(841)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6698), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(842)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6701), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(843)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6702), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(844)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6703), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(845)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6704), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(846)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6716), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(847)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(6717), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(848)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4313), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(849)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4316), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(850)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4319), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(851)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4322), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(852)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4323), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(853)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4324), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(854)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4327), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(855)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4328), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(856)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4330), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(857)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4333), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(858)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4336), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(859)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4339), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(860)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4340), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(861)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4342), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(862)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4345), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(863)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4348), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(864)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4354), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(865)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4359), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(866)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4360), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(867)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4361), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(868)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4362), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(869)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4363), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(870)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4364), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(871)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4367), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(872)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4368), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(873)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4369), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(874)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4370), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(875)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4371), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(876)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4374), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(877)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4375), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(878)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4376), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(879)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4377), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(880)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4380), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(881)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4381), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(882)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4383), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(883)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4386), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(884)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4389), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(885)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4392), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(886)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4393), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(887)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4394), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(888)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4395), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(889)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4396), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(890)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4399), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(891)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4400), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(892)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4401), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(893)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4402), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(894)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4403), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(895)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4406), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(896)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4407), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(897)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4408), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(898)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4409), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(899)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4412), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(900)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4413), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(901)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4415), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(902)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4418), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(903)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4421), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(904)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4424), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(905)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4425), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(906)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4426), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(907)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4427), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(908)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4428), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(909)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4429), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(910)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4432), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(911)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4433), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(912)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4434), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(913)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4435), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(914)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4436), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(915)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4437), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(916)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4438), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(917)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4441), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(918)] = { + [sym__statement] = STATE(927), + [sym__simple_statements] = STATE(927), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(927), + [sym_mlir_region] = STATE(927), + [sym_comptime_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_match_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_with_statement] = STATE(927), + [sym_function_definition] = STATE(927), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(927), + [sym_trait_definition] = STATE(927), + [sym_decorated_definition] = STATE(927), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4442), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(927), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(97), + }, + [STATE(919)] = { + [sym__statement] = STATE(925), + [sym__simple_statements] = STATE(925), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(925), + [sym_mlir_region] = STATE(925), + [sym_comptime_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_match_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_with_statement] = STATE(925), + [sym_function_definition] = STATE(925), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(925), + [sym_trait_definition] = STATE(925), + [sym_decorated_definition] = STATE(925), + [sym_decorator] = STATE(3670), + [sym_block] = STATE(4579), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(925), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(97), + }, + [STATE(920)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(137), + [sym_string_start] = ACTIONS(97), + }, + [STATE(921)] = { + [sym__statement] = STATE(923), + [sym__simple_statements] = STATE(923), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_extension_definition] = STATE(923), + [sym_mlir_region] = STATE(923), + [sym_comptime_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_match_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_try_statement] = STATE(923), + [sym_with_statement] = STATE(923), + [sym_function_definition] = STATE(923), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_class_definition] = STATE(923), + [sym_trait_definition] = STATE(923), + [sym_decorated_definition] = STATE(923), + [sym_decorator] = STATE(3668), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(923), + [aux_sym_decorated_definition_repeat1] = STATE(3668), + [ts_builtin_sym_end] = ACTIONS(139), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(39), + [anon_sym___mlir_region] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_match] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_for] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_try] = ACTIONS(53), + [anon_sym_with] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_fn] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(922)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(97), + }, + [STATE(923)] = { + [sym__statement] = STATE(923), + [sym__simple_statements] = STATE(923), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_extension_definition] = STATE(923), + [sym_mlir_region] = STATE(923), + [sym_comptime_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_match_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_try_statement] = STATE(923), + [sym_with_statement] = STATE(923), + [sym_function_definition] = STATE(923), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_class_definition] = STATE(923), + [sym_trait_definition] = STATE(923), + [sym_decorated_definition] = STATE(923), + [sym_decorator] = STATE(3668), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(923), + [aux_sym_decorated_definition_repeat1] = STATE(3668), + [ts_builtin_sym_end] = ACTIONS(143), + [sym_identifier] = ACTIONS(145), + [anon_sym_import] = ACTIONS(148), + [anon_sym_from] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_print] = ACTIONS(160), + [anon_sym_comptime] = ACTIONS(163), + [anon_sym_assert] = ACTIONS(166), + [anon_sym___comptime_assert] = ACTIONS(169), + [anon_sym_return] = ACTIONS(172), + [anon_sym_del] = ACTIONS(175), + [anon_sym_raise] = ACTIONS(178), + [anon_sym_pass] = ACTIONS(181), + [anon_sym_break] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym___extension] = ACTIONS(190), + [anon_sym___mlir_region] = ACTIONS(193), + [anon_sym_if] = ACTIONS(196), + [anon_sym_match] = ACTIONS(199), + [anon_sym_async] = ACTIONS(202), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(208), + [anon_sym_try] = ACTIONS(211), + [anon_sym_with] = ACTIONS(214), + [anon_sym_def] = ACTIONS(217), + [anon_sym_fn] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_global] = ACTIONS(226), + [anon_sym_nonlocal] = ACTIONS(229), + [anon_sym_exec] = ACTIONS(232), + [anon_sym_type] = ACTIONS(235), + [anon_sym_class] = ACTIONS(238), + [anon_sym_struct] = ACTIONS(238), + [anon_sym_mut] = ACTIONS(241), + [anon_sym_out] = ACTIONS(241), + [anon_sym_trait] = ACTIONS(244), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_ref] = ACTIONS(253), + [anon_sym_var] = ACTIONS(253), + [anon_sym_not] = ACTIONS(256), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_lambda] = ACTIONS(259), + [anon_sym_yield] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(265), + [anon_sym___mlir_type] = ACTIONS(268), + [sym_integer] = ACTIONS(271), + [sym_float] = ACTIONS(265), + [anon_sym_await] = ACTIONS(274), + [sym_true] = ACTIONS(271), + [sym_false] = ACTIONS(271), + [sym_none] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(277), + }, + [STATE(924)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(145), + [anon_sym_import] = ACTIONS(148), + [anon_sym_from] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_print] = ACTIONS(160), + [anon_sym_comptime] = ACTIONS(280), + [anon_sym_assert] = ACTIONS(166), + [anon_sym___comptime_assert] = ACTIONS(169), + [anon_sym_return] = ACTIONS(172), + [anon_sym_del] = ACTIONS(175), + [anon_sym_raise] = ACTIONS(178), + [anon_sym_pass] = ACTIONS(181), + [anon_sym_break] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym___extension] = ACTIONS(283), + [anon_sym___mlir_region] = ACTIONS(286), + [anon_sym_if] = ACTIONS(289), + [anon_sym_match] = ACTIONS(292), + [anon_sym_async] = ACTIONS(295), + [anon_sym_for] = ACTIONS(298), + [anon_sym_while] = ACTIONS(301), + [anon_sym_try] = ACTIONS(304), + [anon_sym_with] = ACTIONS(307), + [anon_sym_def] = ACTIONS(310), + [anon_sym_fn] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_global] = ACTIONS(226), + [anon_sym_nonlocal] = ACTIONS(229), + [anon_sym_exec] = ACTIONS(232), + [anon_sym_type] = ACTIONS(235), + [anon_sym_class] = ACTIONS(313), + [anon_sym_struct] = ACTIONS(313), + [anon_sym_mut] = ACTIONS(241), + [anon_sym_out] = ACTIONS(241), + [anon_sym_trait] = ACTIONS(316), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_ref] = ACTIONS(253), + [anon_sym_var] = ACTIONS(253), + [anon_sym_not] = ACTIONS(256), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_lambda] = ACTIONS(259), + [anon_sym_yield] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(265), + [anon_sym___mlir_type] = ACTIONS(268), + [sym_integer] = ACTIONS(271), + [sym_float] = ACTIONS(265), + [anon_sym_await] = ACTIONS(274), + [sym_true] = ACTIONS(271), + [sym_false] = ACTIONS(271), + [sym_none] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(277), + }, + [STATE(925)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(319), + [sym_string_start] = ACTIONS(97), + }, + [STATE(926)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(321), + [sym_string_start] = ACTIONS(97), + }, + [STATE(927)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(323), + [sym_string_start] = ACTIONS(97), + }, + [STATE(928)] = { + [sym__statement] = STATE(924), + [sym__simple_statements] = STATE(924), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_extension_definition] = STATE(924), + [sym_mlir_region] = STATE(924), + [sym_comptime_statement] = STATE(924), + [sym_if_statement] = STATE(924), + [sym_match_statement] = STATE(924), + [sym_for_statement] = STATE(924), + [sym_while_statement] = STATE(924), + [sym_try_statement] = STATE(924), + [sym_with_statement] = STATE(924), + [sym_function_definition] = STATE(924), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_class_definition] = STATE(924), + [sym_trait_definition] = STATE(924), + [sym_decorated_definition] = STATE(924), + [sym_decorator] = STATE(3670), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [aux_sym_module_repeat1] = STATE(924), + [aux_sym_decorated_definition_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym___extension] = ACTIONS(101), + [anon_sym___mlir_region] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_match] = ACTIONS(107), + [anon_sym_async] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_try] = ACTIONS(115), + [anon_sym_with] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(325), + [sym_string_start] = ACTIONS(97), + }, + [STATE(929)] = { + [sym__simple_statements] = STATE(6540), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(353), + [sym__indent] = ACTIONS(355), + [sym_string_start] = ACTIONS(97), + }, + [STATE(930)] = { + [sym__simple_statements] = STATE(6117), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(357), + [sym__indent] = ACTIONS(359), + [sym_string_start] = ACTIONS(97), + }, + [STATE(931)] = { + [sym__simple_statements] = STATE(6082), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(361), + [sym__indent] = ACTIONS(363), + [sym_string_start] = ACTIONS(97), + }, + [STATE(932)] = { + [sym__simple_statements] = STATE(6086), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(365), + [sym__indent] = ACTIONS(367), + [sym_string_start] = ACTIONS(97), + }, + [STATE(933)] = { + [sym__simple_statements] = STATE(4727), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(369), + [sym__indent] = ACTIONS(371), + [sym_string_start] = ACTIONS(97), + }, + [STATE(934)] = { + [sym__simple_statements] = STATE(6099), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(373), + [sym__indent] = ACTIONS(375), + [sym_string_start] = ACTIONS(97), + }, + [STATE(935)] = { + [sym__simple_statements] = STATE(5567), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(377), + [sym__indent] = ACTIONS(379), + [sym_string_start] = ACTIONS(97), + }, + [STATE(936)] = { + [sym__simple_statements] = STATE(5492), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(381), + [sym__indent] = ACTIONS(383), + [sym_string_start] = ACTIONS(97), + }, + [STATE(937)] = { + [sym__simple_statements] = STATE(6524), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(385), + [sym__indent] = ACTIONS(387), + [sym_string_start] = ACTIONS(97), + }, + [STATE(938)] = { + [sym__simple_statements] = STATE(6106), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym_string_start] = ACTIONS(97), + }, + [STATE(939)] = { + [sym__simple_statements] = STATE(6110), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), + [sym_string_start] = ACTIONS(97), + }, + [STATE(940)] = { + [sym__simple_statements] = STATE(5238), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), + [sym_string_start] = ACTIONS(97), + }, + [STATE(941)] = { + [sym__simple_statements] = STATE(6123), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), + [sym_string_start] = ACTIONS(97), + }, + [STATE(942)] = { + [sym__simple_statements] = STATE(5602), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), + [sym_string_start] = ACTIONS(97), + }, + [STATE(943)] = { + [sym__simple_statements] = STATE(5242), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(97), + }, + [STATE(944)] = { + [sym__simple_statements] = STATE(6129), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(97), + }, + [STATE(945)] = { + [sym__simple_statements] = STATE(4939), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(97), + }, + [STATE(946)] = { + [sym__simple_statements] = STATE(4766), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), + [sym_string_start] = ACTIONS(97), + }, + [STATE(947)] = { + [sym__simple_statements] = STATE(4951), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), + [sym_string_start] = ACTIONS(97), + }, + [STATE(948)] = { + [sym__simple_statements] = STATE(4954), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), + [sym_string_start] = ACTIONS(97), + }, + [STATE(949)] = { + [sym__simple_statements] = STATE(6146), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(97), + }, + [STATE(950)] = { + [sym__simple_statements] = STATE(6148), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(97), + }, + [STATE(951)] = { + [sym__simple_statements] = STATE(5636), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), + [sym_string_start] = ACTIONS(97), + }, + [STATE(952)] = { + [sym__simple_statements] = STATE(6155), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), + [sym_string_start] = ACTIONS(97), + }, + [STATE(953)] = { + [sym__simple_statements] = STATE(4967), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), + [sym_string_start] = ACTIONS(97), + }, + [STATE(954)] = { + [sym__simple_statements] = STATE(5251), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), + [sym_string_start] = ACTIONS(97), + }, + [STATE(955)] = { + [sym__simple_statements] = STATE(6160), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), + [sym_string_start] = ACTIONS(97), + }, + [STATE(956)] = { + [sym__simple_statements] = STATE(6189), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), + [sym_string_start] = ACTIONS(97), + }, + [STATE(957)] = { + [sym__simple_statements] = STATE(4772), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), + [sym_string_start] = ACTIONS(97), + }, + [STATE(958)] = { + [sym__simple_statements] = STATE(6167), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), + [sym_string_start] = ACTIONS(97), + }, + [STATE(959)] = { + [sym__simple_statements] = STATE(4981), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), + [sym_string_start] = ACTIONS(97), + }, + [STATE(960)] = { + [sym__simple_statements] = STATE(4987), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), + [sym_string_start] = ACTIONS(97), + }, + [STATE(961)] = { + [sym__simple_statements] = STATE(6175), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), + [sym_string_start] = ACTIONS(97), + }, + [STATE(962)] = { + [sym__simple_statements] = STATE(6570), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), + [sym_string_start] = ACTIONS(97), + }, + [STATE(963)] = { + [sym__simple_statements] = STATE(4997), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), + [sym_string_start] = ACTIONS(97), + }, + [STATE(964)] = { + [sym__simple_statements] = STATE(5257), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(97), + }, + [STATE(965)] = { + [sym__simple_statements] = STATE(4778), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), + [sym_string_start] = ACTIONS(97), + }, + [STATE(966)] = { + [sym__simple_statements] = STATE(5028), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), + [sym_string_start] = ACTIONS(97), + }, + [STATE(967)] = { + [sym__simple_statements] = STATE(5021), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), + [sym_string_start] = ACTIONS(97), + }, + [STATE(968)] = { + [sym__simple_statements] = STATE(5265), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), + [sym_string_start] = ACTIONS(97), + }, + [STATE(969)] = { + [sym__simple_statements] = STATE(4676), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), + [sym_string_start] = ACTIONS(97), + }, + [STATE(970)] = { + [sym__simple_statements] = STATE(6212), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), + [sym_string_start] = ACTIONS(97), + }, + [STATE(971)] = { + [sym__simple_statements] = STATE(6595), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(521), + [sym__indent] = ACTIONS(523), + [sym_string_start] = ACTIONS(97), + }, + [STATE(972)] = { + [sym__simple_statements] = STATE(6223), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(525), + [sym__indent] = ACTIONS(527), + [sym_string_start] = ACTIONS(97), + }, + [STATE(973)] = { + [sym__simple_statements] = STATE(6225), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(529), + [sym__indent] = ACTIONS(531), + [sym_string_start] = ACTIONS(97), + }, + [STATE(974)] = { + [sym__simple_statements] = STATE(5034), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(533), + [sym__indent] = ACTIONS(535), + [sym_string_start] = ACTIONS(97), + }, + [STATE(975)] = { + [sym__simple_statements] = STATE(6234), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(537), + [sym__indent] = ACTIONS(539), + [sym_string_start] = ACTIONS(97), + }, + [STATE(976)] = { + [sym__simple_statements] = STATE(6603), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(541), + [sym__indent] = ACTIONS(543), + [sym_string_start] = ACTIONS(97), + }, + [STATE(977)] = { + [sym__simple_statements] = STATE(6613), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(545), + [sym__indent] = ACTIONS(547), + [sym_string_start] = ACTIONS(97), + }, + [STATE(978)] = { + [sym__simple_statements] = STATE(5209), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + [sym__indent] = ACTIONS(551), + [sym_string_start] = ACTIONS(97), + }, + [STATE(979)] = { + [sym__simple_statements] = STATE(6242), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(553), + [sym__indent] = ACTIONS(555), + [sym_string_start] = ACTIONS(97), + }, + [STATE(980)] = { + [sym__simple_statements] = STATE(6246), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), + [sym_string_start] = ACTIONS(97), + }, + [STATE(981)] = { + [sym__simple_statements] = STATE(5274), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(561), + [sym__indent] = ACTIONS(563), + [sym_string_start] = ACTIONS(97), + }, + [STATE(982)] = { + [sym__simple_statements] = STATE(6256), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(565), + [sym__indent] = ACTIONS(567), + [sym_string_start] = ACTIONS(97), + }, + [STATE(983)] = { + [sym__simple_statements] = STATE(5216), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(569), + [sym__indent] = ACTIONS(571), + [sym_string_start] = ACTIONS(97), + }, + [STATE(984)] = { + [sym__simple_statements] = STATE(5220), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(573), + [sym__indent] = ACTIONS(575), + [sym_string_start] = ACTIONS(97), + }, + [STATE(985)] = { + [sym__simple_statements] = STATE(6264), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), + [sym_string_start] = ACTIONS(97), + }, + [STATE(986)] = { + [sym__simple_statements] = STATE(6629), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), + [sym_string_start] = ACTIONS(97), + }, + [STATE(987)] = { + [sym__simple_statements] = STATE(5240), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), + [sym_string_start] = ACTIONS(97), + }, + [STATE(988)] = { + [sym__simple_statements] = STATE(4790), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), + [sym_string_start] = ACTIONS(97), + }, + [STATE(989)] = { + [sym__simple_statements] = STATE(5713), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), + [sym_string_start] = ACTIONS(97), + }, + [STATE(990)] = { + [sym__simple_statements] = STATE(6278), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(597), + [sym__indent] = ACTIONS(599), + [sym_string_start] = ACTIONS(97), + }, + [STATE(991)] = { + [sym__simple_statements] = STATE(6280), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), + [sym_string_start] = ACTIONS(97), + }, + [STATE(992)] = { + [sym__simple_statements] = STATE(5316), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(605), + [sym__indent] = ACTIONS(607), + [sym_string_start] = ACTIONS(97), + }, + [STATE(993)] = { + [sym__simple_statements] = STATE(6289), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), + [sym_string_start] = ACTIONS(97), + }, + [STATE(994)] = { + [sym__simple_statements] = STATE(5271), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), + [sym_string_start] = ACTIONS(97), + }, + [STATE(995)] = { + [sym__simple_statements] = STATE(5287), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(617), + [sym__indent] = ACTIONS(619), + [sym_string_start] = ACTIONS(97), + }, + [STATE(996)] = { + [sym__simple_statements] = STATE(6293), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(621), + [sym__indent] = ACTIONS(623), + [sym_string_start] = ACTIONS(97), + }, + [STATE(997)] = { + [sym__simple_statements] = STATE(5042), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(625), + [sym__indent] = ACTIONS(627), + [sym_string_start] = ACTIONS(97), + }, + [STATE(998)] = { + [sym__simple_statements] = STATE(5329), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(629), + [sym__indent] = ACTIONS(631), + [sym_string_start] = ACTIONS(97), + }, + [STATE(999)] = { + [sym__simple_statements] = STATE(6299), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(633), + [sym__indent] = ACTIONS(635), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1000)] = { + [sym__simple_statements] = STATE(5292), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(637), + [sym__indent] = ACTIONS(639), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1001)] = { + [sym__simple_statements] = STATE(5515), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(641), + [sym__indent] = ACTIONS(643), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1002)] = { + [sym__simple_statements] = STATE(6307), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(645), + [sym__indent] = ACTIONS(647), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1003)] = { + [sym__simple_statements] = STATE(5339), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(649), + [sym__indent] = ACTIONS(651), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1004)] = { + [sym__simple_statements] = STATE(4804), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(653), + [sym__indent] = ACTIONS(655), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1005)] = { + [sym__simple_statements] = STATE(5744), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(657), + [sym__indent] = ACTIONS(659), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1006)] = { + [sym__simple_statements] = STATE(5369), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(661), + [sym__indent] = ACTIONS(663), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1007)] = { + [sym__simple_statements] = STATE(5302), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(665), + [sym__indent] = ACTIONS(667), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1008)] = { + [sym__simple_statements] = STATE(5765), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(669), + [sym__indent] = ACTIONS(671), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1009)] = { + [sym__simple_statements] = STATE(5769), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(673), + [sym__indent] = ACTIONS(675), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1010)] = { + [sym__simple_statements] = STATE(5076), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(677), + [sym__indent] = ACTIONS(679), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1011)] = { + [sym__simple_statements] = STATE(5799), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(681), + [sym__indent] = ACTIONS(683), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1012)] = { + [sym__simple_statements] = STATE(5054), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(685), + [sym__indent] = ACTIONS(687), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1013)] = { + [sym__simple_statements] = STATE(4489), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(689), + [sym__indent] = ACTIONS(691), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1014)] = { + [sym__simple_statements] = STATE(6356), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(693), + [sym__indent] = ACTIONS(695), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1015)] = { + [sym__simple_statements] = STATE(5320), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym__indent] = ACTIONS(699), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1016)] = { + [sym__simple_statements] = STATE(4802), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(701), + [sym__indent] = ACTIONS(703), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1017)] = { + [sym__simple_statements] = STATE(5069), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(705), + [sym__indent] = ACTIONS(707), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1018)] = { + [sym__simple_statements] = STATE(5915), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(709), + [sym__indent] = ACTIONS(711), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1019)] = { + [sym__simple_statements] = STATE(5544), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(713), + [sym__indent] = ACTIONS(715), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1020)] = { + [sym__simple_statements] = STATE(6378), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(717), + [sym__indent] = ACTIONS(719), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1021)] = { + [sym__simple_statements] = STATE(6697), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(721), + [sym__indent] = ACTIONS(723), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1022)] = { + [sym__simple_statements] = STATE(6385), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(725), + [sym__indent] = ACTIONS(727), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1023)] = { + [sym__simple_statements] = STATE(6390), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(729), + [sym__indent] = ACTIONS(731), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1024)] = { + [sym__simple_statements] = STATE(4500), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(733), + [sym__indent] = ACTIONS(735), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1025)] = { + [sym__simple_statements] = STATE(6396), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(737), + [sym__indent] = ACTIONS(739), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1026)] = { + [sym__simple_statements] = STATE(5926), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(741), + [sym__indent] = ACTIONS(743), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1027)] = { + [sym__simple_statements] = STATE(5933), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(745), + [sym__indent] = ACTIONS(747), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1028)] = { + [sym__simple_statements] = STATE(4508), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(749), + [sym__indent] = ACTIONS(751), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1029)] = { + [sym__simple_statements] = STATE(5578), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(753), + [sym__indent] = ACTIONS(755), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1030)] = { + [sym__simple_statements] = STATE(5946), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(757), + [sym__indent] = ACTIONS(759), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1031)] = { + [sym__simple_statements] = STATE(6410), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(761), + [sym__indent] = ACTIONS(763), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1032)] = { + [sym__simple_statements] = STATE(5583), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(765), + [sym__indent] = ACTIONS(767), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1033)] = { + [sym__simple_statements] = STATE(6416), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(769), + [sym__indent] = ACTIONS(771), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1034)] = { + [sym__simple_statements] = STATE(6418), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(773), + [sym__indent] = ACTIONS(775), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1035)] = { + [sym__simple_statements] = STATE(5585), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(777), + [sym__indent] = ACTIONS(779), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1036)] = { + [sym__simple_statements] = STATE(6425), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(781), + [sym__indent] = ACTIONS(783), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1037)] = { + [sym__simple_statements] = STATE(5059), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(785), + [sym__indent] = ACTIONS(787), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1038)] = { + [sym__simple_statements] = STATE(5590), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(789), + [sym__indent] = ACTIONS(791), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1039)] = { + [sym__simple_statements] = STATE(4515), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(793), + [sym__indent] = ACTIONS(795), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1040)] = { + [sym__simple_statements] = STATE(6430), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(797), + [sym__indent] = ACTIONS(799), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1041)] = { + [sym__simple_statements] = STATE(6433), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(801), + [sym__indent] = ACTIONS(803), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1042)] = { + [sym__simple_statements] = STATE(5605), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(805), + [sym__indent] = ACTIONS(807), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1043)] = { + [sym__simple_statements] = STATE(6441), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(809), + [sym__indent] = ACTIONS(811), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1044)] = { + [sym__simple_statements] = STATE(5253), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(813), + [sym__indent] = ACTIONS(815), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1045)] = { + [sym__simple_statements] = STATE(5957), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(817), + [sym__indent] = ACTIONS(819), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1046)] = { + [sym__simple_statements] = STATE(6446), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(821), + [sym__indent] = ACTIONS(823), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1047)] = { + [sym__simple_statements] = STATE(5962), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(825), + [sym__indent] = ACTIONS(827), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1048)] = { + [sym__simple_statements] = STATE(5423), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(829), + [sym__indent] = ACTIONS(831), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1049)] = { + [sym__simple_statements] = STATE(5981), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(833), + [sym__indent] = ACTIONS(835), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1050)] = { + [sym__simple_statements] = STATE(5433), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(837), + [sym__indent] = ACTIONS(839), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1051)] = { + [sym__simple_statements] = STATE(4526), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(841), + [sym__indent] = ACTIONS(843), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1052)] = { + [sym__simple_statements] = STATE(5995), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(845), + [sym__indent] = ACTIONS(847), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1053)] = { + [sym__simple_statements] = STATE(4880), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(849), + [sym__indent] = ACTIONS(851), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1054)] = { + [sym__simple_statements] = STATE(4535), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(853), + [sym__indent] = ACTIONS(855), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1055)] = { + [sym__simple_statements] = STATE(5362), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + [sym__indent] = ACTIONS(859), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1056)] = { + [sym__simple_statements] = STATE(6476), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(861), + [sym__indent] = ACTIONS(863), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1057)] = { + [sym__simple_statements] = STATE(5647), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(865), + [sym__indent] = ACTIONS(867), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1058)] = { + [sym__simple_statements] = STATE(4965), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(869), + [sym__indent] = ACTIONS(871), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1059)] = { + [sym__simple_statements] = STATE(4464), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(873), + [sym__indent] = ACTIONS(875), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1060)] = { + [sym__simple_statements] = STATE(5368), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(877), + [sym__indent] = ACTIONS(879), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1061)] = { + [sym__simple_statements] = STATE(5372), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(881), + [sym__indent] = ACTIONS(883), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1062)] = { + [sym__simple_statements] = STATE(6488), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(885), + [sym__indent] = ACTIONS(887), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1063)] = { + [sym__simple_statements] = STATE(4560), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(889), + [sym__indent] = ACTIONS(891), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1064)] = { + [sym__simple_statements] = STATE(6492), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(893), + [sym__indent] = ACTIONS(895), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1065)] = { + [sym__simple_statements] = STATE(6494), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(897), + [sym__indent] = ACTIONS(899), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1066)] = { + [sym__simple_statements] = STATE(5665), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(901), + [sym__indent] = ACTIONS(903), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1067)] = { + [sym__simple_statements] = STATE(6499), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(905), + [sym__indent] = ACTIONS(907), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1068)] = { + [sym__simple_statements] = STATE(5380), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(909), + [sym__indent] = ACTIONS(911), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1069)] = { + [sym__simple_statements] = STATE(5669), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(913), + [sym__indent] = ACTIONS(915), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1070)] = { + [sym__simple_statements] = STATE(5671), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(917), + [sym__indent] = ACTIONS(919), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1071)] = { + [sym__simple_statements] = STATE(6612), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(921), + [sym__indent] = ACTIONS(923), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1072)] = { + [sym__simple_statements] = STATE(5679), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(925), + [sym__indent] = ACTIONS(927), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1073)] = { + [sym__simple_statements] = STATE(6510), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(929), + [sym__indent] = ACTIONS(931), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1074)] = { + [sym__simple_statements] = STATE(6059), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(933), + [sym__indent] = ACTIONS(935), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1075)] = { + [sym__simple_statements] = STATE(6514), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(937), + [sym__indent] = ACTIONS(939), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1076)] = { + [sym__simple_statements] = STATE(6517), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(941), + [sym__indent] = ACTIONS(943), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1077)] = { + [sym__simple_statements] = STATE(5682), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(945), + [sym__indent] = ACTIONS(947), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1078)] = { + [sym__simple_statements] = STATE(6526), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(949), + [sym__indent] = ACTIONS(951), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1079)] = { + [sym__simple_statements] = STATE(5959), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(953), + [sym__indent] = ACTIONS(955), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1080)] = { + [sym__simple_statements] = STATE(4896), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(957), + [sym__indent] = ACTIONS(959), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1081)] = { + [sym__simple_statements] = STATE(5689), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(961), + [sym__indent] = ACTIONS(963), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1082)] = { + [sym__simple_statements] = STATE(6535), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(965), + [sym__indent] = ACTIONS(967), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1083)] = { + [sym__simple_statements] = STATE(4848), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(969), + [sym__indent] = ACTIONS(971), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1084)] = { + [sym__simple_statements] = STATE(5386), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(973), + [sym__indent] = ACTIONS(975), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1085)] = { + [sym__simple_statements] = STATE(6547), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(977), + [sym__indent] = ACTIONS(979), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1086)] = { + [sym__simple_statements] = STATE(5391), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(981), + [sym__indent] = ACTIONS(983), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1087)] = { + [sym__simple_statements] = STATE(5121), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(985), + [sym__indent] = ACTIONS(987), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1088)] = { + [sym__simple_statements] = STATE(6554), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(989), + [sym__indent] = ACTIONS(991), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1089)] = { + [sym__simple_statements] = STATE(4837), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(993), + [sym__indent] = ACTIONS(995), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1090)] = { + [sym__simple_statements] = STATE(6084), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(997), + [sym__indent] = ACTIONS(999), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1091)] = { + [sym__simple_statements] = STATE(5400), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + [sym__indent] = ACTIONS(1003), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1092)] = { + [sym__simple_statements] = STATE(5729), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1005), + [sym__indent] = ACTIONS(1007), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1093)] = { + [sym__simple_statements] = STATE(6093), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1009), + [sym__indent] = ACTIONS(1011), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1094)] = { + [sym__simple_statements] = STATE(6102), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1013), + [sym__indent] = ACTIONS(1015), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1095)] = { + [sym__simple_statements] = STATE(4586), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1017), + [sym__indent] = ACTIONS(1019), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1096)] = { + [sym__simple_statements] = STATE(5546), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1021), + [sym__indent] = ACTIONS(1023), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1097)] = { + [sym__simple_statements] = STATE(6118), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1025), + [sym__indent] = ACTIONS(1027), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1098)] = { + [sym__simple_statements] = STATE(4902), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1029), + [sym__indent] = ACTIONS(1031), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1099)] = { + [sym__simple_statements] = STATE(5408), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1033), + [sym__indent] = ACTIONS(1035), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1100)] = { + [sym__simple_statements] = STATE(5551), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1037), + [sym__indent] = ACTIONS(1039), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1101)] = { + [sym__simple_statements] = STATE(6608), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1041), + [sym__indent] = ACTIONS(1043), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1102)] = { + [sym__simple_statements] = STATE(4905), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1045), + [sym__indent] = ACTIONS(1047), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1103)] = { + [sym__simple_statements] = STATE(5130), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1049), + [sym__indent] = ACTIONS(1051), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1104)] = { + [sym__simple_statements] = STATE(5133), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1053), + [sym__indent] = ACTIONS(1055), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1105)] = { + [sym__simple_statements] = STATE(6145), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1057), + [sym__indent] = ACTIONS(1059), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1106)] = { + [sym__simple_statements] = STATE(6650), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1061), + [sym__indent] = ACTIONS(1063), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1107)] = { + [sym__simple_statements] = STATE(5772), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + [sym__indent] = ACTIONS(1067), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1108)] = { + [sym__simple_statements] = STATE(6163), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1069), + [sym__indent] = ACTIONS(1071), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1109)] = { + [sym__simple_statements] = STATE(5781), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1073), + [sym__indent] = ACTIONS(1075), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1110)] = { + [sym__simple_statements] = STATE(6640), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1077), + [sym__indent] = ACTIONS(1079), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1111)] = { + [sym__simple_statements] = STATE(6180), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1081), + [sym__indent] = ACTIONS(1083), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1112)] = { + [sym__simple_statements] = STATE(5419), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1085), + [sym__indent] = ACTIONS(1087), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1113)] = { + [sym__simple_statements] = STATE(5786), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1089), + [sym__indent] = ACTIONS(1091), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1114)] = { + [sym__simple_statements] = STATE(6197), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1093), + [sym__indent] = ACTIONS(1095), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1115)] = { + [sym__simple_statements] = STATE(5424), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1097), + [sym__indent] = ACTIONS(1099), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1116)] = { + [sym__simple_statements] = STATE(6658), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1101), + [sym__indent] = ACTIONS(1103), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1117)] = { + [sym__simple_statements] = STATE(5140), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1105), + [sym__indent] = ACTIONS(1107), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1118)] = { + [sym__simple_statements] = STATE(6666), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1109), + [sym__indent] = ACTIONS(1111), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1119)] = { + [sym__simple_statements] = STATE(6668), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1113), + [sym__indent] = ACTIONS(1115), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1120)] = { + [sym__simple_statements] = STATE(5798), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1117), + [sym__indent] = ACTIONS(1119), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1121)] = { + [sym__simple_statements] = STATE(6674), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1121), + [sym__indent] = ACTIONS(1123), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1122)] = { + [sym__simple_statements] = STATE(5432), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1125), + [sym__indent] = ACTIONS(1127), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1123)] = { + [sym__simple_statements] = STATE(6206), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1129), + [sym__indent] = ACTIONS(1131), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1124)] = { + [sym__simple_statements] = STATE(5815), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1133), + [sym__indent] = ACTIONS(1135), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1125)] = { + [sym__simple_statements] = STATE(4583), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1137), + [sym__indent] = ACTIONS(1139), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1126)] = { + [sym__simple_statements] = STATE(6213), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1141), + [sym__indent] = ACTIONS(1143), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1127)] = { + [sym__simple_statements] = STATE(4913), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1145), + [sym__indent] = ACTIONS(1147), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1128)] = { + [sym__simple_statements] = STATE(6226), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1149), + [sym__indent] = ACTIONS(1151), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1129)] = { + [sym__simple_statements] = STATE(6696), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1153), + [sym__indent] = ACTIONS(1155), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1130)] = { + [sym__simple_statements] = STATE(5440), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1157), + [sym__indent] = ACTIONS(1159), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1131)] = { + [sym__simple_statements] = STATE(6241), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1161), + [sym__indent] = ACTIONS(1163), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1132)] = { + [sym__simple_statements] = STATE(4622), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1165), + [sym__indent] = ACTIONS(1167), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1133)] = { + [sym__simple_statements] = STATE(5146), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1169), + [sym__indent] = ACTIONS(1171), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1134)] = { + [sym__simple_statements] = STATE(4915), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1173), + [sym__indent] = ACTIONS(1175), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1135)] = { + [sym__simple_statements] = STATE(4318), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1177), + [sym__indent] = ACTIONS(1179), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1136)] = { + [sym__simple_statements] = STATE(5448), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1181), + [sym__indent] = ACTIONS(1183), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1137)] = { + [sym__simple_statements] = STATE(4599), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1185), + [sym__indent] = ACTIONS(1187), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1138)] = { + [sym__simple_statements] = STATE(5152), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1189), + [sym__indent] = ACTIONS(1191), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1139)] = { + [sym__simple_statements] = STATE(4642), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1193), + [sym__indent] = ACTIONS(1195), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1140)] = { + [sym__simple_statements] = STATE(5457), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1197), + [sym__indent] = ACTIONS(1199), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1141)] = { + [sym__simple_statements] = STATE(5850), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1201), + [sym__indent] = ACTIONS(1203), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1142)] = { + [sym__simple_statements] = STATE(5980), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1205), + [sym__indent] = ACTIONS(1207), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1143)] = { + [sym__simple_statements] = STATE(4647), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1209), + [sym__indent] = ACTIONS(1211), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1144)] = { + [sym__simple_statements] = STATE(4335), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1213), + [sym__indent] = ACTIONS(1215), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1145)] = { + [sym__simple_statements] = STATE(4924), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1217), + [sym__indent] = ACTIONS(1219), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1146)] = { + [sym__simple_statements] = STATE(5857), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1221), + [sym__indent] = ACTIONS(1223), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1147)] = { + [sym__simple_statements] = STATE(5859), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1225), + [sym__indent] = ACTIONS(1227), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1148)] = { + [sym__simple_statements] = STATE(5159), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1229), + [sym__indent] = ACTIONS(1231), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1149)] = { + [sym__simple_statements] = STATE(5865), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1233), + [sym__indent] = ACTIONS(1235), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1150)] = { + [sym__simple_statements] = STATE(4347), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1237), + [sym__indent] = ACTIONS(1239), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1151)] = { + [sym__simple_statements] = STATE(4466), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1241), + [sym__indent] = ACTIONS(1243), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1152)] = { + [sym__simple_statements] = STATE(4351), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1245), + [sym__indent] = ACTIONS(1247), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1153)] = { + [sym__simple_statements] = STATE(4353), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1249), + [sym__indent] = ACTIONS(1251), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1154)] = { + [sym__simple_statements] = STATE(4661), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1253), + [sym__indent] = ACTIONS(1255), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1155)] = { + [sym__simple_statements] = STATE(4358), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1257), + [sym__indent] = ACTIONS(1259), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1156)] = { + [sym__simple_statements] = STATE(5869), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1261), + [sym__indent] = ACTIONS(1263), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1157)] = { + [sym__simple_statements] = STATE(5452), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1265), + [sym__indent] = ACTIONS(1267), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1158)] = { + [sym__simple_statements] = STATE(6039), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1269), + [sym__indent] = ACTIONS(1271), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1159)] = { + [sym__simple_statements] = STATE(5874), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1273), + [sym__indent] = ACTIONS(1275), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1160)] = { + [sym__simple_statements] = STATE(5173), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1277), + [sym__indent] = ACTIONS(1279), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1161)] = { + [sym__simple_statements] = STATE(4942), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1281), + [sym__indent] = ACTIONS(1283), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1162)] = { + [sym__simple_statements] = STATE(5879), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + [sym__indent] = ACTIONS(1287), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1163)] = { + [sym__simple_statements] = STATE(4692), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1289), + [sym__indent] = ACTIONS(1291), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1164)] = { + [sym__simple_statements] = STATE(6320), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1293), + [sym__indent] = ACTIONS(1295), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1165)] = { + [sym__simple_statements] = STATE(5488), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1297), + [sym__indent] = ACTIONS(1299), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1166)] = { + [sym__simple_statements] = STATE(5890), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1301), + [sym__indent] = ACTIONS(1303), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1167)] = { + [sym__simple_statements] = STATE(4699), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1305), + [sym__indent] = ACTIONS(1307), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1168)] = { + [sym__simple_statements] = STATE(5117), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1309), + [sym__indent] = ACTIONS(1311), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1169)] = { + [sym__simple_statements] = STATE(5898), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1313), + [sym__indent] = ACTIONS(1315), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1170)] = { + [sym__simple_statements] = STATE(5494), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1317), + [sym__indent] = ACTIONS(1319), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1171)] = { + [sym__simple_statements] = STATE(5499), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1321), + [sym__indent] = ACTIONS(1323), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1172)] = { + [sym__simple_statements] = STATE(4714), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1325), + [sym__indent] = ACTIONS(1327), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1173)] = { + [sym__simple_statements] = STATE(5909), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1329), + [sym__indent] = ACTIONS(1331), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1174)] = { + [sym__simple_statements] = STATE(5184), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1333), + [sym__indent] = ACTIONS(1335), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1175)] = { + [sym__simple_statements] = STATE(4388), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1337), + [sym__indent] = ACTIONS(1339), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1176)] = { + [sym__simple_statements] = STATE(5507), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1341), + [sym__indent] = ACTIONS(1343), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1177)] = { + [sym__simple_statements] = STATE(4686), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1345), + [sym__indent] = ACTIONS(1347), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1178)] = { + [sym__simple_statements] = STATE(4962), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1349), + [sym__indent] = ACTIONS(1351), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1179)] = { + [sym__simple_statements] = STATE(4736), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1353), + [sym__indent] = ACTIONS(1355), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1180)] = { + [sym__simple_statements] = STATE(4738), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1357), + [sym__indent] = ACTIONS(1359), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1181)] = { + [sym__simple_statements] = STATE(6355), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1361), + [sym__indent] = ACTIONS(1363), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1182)] = { + [sym__simple_statements] = STATE(4743), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1365), + [sym__indent] = ACTIONS(1367), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1183)] = { + [sym__simple_statements] = STATE(5776), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1369), + [sym__indent] = ACTIONS(1371), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1184)] = { + [sym__simple_statements] = STATE(5513), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1373), + [sym__indent] = ACTIONS(1375), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1185)] = { + [sym__simple_statements] = STATE(5944), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1377), + [sym__indent] = ACTIONS(1379), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1186)] = { + [sym__simple_statements] = STATE(5949), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1381), + [sym__indent] = ACTIONS(1383), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1187)] = { + [sym__simple_statements] = STATE(4750), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1385), + [sym__indent] = ACTIONS(1387), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1188)] = { + [sym__simple_statements] = STATE(5963), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1389), + [sym__indent] = ACTIONS(1391), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1189)] = { + [sym__simple_statements] = STATE(5518), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1393), + [sym__indent] = ACTIONS(1395), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1190)] = { + [sym__simple_statements] = STATE(5204), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1397), + [sym__indent] = ACTIONS(1399), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1191)] = { + [sym__simple_statements] = STATE(5967), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1401), + [sym__indent] = ACTIONS(1403), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1192)] = { + [sym__simple_statements] = STATE(4760), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1405), + [sym__indent] = ACTIONS(1407), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1193)] = { + [sym__simple_statements] = STATE(5526), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1409), + [sym__indent] = ACTIONS(1411), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1194)] = { + [sym__simple_statements] = STATE(5976), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1413), + [sym__indent] = ACTIONS(1415), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1195)] = { + [sym__simple_statements] = STATE(4420), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1417), + [sym__indent] = ACTIONS(1419), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1196)] = { + [sym__simple_statements] = STATE(6384), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1421), + [sym__indent] = ACTIONS(1423), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1197)] = { + [sym__simple_statements] = STATE(4769), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1425), + [sym__indent] = ACTIONS(1427), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1198)] = { + [sym__simple_statements] = STATE(5987), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1429), + [sym__indent] = ACTIONS(1431), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1199)] = { + [sym__simple_statements] = STATE(5273), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1433), + [sym__indent] = ACTIONS(1435), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1200)] = { + [sym__simple_statements] = STATE(6393), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1437), + [sym__indent] = ACTIONS(1439), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1201)] = { + [sym__simple_statements] = STATE(6407), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1441), + [sym__indent] = ACTIONS(1443), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1202)] = { + [sym__simple_statements] = STATE(6002), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1445), + [sym__indent] = ACTIONS(1447), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1203)] = { + [sym__simple_statements] = STATE(4612), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1449), + [sym__indent] = ACTIONS(1451), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1204)] = { + [sym__simple_statements] = STATE(6422), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1453), + [sym__indent] = ACTIONS(1455), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1205)] = { + [sym__simple_statements] = STATE(6013), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1457), + [sym__indent] = ACTIONS(1459), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1206)] = { + [sym__simple_statements] = STATE(4816), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1461), + [sym__indent] = ACTIONS(1463), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1207)] = { + [sym__simple_statements] = STATE(4818), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1465), + [sym__indent] = ACTIONS(1467), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1208)] = { + [sym__simple_statements] = STATE(5534), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1469), + [sym__indent] = ACTIONS(1471), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1209)] = { + [sym__simple_statements] = STATE(6027), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1473), + [sym__indent] = ACTIONS(1475), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1210)] = { + [sym__simple_statements] = STATE(4828), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1477), + [sym__indent] = ACTIONS(1479), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1211)] = { + [sym__simple_statements] = STATE(6085), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1481), + [sym__indent] = ACTIONS(1483), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1212)] = { + [sym__simple_statements] = STATE(5467), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1485), + [sym__indent] = ACTIONS(1487), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1213)] = { + [sym__simple_statements] = STATE(4857), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1489), + [sym__indent] = ACTIONS(1491), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1214)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_type_parameter] = STATE(8611), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11718), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1523), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1215)] = { + [sym__simple_statements] = STATE(5560), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1552), + [sym__indent] = ACTIONS(1554), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1216)] = { + [sym__simple_statements] = STATE(6073), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1556), + [sym__indent] = ACTIONS(1558), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1217)] = { + [sym__simple_statements] = STATE(5703), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6795), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9623), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6796), + [sym_subscript] = STATE(6797), + [sym_call] = STATE(6768), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6729), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(327), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_print] = ACTIONS(333), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(337), + [anon_sym_async] = ACTIONS(339), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(347), + [anon_sym_type] = ACTIONS(349), + [anon_sym_mut] = ACTIONS(339), + [anon_sym_out] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(351), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1560), + [sym__indent] = ACTIONS(1562), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1218)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11718), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1523), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1219)] = { + [sym_chevron] = STATE(11650), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9747), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1589), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1220)] = { + [sym__simple_statements] = STATE(5290), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1598), + [sym__indent] = ACTIONS(1600), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1221)] = { + [sym_chevron] = STATE(11650), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9747), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1589), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1222)] = { + [sym__simple_statements] = STATE(4450), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1602), + [sym__indent] = ACTIONS(1604), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1223)] = { + [sym__simple_statements] = STATE(3945), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1606), + [sym__indent] = ACTIONS(1608), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1224)] = { + [sym__simple_statements] = STATE(4295), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1610), + [sym__indent] = ACTIONS(1612), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1225)] = { + [sym__simple_statements] = STATE(4460), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1614), + [sym__indent] = ACTIONS(1616), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1226)] = { + [sym__simple_statements] = STATE(4462), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1618), + [sym__indent] = ACTIONS(1620), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1227)] = { + [sym__simple_statements] = STATE(4470), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1622), + [sym__indent] = ACTIONS(1624), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1228)] = { + [sym__simple_statements] = STATE(4484), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1626), + [sym__indent] = ACTIONS(1628), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1229)] = { + [sym__simple_statements] = STATE(5111), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1630), + [sym__indent] = ACTIONS(1632), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1230)] = { + [sym__simple_statements] = STATE(4503), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1634), + [sym__indent] = ACTIONS(1636), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1231)] = { + [sym__simple_statements] = STATE(4507), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1638), + [sym__indent] = ACTIONS(1640), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1232)] = { + [sym__simple_statements] = STATE(5114), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1642), + [sym__indent] = ACTIONS(1644), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1233)] = { + [sym__simple_statements] = STATE(5118), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1646), + [sym__indent] = ACTIONS(1648), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1234)] = { + [sym__simple_statements] = STATE(4533), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1650), + [sym__indent] = ACTIONS(1652), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1235)] = { + [sym__simple_statements] = STATE(4293), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1654), + [sym__indent] = ACTIONS(1656), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1236)] = { + [sym__simple_statements] = STATE(4083), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1658), + [sym__indent] = ACTIONS(1660), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1237)] = { + [sym__simple_statements] = STATE(4538), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1662), + [sym__indent] = ACTIONS(1664), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1238)] = { + [sym__simple_statements] = STATE(4546), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1666), + [sym__indent] = ACTIONS(1668), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1239)] = { + [sym__simple_statements] = STATE(4548), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1670), + [sym__indent] = ACTIONS(1672), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1240)] = { + [sym__simple_statements] = STATE(4549), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1674), + [sym__indent] = ACTIONS(1676), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1241)] = { + [sym__simple_statements] = STATE(4559), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1678), + [sym__indent] = ACTIONS(1680), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1242)] = { + [sym__simple_statements] = STATE(5125), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1682), + [sym__indent] = ACTIONS(1684), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1243)] = { + [sym__simple_statements] = STATE(4309), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1686), + [sym__indent] = ACTIONS(1688), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1244)] = { + [sym__simple_statements] = STATE(4299), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1690), + [sym__indent] = ACTIONS(1692), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1245)] = { + [sym__simple_statements] = STATE(4570), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1694), + [sym__indent] = ACTIONS(1696), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1246)] = { + [sym__simple_statements] = STATE(4572), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1698), + [sym__indent] = ACTIONS(1700), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1247)] = { + [sym__simple_statements] = STATE(4575), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1702), + [sym__indent] = ACTIONS(1704), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1248)] = { + [sym__simple_statements] = STATE(5127), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1706), + [sym__indent] = ACTIONS(1708), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1249)] = { + [sym__simple_statements] = STATE(4197), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1710), + [sym__indent] = ACTIONS(1712), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1250)] = { + [sym__simple_statements] = STATE(4199), + [sym_import_statement] = STATE(12225), + [sym_future_import_statement] = STATE(12225), + [sym_import_from_statement] = STATE(12225), + [sym_print_statement] = STATE(12225), + [sym_assert_statement] = STATE(12225), + [sym_comptime_assert_statement] = STATE(12225), + [sym_expression_statement] = STATE(12225), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12225), + [sym_delete_statement] = STATE(12225), + [sym_raise_statement] = STATE(12225), + [sym_pass_statement] = STATE(12225), + [sym_break_statement] = STATE(12225), + [sym_continue_statement] = STATE(12225), + [sym_global_statement] = STATE(12225), + [sym_nonlocal_statement] = STATE(12225), + [sym_exec_statement] = STATE(12225), + [sym_type_alias_statement] = STATE(12225), + [sym_parameterized_alias_statement] = STATE(12225), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1714), + [sym__indent] = ACTIONS(1716), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1251)] = { + [sym__simple_statements] = STATE(12360), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1718), + [sym__indent] = ACTIONS(1720), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1252)] = { + [sym__simple_statements] = STATE(4674), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1722), + [sym__indent] = ACTIONS(1724), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1253)] = { + [sym__simple_statements] = STATE(4585), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1726), + [sym__indent] = ACTIONS(1728), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1254)] = { + [sym__simple_statements] = STATE(5137), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1730), + [sym__indent] = ACTIONS(1732), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1255)] = { + [sym__simple_statements] = STATE(4590), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1734), + [sym__indent] = ACTIONS(1736), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1256)] = { + [sym__simple_statements] = STATE(4593), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1738), + [sym__indent] = ACTIONS(1740), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1257)] = { + [sym__simple_statements] = STATE(4596), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1742), + [sym__indent] = ACTIONS(1744), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1258)] = { + [sym__simple_statements] = STATE(12363), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1746), + [sym__indent] = ACTIONS(1748), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1259)] = { + [sym__simple_statements] = STATE(4600), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1750), + [sym__indent] = ACTIONS(1752), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1260)] = { + [sym__simple_statements] = STATE(4603), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1754), + [sym__indent] = ACTIONS(1756), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1261)] = { + [sym__simple_statements] = STATE(5813), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1758), + [sym__indent] = ACTIONS(1760), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1262)] = { + [sym__simple_statements] = STATE(4291), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1762), + [sym__indent] = ACTIONS(1764), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1263)] = { + [sym__simple_statements] = STATE(4292), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1766), + [sym__indent] = ACTIONS(1768), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1264)] = { + [sym__simple_statements] = STATE(5947), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1770), + [sym__indent] = ACTIONS(1772), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1265)] = { + [sym__simple_statements] = STATE(5150), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1774), + [sym__indent] = ACTIONS(1776), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1266)] = { + [sym__simple_statements] = STATE(4624), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1778), + [sym__indent] = ACTIONS(1780), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1267)] = { + [sym__simple_statements] = STATE(4684), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1782), + [sym__indent] = ACTIONS(1784), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1268)] = { + [sym__simple_statements] = STATE(4628), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1786), + [sym__indent] = ACTIONS(1788), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1269)] = { + [sym__simple_statements] = STATE(4631), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1790), + [sym__indent] = ACTIONS(1792), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1270)] = { + [sym__simple_statements] = STATE(4633), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1794), + [sym__indent] = ACTIONS(1796), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1271)] = { + [sym__simple_statements] = STATE(4637), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1798), + [sym__indent] = ACTIONS(1800), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1272)] = { + [sym__simple_statements] = STATE(4639), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1802), + [sym__indent] = ACTIONS(1804), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1273)] = { + [sym__simple_statements] = STATE(4752), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1806), + [sym__indent] = ACTIONS(1808), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1274)] = { + [sym__simple_statements] = STATE(5155), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1810), + [sym__indent] = ACTIONS(1812), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1275)] = { + [sym__simple_statements] = STATE(6000), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1814), + [sym__indent] = ACTIONS(1816), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1276)] = { + [sym__simple_statements] = STATE(4644), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1818), + [sym__indent] = ACTIONS(1820), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1277)] = { + [sym__simple_statements] = STATE(5162), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1822), + [sym__indent] = ACTIONS(1824), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1278)] = { + [sym__simple_statements] = STATE(5163), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1826), + [sym__indent] = ACTIONS(1828), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1279)] = { + [sym__simple_statements] = STATE(3950), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1830), + [sym__indent] = ACTIONS(1832), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1280)] = { + [sym__simple_statements] = STATE(4651), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1834), + [sym__indent] = ACTIONS(1836), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1281)] = { + [sym__simple_statements] = STATE(5165), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1838), + [sym__indent] = ACTIONS(1840), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1282)] = { + [sym__simple_statements] = STATE(4654), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1842), + [sym__indent] = ACTIONS(1844), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1283)] = { + [sym__simple_statements] = STATE(4265), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1846), + [sym__indent] = ACTIONS(1848), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1284)] = { + [sym__simple_statements] = STATE(4658), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1850), + [sym__indent] = ACTIONS(1852), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1285)] = { + [sym__simple_statements] = STATE(4660), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1854), + [sym__indent] = ACTIONS(1856), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1286)] = { + [sym__simple_statements] = STATE(5169), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1858), + [sym__indent] = ACTIONS(1860), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1287)] = { + [sym__simple_statements] = STATE(4664), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1862), + [sym__indent] = ACTIONS(1864), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1288)] = { + [sym__simple_statements] = STATE(5172), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1866), + [sym__indent] = ACTIONS(1868), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1289)] = { + [sym__simple_statements] = STATE(4667), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1870), + [sym__indent] = ACTIONS(1872), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1290)] = { + [sym__simple_statements] = STATE(4670), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1874), + [sym__indent] = ACTIONS(1876), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1291)] = { + [sym__simple_statements] = STATE(4672), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1878), + [sym__indent] = ACTIONS(1880), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1292)] = { + [sym__simple_statements] = STATE(4296), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1882), + [sym__indent] = ACTIONS(1884), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1293)] = { + [sym__simple_statements] = STATE(4119), + [sym_import_statement] = STATE(11990), + [sym_future_import_statement] = STATE(11990), + [sym_import_from_statement] = STATE(11990), + [sym_print_statement] = STATE(11990), + [sym_assert_statement] = STATE(11990), + [sym_comptime_assert_statement] = STATE(11990), + [sym_expression_statement] = STATE(11990), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11990), + [sym_delete_statement] = STATE(11990), + [sym_raise_statement] = STATE(11990), + [sym_pass_statement] = STATE(11990), + [sym_break_statement] = STATE(11990), + [sym_continue_statement] = STATE(11990), + [sym_global_statement] = STATE(11990), + [sym_nonlocal_statement] = STATE(11990), + [sym_exec_statement] = STATE(11990), + [sym_type_alias_statement] = STATE(11990), + [sym_parameterized_alias_statement] = STATE(11990), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1886), + [sym__indent] = ACTIONS(1888), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1294)] = { + [sym__simple_statements] = STATE(5177), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1890), + [sym__indent] = ACTIONS(1892), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1295)] = { + [sym__simple_statements] = STATE(6111), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1894), + [sym__indent] = ACTIONS(1896), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1296)] = { + [sym__simple_statements] = STATE(4694), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1898), + [sym__indent] = ACTIONS(1900), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1297)] = { + [sym__simple_statements] = STATE(5239), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1902), + [sym__indent] = ACTIONS(1904), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1298)] = { + [sym__simple_statements] = STATE(5190), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1906), + [sym__indent] = ACTIONS(1908), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1299)] = { + [sym__simple_statements] = STATE(4702), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1910), + [sym__indent] = ACTIONS(1912), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1300)] = { + [sym__simple_statements] = STATE(4814), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1914), + [sym__indent] = ACTIONS(1916), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1301)] = { + [sym__simple_statements] = STATE(4704), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1918), + [sym__indent] = ACTIONS(1920), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1302)] = { + [sym__simple_statements] = STATE(5192), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1922), + [sym__indent] = ACTIONS(1924), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1303)] = { + [sym__simple_statements] = STATE(4709), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1926), + [sym__indent] = ACTIONS(1928), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1304)] = { + [sym__simple_statements] = STATE(4711), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1930), + [sym__indent] = ACTIONS(1932), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1305)] = { + [sym__simple_statements] = STATE(6144), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1934), + [sym__indent] = ACTIONS(1936), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1306)] = { + [sym__simple_statements] = STATE(5197), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1938), + [sym__indent] = ACTIONS(1940), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1307)] = { + [sym__simple_statements] = STATE(4718), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1942), + [sym__indent] = ACTIONS(1944), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1308)] = { + [sym__simple_statements] = STATE(4721), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1946), + [sym__indent] = ACTIONS(1948), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1309)] = { + [sym__simple_statements] = STATE(4724), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1950), + [sym__indent] = ACTIONS(1952), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1310)] = { + [sym__simple_statements] = STATE(4726), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1954), + [sym__indent] = ACTIONS(1956), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1311)] = { + [sym__simple_statements] = STATE(4071), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1958), + [sym__indent] = ACTIONS(1960), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1312)] = { + [sym__simple_statements] = STATE(4732), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1962), + [sym__indent] = ACTIONS(1964), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1313)] = { + [sym__simple_statements] = STATE(5202), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1966), + [sym__indent] = ACTIONS(1968), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1314)] = { + [sym__simple_statements] = STATE(4734), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1970), + [sym__indent] = ACTIONS(1972), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1315)] = { + [sym__simple_statements] = STATE(4829), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1974), + [sym__indent] = ACTIONS(1976), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1316)] = { + [sym__simple_statements] = STATE(5208), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1978), + [sym__indent] = ACTIONS(1980), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1317)] = { + [sym__simple_statements] = STATE(4741), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1982), + [sym__indent] = ACTIONS(1984), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1318)] = { + [sym__simple_statements] = STATE(5214), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1986), + [sym__indent] = ACTIONS(1988), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1319)] = { + [sym__simple_statements] = STATE(5219), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1990), + [sym__indent] = ACTIONS(1992), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1320)] = { + [sym__simple_statements] = STATE(5222), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1994), + [sym__indent] = ACTIONS(1996), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1321)] = { + [sym__simple_statements] = STATE(4757), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1998), + [sym__indent] = ACTIONS(2000), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1322)] = { + [sym__simple_statements] = STATE(6209), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2002), + [sym__indent] = ACTIONS(2004), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1323)] = { + [sym__simple_statements] = STATE(4840), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2006), + [sym__indent] = ACTIONS(2008), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1324)] = { + [sym__simple_statements] = STATE(4764), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2010), + [sym__indent] = ACTIONS(2012), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1325)] = { + [sym__simple_statements] = STATE(6214), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2014), + [sym__indent] = ACTIONS(2016), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1326)] = { + [sym__simple_statements] = STATE(6235), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2018), + [sym__indent] = ACTIONS(2020), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1327)] = { + [sym__simple_statements] = STATE(4775), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2022), + [sym__indent] = ACTIONS(2024), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1328)] = { + [sym__simple_statements] = STATE(5231), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2026), + [sym__indent] = ACTIONS(2028), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1329)] = { + [sym__simple_statements] = STATE(4781), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2030), + [sym__indent] = ACTIONS(2032), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1330)] = { + [sym__simple_statements] = STATE(4784), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2034), + [sym__indent] = ACTIONS(2036), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1331)] = { + [sym__simple_statements] = STATE(4786), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2038), + [sym__indent] = ACTIONS(2040), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1332)] = { + [sym__simple_statements] = STATE(4803), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2042), + [sym__indent] = ACTIONS(2044), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1333)] = { + [sym__simple_statements] = STATE(4809), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2046), + [sym__indent] = ACTIONS(2048), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1334)] = { + [sym__simple_statements] = STATE(6263), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2050), + [sym__indent] = ACTIONS(2052), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1335)] = { + [sym__simple_statements] = STATE(5235), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2054), + [sym__indent] = ACTIONS(2056), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1336)] = { + [sym__simple_statements] = STATE(4844), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2058), + [sym__indent] = ACTIONS(2060), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1337)] = { + [sym__simple_statements] = STATE(4824), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2062), + [sym__indent] = ACTIONS(2064), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1338)] = { + [sym__simple_statements] = STATE(5310), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2066), + [sym__indent] = ACTIONS(2068), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1339)] = { + [sym__simple_statements] = STATE(6322), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2070), + [sym__indent] = ACTIONS(2072), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1340)] = { + [sym__simple_statements] = STATE(5247), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2074), + [sym__indent] = ACTIONS(2076), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1341)] = { + [sym__simple_statements] = STATE(6357), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2078), + [sym__indent] = ACTIONS(2080), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1342)] = { + [sym__simple_statements] = STATE(4842), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2082), + [sym__indent] = ACTIONS(2084), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1343)] = { + [sym__simple_statements] = STATE(6398), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2086), + [sym__indent] = ACTIONS(2088), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1344)] = { + [sym__simple_statements] = STATE(4852), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2090), + [sym__indent] = ACTIONS(2092), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1345)] = { + [sym__simple_statements] = STATE(5263), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2094), + [sym__indent] = ACTIONS(2096), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1346)] = { + [sym__simple_statements] = STATE(6451), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2098), + [sym__indent] = ACTIONS(2100), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1347)] = { + [sym__simple_statements] = STATE(4863), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2102), + [sym__indent] = ACTIONS(2104), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1348)] = { + [sym__simple_statements] = STATE(4855), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2106), + [sym__indent] = ACTIONS(2108), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1349)] = { + [sym__simple_statements] = STATE(4869), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2110), + [sym__indent] = ACTIONS(2112), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1350)] = { + [sym__simple_statements] = STATE(5268), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2114), + [sym__indent] = ACTIONS(2116), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1351)] = { + [sym__simple_statements] = STATE(4884), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2118), + [sym__indent] = ACTIONS(2120), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1352)] = { + [sym__simple_statements] = STATE(4890), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2122), + [sym__indent] = ACTIONS(2124), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1353)] = { + [sym__simple_statements] = STATE(6572), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2126), + [sym__indent] = ACTIONS(2128), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1354)] = { + [sym__simple_statements] = STATE(4900), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2130), + [sym__indent] = ACTIONS(2132), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1355)] = { + [sym__simple_statements] = STATE(4906), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2134), + [sym__indent] = ACTIONS(2136), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1356)] = { + [sym__simple_statements] = STATE(4907), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2138), + [sym__indent] = ACTIONS(2140), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1357)] = { + [sym__simple_statements] = STATE(4910), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2142), + [sym__indent] = ACTIONS(2144), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1358)] = { + [sym__simple_statements] = STATE(5278), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2146), + [sym__indent] = ACTIONS(2148), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1359)] = { + [sym__simple_statements] = STATE(4862), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2150), + [sym__indent] = ACTIONS(2152), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1360)] = { + [sym__simple_statements] = STATE(4921), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2154), + [sym__indent] = ACTIONS(2156), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1361)] = { + [sym__simple_statements] = STATE(5280), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2158), + [sym__indent] = ACTIONS(2160), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1362)] = { + [sym__simple_statements] = STATE(4929), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2162), + [sym__indent] = ACTIONS(2164), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1363)] = { + [sym__simple_statements] = STATE(6596), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2166), + [sym__indent] = ACTIONS(2168), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1364)] = { + [sym__simple_statements] = STATE(5286), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2170), + [sym__indent] = ACTIONS(2172), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1365)] = { + [sym__simple_statements] = STATE(4949), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2174), + [sym__indent] = ACTIONS(2176), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1366)] = { + [sym__simple_statements] = STATE(5291), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2178), + [sym__indent] = ACTIONS(2180), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1367)] = { + [sym__simple_statements] = STATE(4960), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2182), + [sym__indent] = ACTIONS(2184), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1368)] = { + [sym__simple_statements] = STATE(5295), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2186), + [sym__indent] = ACTIONS(2188), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1369)] = { + [sym__simple_statements] = STATE(6632), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2190), + [sym__indent] = ACTIONS(2192), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1370)] = { + [sym__simple_statements] = STATE(4976), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2194), + [sym__indent] = ACTIONS(2196), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1371)] = { + [sym__simple_statements] = STATE(5307), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2198), + [sym__indent] = ACTIONS(2200), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1372)] = { + [sym__simple_statements] = STATE(5309), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2202), + [sym__indent] = ACTIONS(2204), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1373)] = { + [sym__simple_statements] = STATE(4994), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2206), + [sym__indent] = ACTIONS(2208), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1374)] = { + [sym__simple_statements] = STATE(5314), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2210), + [sym__indent] = ACTIONS(2212), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1375)] = { + [sym__simple_statements] = STATE(5319), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2214), + [sym__indent] = ACTIONS(2216), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1376)] = { + [sym__simple_statements] = STATE(5594), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2218), + [sym__indent] = ACTIONS(2220), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1377)] = { + [sym__simple_statements] = STATE(5031), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2222), + [sym__indent] = ACTIONS(2224), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1378)] = { + [sym__simple_statements] = STATE(5324), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2226), + [sym__indent] = ACTIONS(2228), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1379)] = { + [sym__simple_statements] = STATE(5178), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2230), + [sym__indent] = ACTIONS(2232), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1380)] = { + [sym__simple_statements] = STATE(5183), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2234), + [sym__indent] = ACTIONS(2236), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1381)] = { + [sym__simple_statements] = STATE(5185), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2238), + [sym__indent] = ACTIONS(2240), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1382)] = { + [sym__simple_statements] = STATE(5187), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2242), + [sym__indent] = ACTIONS(2244), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1383)] = { + [sym__simple_statements] = STATE(5328), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2246), + [sym__indent] = ACTIONS(2248), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1384)] = { + [sym__simple_statements] = STATE(5196), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2250), + [sym__indent] = ACTIONS(2252), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1385)] = { + [sym__simple_statements] = STATE(5201), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2254), + [sym__indent] = ACTIONS(2256), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1386)] = { + [sym__simple_statements] = STATE(5333), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2258), + [sym__indent] = ACTIONS(2260), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1387)] = { + [sym__simple_statements] = STATE(5338), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2262), + [sym__indent] = ACTIONS(2264), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1388)] = { + [sym__simple_statements] = STATE(5215), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2266), + [sym__indent] = ACTIONS(2268), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1389)] = { + [sym__simple_statements] = STATE(4607), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2270), + [sym__indent] = ACTIONS(2272), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1390)] = { + [sym__simple_statements] = STATE(5233), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2274), + [sym__indent] = ACTIONS(2276), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1391)] = { + [sym__simple_statements] = STATE(5255), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2278), + [sym__indent] = ACTIONS(2280), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1392)] = { + [sym__simple_statements] = STATE(5350), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2282), + [sym__indent] = ACTIONS(2284), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1393)] = { + [sym__simple_statements] = STATE(4554), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2286), + [sym__indent] = ACTIONS(2288), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1394)] = { + [sym__simple_statements] = STATE(5315), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2290), + [sym__indent] = ACTIONS(2292), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1395)] = { + [sym__simple_statements] = STATE(5354), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2294), + [sym__indent] = ACTIONS(2296), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1396)] = { + [sym__simple_statements] = STATE(4287), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2298), + [sym__indent] = ACTIONS(2300), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1397)] = { + [sym__simple_statements] = STATE(5358), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2302), + [sym__indent] = ACTIONS(2304), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1398)] = { + [sym__simple_statements] = STATE(12325), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2306), + [sym__indent] = ACTIONS(2308), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1399)] = { + [sym__simple_statements] = STATE(5355), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2310), + [sym__indent] = ACTIONS(2312), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1400)] = { + [sym__simple_statements] = STATE(5367), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2314), + [sym__indent] = ACTIONS(2316), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1401)] = { + [sym__simple_statements] = STATE(4680), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2318), + [sym__indent] = ACTIONS(2320), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1402)] = { + [sym__simple_statements] = STATE(5373), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2322), + [sym__indent] = ACTIONS(2324), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1403)] = { + [sym__simple_statements] = STATE(4288), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2326), + [sym__indent] = ACTIONS(2328), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1404)] = { + [sym__simple_statements] = STATE(5387), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2330), + [sym__indent] = ACTIONS(2332), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1405)] = { + [sym__simple_statements] = STATE(5390), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2334), + [sym__indent] = ACTIONS(2336), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1406)] = { + [sym__simple_statements] = STATE(5397), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2338), + [sym__indent] = ACTIONS(2340), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1407)] = { + [sym__simple_statements] = STATE(5403), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2342), + [sym__indent] = ACTIONS(2344), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1408)] = { + [sym__simple_statements] = STATE(5411), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2346), + [sym__indent] = ACTIONS(2348), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1409)] = { + [sym__simple_statements] = STATE(5377), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2350), + [sym__indent] = ACTIONS(2352), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1410)] = { + [sym__simple_statements] = STATE(5421), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2354), + [sym__indent] = ACTIONS(2356), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1411)] = { + [sym__simple_statements] = STATE(5431), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2358), + [sym__indent] = ACTIONS(2360), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1412)] = { + [sym__simple_statements] = STATE(5435), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2362), + [sym__indent] = ACTIONS(2364), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1413)] = { + [sym__simple_statements] = STATE(5469), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2366), + [sym__indent] = ACTIONS(2368), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1414)] = { + [sym__simple_statements] = STATE(5383), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2370), + [sym__indent] = ACTIONS(2372), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1415)] = { + [sym__simple_statements] = STATE(5483), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2374), + [sym__indent] = ACTIONS(2376), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1416)] = { + [sym__simple_statements] = STATE(5504), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2378), + [sym__indent] = ACTIONS(2380), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1417)] = { + [sym__simple_statements] = STATE(5396), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2382), + [sym__indent] = ACTIONS(2384), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1418)] = { + [sym__simple_statements] = STATE(5559), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2386), + [sym__indent] = ACTIONS(2388), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1419)] = { + [sym__simple_statements] = STATE(5570), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2390), + [sym__indent] = ACTIONS(2392), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1420)] = { + [sym__simple_statements] = STATE(5574), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2394), + [sym__indent] = ACTIONS(2396), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1421)] = { + [sym__simple_statements] = STATE(5414), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2398), + [sym__indent] = ACTIONS(2400), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1422)] = { + [sym__simple_statements] = STATE(5581), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2402), + [sym__indent] = ACTIONS(2404), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1423)] = { + [sym__simple_statements] = STATE(5417), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2406), + [sym__indent] = ACTIONS(2408), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1424)] = { + [sym__simple_statements] = STATE(5588), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2410), + [sym__indent] = ACTIONS(2412), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1425)] = { + [sym__simple_statements] = STATE(5609), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2414), + [sym__indent] = ACTIONS(2416), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1426)] = { + [sym__simple_statements] = STATE(5428), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2418), + [sym__indent] = ACTIONS(2420), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1427)] = { + [sym__simple_statements] = STATE(5612), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2422), + [sym__indent] = ACTIONS(2424), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1428)] = { + [sym__simple_statements] = STATE(5614), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2426), + [sym__indent] = ACTIONS(2428), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1429)] = { + [sym__simple_statements] = STATE(5616), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2430), + [sym__indent] = ACTIONS(2432), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1430)] = { + [sym__simple_statements] = STATE(5618), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2434), + [sym__indent] = ACTIONS(2436), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1431)] = { + [sym__simple_statements] = STATE(5620), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2438), + [sym__indent] = ACTIONS(2440), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1432)] = { + [sym__simple_statements] = STATE(5622), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2442), + [sym__indent] = ACTIONS(2444), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1433)] = { + [sym__simple_statements] = STATE(5625), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2446), + [sym__indent] = ACTIONS(2448), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1434)] = { + [sym__simple_statements] = STATE(5627), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2450), + [sym__indent] = ACTIONS(2452), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1435)] = { + [sym__simple_statements] = STATE(12382), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2454), + [sym__indent] = ACTIONS(2456), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1436)] = { + [sym__simple_statements] = STATE(4974), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2458), + [sym__indent] = ACTIONS(2460), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1437)] = { + [sym__simple_statements] = STATE(5632), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2462), + [sym__indent] = ACTIONS(2464), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1438)] = { + [sym__simple_statements] = STATE(5446), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2466), + [sym__indent] = ACTIONS(2468), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1439)] = { + [sym__simple_statements] = STATE(5171), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2470), + [sym__indent] = ACTIONS(2472), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1440)] = { + [sym__simple_statements] = STATE(5635), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2474), + [sym__indent] = ACTIONS(2476), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1441)] = { + [sym__simple_statements] = STATE(5641), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2478), + [sym__indent] = ACTIONS(2480), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1442)] = { + [sym__simple_statements] = STATE(5604), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2482), + [sym__indent] = ACTIONS(2484), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1443)] = { + [sym__simple_statements] = STATE(5451), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2486), + [sym__indent] = ACTIONS(2488), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1444)] = { + [sym__simple_statements] = STATE(5652), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2490), + [sym__indent] = ACTIONS(2492), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1445)] = { + [sym__simple_statements] = STATE(4448), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2494), + [sym__indent] = ACTIONS(2496), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1446)] = { + [sym__simple_statements] = STATE(5656), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2498), + [sym__indent] = ACTIONS(2500), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1447)] = { + [sym__simple_statements] = STATE(5463), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2502), + [sym__indent] = ACTIONS(2504), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1448)] = { + [sym__simple_statements] = STATE(5662), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2506), + [sym__indent] = ACTIONS(2508), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1449)] = { + [sym__simple_statements] = STATE(4465), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2510), + [sym__indent] = ACTIONS(2512), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1450)] = { + [sym__simple_statements] = STATE(5465), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2514), + [sym__indent] = ACTIONS(2516), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1451)] = { + [sym__simple_statements] = STATE(5668), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2518), + [sym__indent] = ACTIONS(2520), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1452)] = { + [sym__simple_statements] = STATE(5470), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2522), + [sym__indent] = ACTIONS(2524), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1453)] = { + [sym__simple_statements] = STATE(5475), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2526), + [sym__indent] = ACTIONS(2528), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1454)] = { + [sym__simple_statements] = STATE(5677), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2530), + [sym__indent] = ACTIONS(2532), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1455)] = { + [sym__simple_statements] = STATE(4985), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [sym__indent] = ACTIONS(2536), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1456)] = { + [sym__simple_statements] = STATE(4476), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2538), + [sym__indent] = ACTIONS(2540), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1457)] = { + [sym__simple_statements] = STATE(5479), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2542), + [sym__indent] = ACTIONS(2544), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1458)] = { + [sym__simple_statements] = STATE(5685), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2546), + [sym__indent] = ACTIONS(2548), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1459)] = { + [sym__simple_statements] = STATE(5484), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2550), + [sym__indent] = ACTIONS(2552), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1460)] = { + [sym__simple_statements] = STATE(4482), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2554), + [sym__indent] = ACTIONS(2556), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1461)] = { + [sym__simple_statements] = STATE(5692), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2558), + [sym__indent] = ACTIONS(2560), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1462)] = { + [sym__simple_statements] = STATE(4993), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2562), + [sym__indent] = ACTIONS(2564), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1463)] = { + [sym__simple_statements] = STATE(5696), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2566), + [sym__indent] = ACTIONS(2568), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1464)] = { + [sym__simple_statements] = STATE(5700), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2570), + [sym__indent] = ACTIONS(2572), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1465)] = { + [sym__simple_statements] = STATE(5702), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2574), + [sym__indent] = ACTIONS(2576), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1466)] = { + [sym__simple_statements] = STATE(5493), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2578), + [sym__indent] = ACTIONS(2580), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1467)] = { + [sym__simple_statements] = STATE(5003), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2582), + [sym__indent] = ACTIONS(2584), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1468)] = { + [sym__simple_statements] = STATE(5707), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2586), + [sym__indent] = ACTIONS(2588), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1469)] = { + [sym__simple_statements] = STATE(4499), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2590), + [sym__indent] = ACTIONS(2592), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1470)] = { + [sym__simple_statements] = STATE(5714), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2594), + [sym__indent] = ACTIONS(2596), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1471)] = { + [sym__simple_statements] = STATE(5722), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2598), + [sym__indent] = ACTIONS(2600), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1472)] = { + [sym__simple_statements] = STATE(5726), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2602), + [sym__indent] = ACTIONS(2604), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1473)] = { + [sym__simple_statements] = STATE(5503), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2606), + [sym__indent] = ACTIONS(2608), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1474)] = { + [sym__simple_statements] = STATE(5731), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2610), + [sym__indent] = ACTIONS(2612), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1475)] = { + [sym__simple_statements] = STATE(5517), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2614), + [sym__indent] = ACTIONS(2616), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1476)] = { + [sym__simple_statements] = STATE(5734), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2618), + [sym__indent] = ACTIONS(2620), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1477)] = { + [sym__simple_statements] = STATE(5736), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2622), + [sym__indent] = ACTIONS(2624), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1478)] = { + [sym__simple_statements] = STATE(5739), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2626), + [sym__indent] = ACTIONS(2628), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1479)] = { + [sym__simple_statements] = STATE(5032), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2630), + [sym__indent] = ACTIONS(2632), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1480)] = { + [sym__simple_statements] = STATE(5741), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2634), + [sym__indent] = ACTIONS(2636), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1481)] = { + [sym__simple_statements] = STATE(5743), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2638), + [sym__indent] = ACTIONS(2640), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1482)] = { + [sym__simple_statements] = STATE(4513), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2642), + [sym__indent] = ACTIONS(2644), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1483)] = { + [sym__simple_statements] = STATE(5510), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2646), + [sym__indent] = ACTIONS(2648), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1484)] = { + [sym__simple_statements] = STATE(5041), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2650), + [sym__indent] = ACTIONS(2652), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1485)] = { + [sym__simple_statements] = STATE(5753), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2654), + [sym__indent] = ACTIONS(2656), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1486)] = { + [sym__simple_statements] = STATE(4518), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2658), + [sym__indent] = ACTIONS(2660), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1487)] = { + [sym__simple_statements] = STATE(5522), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2662), + [sym__indent] = ACTIONS(2664), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1488)] = { + [sym__simple_statements] = STATE(5759), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2666), + [sym__indent] = ACTIONS(2668), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1489)] = { + [sym__simple_statements] = STATE(5603), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + [sym__indent] = ACTIONS(2672), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1490)] = { + [sym__simple_statements] = STATE(9758), + [sym_import_statement] = STATE(12126), + [sym_future_import_statement] = STATE(12126), + [sym_import_from_statement] = STATE(12126), + [sym_print_statement] = STATE(12126), + [sym_assert_statement] = STATE(12126), + [sym_comptime_assert_statement] = STATE(12126), + [sym_expression_statement] = STATE(12126), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12126), + [sym_delete_statement] = STATE(12126), + [sym_raise_statement] = STATE(12126), + [sym_pass_statement] = STATE(12126), + [sym_break_statement] = STATE(12126), + [sym_continue_statement] = STATE(12126), + [sym_global_statement] = STATE(12126), + [sym_nonlocal_statement] = STATE(12126), + [sym_exec_statement] = STATE(12126), + [sym_type_alias_statement] = STATE(12126), + [sym_parameterized_alias_statement] = STATE(12126), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2674), + [sym__indent] = ACTIONS(2676), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1491)] = { + [sym__simple_statements] = STATE(5762), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2678), + [sym__indent] = ACTIONS(2680), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1492)] = { + [sym__simple_statements] = STATE(5767), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2682), + [sym__indent] = ACTIONS(2684), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1493)] = { + [sym__simple_statements] = STATE(4550), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2686), + [sym__indent] = ACTIONS(2688), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1494)] = { + [sym__simple_statements] = STATE(5540), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + [sym__indent] = ACTIONS(2692), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1495)] = { + [sym__simple_statements] = STATE(5775), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + [sym__indent] = ACTIONS(2696), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1496)] = { + [sym__simple_statements] = STATE(5068), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2698), + [sym__indent] = ACTIONS(2700), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1497)] = { + [sym__simple_statements] = STATE(5543), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + [sym__indent] = ACTIONS(2704), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1498)] = { + [sym__simple_statements] = STATE(5783), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + [sym__indent] = ACTIONS(2708), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1499)] = { + [sym__simple_statements] = STATE(5928), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + [sym__indent] = ACTIONS(2712), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1500)] = { + [sym__simple_statements] = STATE(5789), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + [sym__indent] = ACTIONS(2716), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1501)] = { + [sym__simple_statements] = STATE(4595), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2718), + [sym__indent] = ACTIONS(2720), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1502)] = { + [sym__simple_statements] = STATE(5792), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2722), + [sym__indent] = ACTIONS(2724), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1503)] = { + [sym__simple_statements] = STATE(5556), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2726), + [sym__indent] = ACTIONS(2728), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1504)] = { + [sym__simple_statements] = STATE(5795), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2730), + [sym__indent] = ACTIONS(2732), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1505)] = { + [sym__simple_statements] = STATE(5797), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2734), + [sym__indent] = ACTIONS(2736), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1506)] = { + [sym__simple_statements] = STATE(5085), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2738), + [sym__indent] = ACTIONS(2740), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1507)] = { + [sym__simple_statements] = STATE(5806), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2742), + [sym__indent] = ACTIONS(2744), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1508)] = { + [sym__simple_statements] = STATE(5088), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2746), + [sym__indent] = ACTIONS(2748), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1509)] = { + [sym__simple_statements] = STATE(5809), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2750), + [sym__indent] = ACTIONS(2752), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1510)] = { + [sym__simple_statements] = STATE(5811), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2754), + [sym__indent] = ACTIONS(2756), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1511)] = { + [sym__simple_statements] = STATE(5814), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2758), + [sym__indent] = ACTIONS(2760), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1512)] = { + [sym__simple_statements] = STATE(4604), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2762), + [sym__indent] = ACTIONS(2764), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1513)] = { + [sym__simple_statements] = STATE(5817), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2766), + [sym__indent] = ACTIONS(2768), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1514)] = { + [sym__simple_statements] = STATE(5575), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2770), + [sym__indent] = ACTIONS(2772), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1515)] = { + [sym__simple_statements] = STATE(5820), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2774), + [sym__indent] = ACTIONS(2776), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1516)] = { + [sym__simple_statements] = STATE(5822), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2778), + [sym__indent] = ACTIONS(2780), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1517)] = { + [sym__simple_statements] = STATE(5824), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2782), + [sym__indent] = ACTIONS(2784), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1518)] = { + [sym__simple_statements] = STATE(4611), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2786), + [sym__indent] = ACTIONS(2788), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1519)] = { + [sym__simple_statements] = STATE(5826), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2790), + [sym__indent] = ACTIONS(2792), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1520)] = { + [sym__simple_statements] = STATE(5828), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2794), + [sym__indent] = ACTIONS(2796), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1521)] = { + [sym__simple_statements] = STATE(4617), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2798), + [sym__indent] = ACTIONS(2800), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1522)] = { + [sym__simple_statements] = STATE(5608), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2802), + [sym__indent] = ACTIONS(2804), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1523)] = { + [sym__simple_statements] = STATE(5834), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2806), + [sym__indent] = ACTIONS(2808), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1524)] = { + [sym__simple_statements] = STATE(4620), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2810), + [sym__indent] = ACTIONS(2812), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1525)] = { + [sym__simple_statements] = STATE(5644), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2814), + [sym__indent] = ACTIONS(2816), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1526)] = { + [sym__simple_statements] = STATE(5095), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2818), + [sym__indent] = ACTIONS(2820), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1527)] = { + [sym__simple_statements] = STATE(5841), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2822), + [sym__indent] = ACTIONS(2824), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1528)] = { + [sym__simple_statements] = STATE(5646), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2826), + [sym__indent] = ACTIONS(2828), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1529)] = { + [sym__simple_statements] = STATE(4629), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2830), + [sym__indent] = ACTIONS(2832), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1530)] = { + [sym__simple_statements] = STATE(5844), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2834), + [sym__indent] = ACTIONS(2836), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1531)] = { + [sym__simple_statements] = STATE(5653), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2838), + [sym__indent] = ACTIONS(2840), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1532)] = { + [sym__simple_statements] = STATE(5847), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2842), + [sym__indent] = ACTIONS(2844), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1533)] = { + [sym__simple_statements] = STATE(5659), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2846), + [sym__indent] = ACTIONS(2848), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1534)] = { + [sym__simple_statements] = STATE(5853), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2850), + [sym__indent] = ACTIONS(2852), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1535)] = { + [sym__simple_statements] = STATE(4636), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2854), + [sym__indent] = ACTIONS(2856), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1536)] = { + [sym__simple_statements] = STATE(5855), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2858), + [sym__indent] = ACTIONS(2860), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1537)] = { + [sym__simple_statements] = STATE(5684), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2862), + [sym__indent] = ACTIONS(2864), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1538)] = { + [sym__simple_statements] = STATE(4652), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2866), + [sym__indent] = ACTIONS(2868), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1539)] = { + [sym__simple_statements] = STATE(5862), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2870), + [sym__indent] = ACTIONS(2872), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1540)] = { + [sym__simple_statements] = STATE(5695), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2874), + [sym__indent] = ACTIONS(2876), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1541)] = { + [sym__simple_statements] = STATE(4662), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2878), + [sym__indent] = ACTIONS(2880), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1542)] = { + [sym__simple_statements] = STATE(5708), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2882), + [sym__indent] = ACTIONS(2884), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1543)] = { + [sym__simple_statements] = STATE(5872), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2886), + [sym__indent] = ACTIONS(2888), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1544)] = { + [sym__simple_statements] = STATE(4678), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2890), + [sym__indent] = ACTIONS(2892), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1545)] = { + [sym__simple_statements] = STATE(5718), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2894), + [sym__indent] = ACTIONS(2896), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1546)] = { + [sym__simple_statements] = STATE(5876), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2898), + [sym__indent] = ACTIONS(2900), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1547)] = { + [sym__simple_statements] = STATE(5110), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2902), + [sym__indent] = ACTIONS(2904), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1548)] = { + [sym__simple_statements] = STATE(6105), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2906), + [sym__indent] = ACTIONS(2908), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1549)] = { + [sym__simple_statements] = STATE(5721), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2910), + [sym__indent] = ACTIONS(2912), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1550)] = { + [sym__simple_statements] = STATE(5882), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2914), + [sym__indent] = ACTIONS(2916), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1551)] = { + [sym__simple_statements] = STATE(6130), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2918), + [sym__indent] = ACTIONS(2920), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1552)] = { + [sym__simple_statements] = STATE(5884), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2922), + [sym__indent] = ACTIONS(2924), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1553)] = { + [sym__simple_statements] = STATE(5727), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2926), + [sym__indent] = ACTIONS(2928), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1554)] = { + [sym__simple_statements] = STATE(5887), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2930), + [sym__indent] = ACTIONS(2932), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1555)] = { + [sym__simple_statements] = STATE(5889), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2934), + [sym__indent] = ACTIONS(2936), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1556)] = { + [sym__simple_statements] = STATE(4697), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2938), + [sym__indent] = ACTIONS(2940), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1557)] = { + [sym__simple_statements] = STATE(5895), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2942), + [sym__indent] = ACTIONS(2944), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1558)] = { + [sym__simple_statements] = STATE(5128), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2946), + [sym__indent] = ACTIONS(2948), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1559)] = { + [sym__simple_statements] = STATE(5764), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2950), + [sym__indent] = ACTIONS(2952), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1560)] = { + [sym__simple_statements] = STATE(4706), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2954), + [sym__indent] = ACTIONS(2956), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1561)] = { + [sym__simple_statements] = STATE(5901), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + [sym__indent] = ACTIONS(2960), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1562)] = { + [sym__simple_statements] = STATE(5903), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2962), + [sym__indent] = ACTIONS(2964), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1563)] = { + [sym__simple_statements] = STATE(4716), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2966), + [sym__indent] = ACTIONS(2968), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1564)] = { + [sym__simple_statements] = STATE(5906), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2970), + [sym__indent] = ACTIONS(2972), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1565)] = { + [sym__simple_statements] = STATE(5908), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2974), + [sym__indent] = ACTIONS(2976), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1566)] = { + [sym__simple_statements] = STATE(5780), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2978), + [sym__indent] = ACTIONS(2980), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1567)] = { + [sym__simple_statements] = STATE(5138), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2982), + [sym__indent] = ACTIONS(2984), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1568)] = { + [sym__simple_statements] = STATE(5911), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2986), + [sym__indent] = ACTIONS(2988), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1569)] = { + [sym__simple_statements] = STATE(5914), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2990), + [sym__indent] = ACTIONS(2992), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1570)] = { + [sym__simple_statements] = STATE(5917), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2994), + [sym__indent] = ACTIONS(2996), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1571)] = { + [sym__simple_statements] = STATE(5922), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(2998), + [sym__indent] = ACTIONS(3000), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1572)] = { + [sym__simple_statements] = STATE(5145), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3002), + [sym__indent] = ACTIONS(3004), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1573)] = { + [sym__simple_statements] = STATE(4744), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3006), + [sym__indent] = ACTIONS(3008), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1574)] = { + [sym__simple_statements] = STATE(5804), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3010), + [sym__indent] = ACTIONS(3012), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1575)] = { + [sym__simple_statements] = STATE(5891), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3014), + [sym__indent] = ACTIONS(3016), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1576)] = { + [sym__simple_statements] = STATE(5934), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3018), + [sym__indent] = ACTIONS(3020), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1577)] = { + [sym__simple_statements] = STATE(5153), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3022), + [sym__indent] = ACTIONS(3024), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1578)] = { + [sym__simple_statements] = STATE(4751), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3026), + [sym__indent] = ACTIONS(3028), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1579)] = { + [sym__simple_statements] = STATE(5939), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3030), + [sym__indent] = ACTIONS(3032), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1580)] = { + [sym__simple_statements] = STATE(5925), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3034), + [sym__indent] = ACTIONS(3036), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1581)] = { + [sym__simple_statements] = STATE(4759), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3038), + [sym__indent] = ACTIONS(3040), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1582)] = { + [sym__simple_statements] = STATE(5956), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3042), + [sym__indent] = ACTIONS(3044), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1583)] = { + [sym__simple_statements] = STATE(5941), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3046), + [sym__indent] = ACTIONS(3048), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1584)] = { + [sym__simple_statements] = STATE(4771), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3050), + [sym__indent] = ACTIONS(3052), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1585)] = { + [sym__simple_statements] = STATE(5973), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3054), + [sym__indent] = ACTIONS(3056), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1586)] = { + [sym__simple_statements] = STATE(5953), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3058), + [sym__indent] = ACTIONS(3060), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1587)] = { + [sym__simple_statements] = STATE(5979), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + [sym__indent] = ACTIONS(3064), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1588)] = { + [sym__simple_statements] = STATE(4788), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3066), + [sym__indent] = ACTIONS(3068), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1589)] = { + [sym__simple_statements] = STATE(5975), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3070), + [sym__indent] = ACTIONS(3072), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1590)] = { + [sym__simple_statements] = STATE(5991), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3074), + [sym__indent] = ACTIONS(3076), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1591)] = { + [sym__simple_statements] = STATE(5994), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + [sym__indent] = ACTIONS(3080), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1592)] = { + [sym__simple_statements] = STATE(5998), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3082), + [sym__indent] = ACTIONS(3084), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1593)] = { + [sym__simple_statements] = STATE(6001), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3086), + [sym__indent] = ACTIONS(3088), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1594)] = { + [sym__simple_statements] = STATE(6009), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3090), + [sym__indent] = ACTIONS(3092), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1595)] = { + [sym__simple_statements] = STATE(6007), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3094), + [sym__indent] = ACTIONS(3096), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1596)] = { + [sym__simple_statements] = STATE(6019), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3098), + [sym__indent] = ACTIONS(3100), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1597)] = { + [sym__simple_statements] = STATE(6021), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3102), + [sym__indent] = ACTIONS(3104), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1598)] = { + [sym__simple_statements] = STATE(6024), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3106), + [sym__indent] = ACTIONS(3108), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1599)] = { + [sym__simple_statements] = STATE(6026), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3110), + [sym__indent] = ACTIONS(3112), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1600)] = { + [sym__simple_statements] = STATE(6028), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3114), + [sym__indent] = ACTIONS(3116), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1601)] = { + [sym__simple_statements] = STATE(6030), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3118), + [sym__indent] = ACTIONS(3120), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1602)] = { + [sym__simple_statements] = STATE(6036), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3122), + [sym__indent] = ACTIONS(3124), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1603)] = { + [sym__simple_statements] = STATE(6038), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3126), + [sym__indent] = ACTIONS(3128), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1604)] = { + [sym__simple_statements] = STATE(6041), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3130), + [sym__indent] = ACTIONS(3132), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1605)] = { + [sym__simple_statements] = STATE(6034), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3134), + [sym__indent] = ACTIONS(3136), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1606)] = { + [sym__simple_statements] = STATE(6053), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3138), + [sym__indent] = ACTIONS(3140), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1607)] = { + [sym__simple_statements] = STATE(6050), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3142), + [sym__indent] = ACTIONS(3144), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1608)] = { + [sym__simple_statements] = STATE(6065), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3146), + [sym__indent] = ACTIONS(3148), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1609)] = { + [sym__simple_statements] = STATE(6058), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3150), + [sym__indent] = ACTIONS(3152), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1610)] = { + [sym__simple_statements] = STATE(6068), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3154), + [sym__indent] = ACTIONS(3156), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1611)] = { + [sym__simple_statements] = STATE(6070), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3158), + [sym__indent] = ACTIONS(3160), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1612)] = { + [sym__simple_statements] = STATE(6081), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3162), + [sym__indent] = ACTIONS(3164), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1613)] = { + [sym__simple_statements] = STATE(6077), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3166), + [sym__indent] = ACTIONS(3168), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1614)] = { + [sym__simple_statements] = STATE(4807), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3170), + [sym__indent] = ACTIONS(3172), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1615)] = { + [sym__simple_statements] = STATE(6091), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3174), + [sym__indent] = ACTIONS(3176), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1616)] = { + [sym__simple_statements] = STATE(6092), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3178), + [sym__indent] = ACTIONS(3180), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1617)] = { + [sym__simple_statements] = STATE(4812), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3182), + [sym__indent] = ACTIONS(3184), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1618)] = { + [sym__simple_statements] = STATE(6103), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3186), + [sym__indent] = ACTIONS(3188), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1619)] = { + [sym__simple_statements] = STATE(4820), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3190), + [sym__indent] = ACTIONS(3192), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1620)] = { + [sym__simple_statements] = STATE(6112), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3194), + [sym__indent] = ACTIONS(3196), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1621)] = { + [sym__simple_statements] = STATE(6119), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3198), + [sym__indent] = ACTIONS(3200), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1622)] = { + [sym__simple_statements] = STATE(4825), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3202), + [sym__indent] = ACTIONS(3204), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1623)] = { + [sym__simple_statements] = STATE(6128), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3206), + [sym__indent] = ACTIONS(3208), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1624)] = { + [sym__simple_statements] = STATE(4832), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3210), + [sym__indent] = ACTIONS(3212), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1625)] = { + [sym__simple_statements] = STATE(6134), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3214), + [sym__indent] = ACTIONS(3216), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1626)] = { + [sym__simple_statements] = STATE(6140), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3218), + [sym__indent] = ACTIONS(3220), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1627)] = { + [sym__simple_statements] = STATE(6138), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3222), + [sym__indent] = ACTIONS(3224), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1628)] = { + [sym__simple_statements] = STATE(4838), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3226), + [sym__indent] = ACTIONS(3228), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1629)] = { + [sym__simple_statements] = STATE(6158), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3230), + [sym__indent] = ACTIONS(3232), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1630)] = { + [sym__simple_statements] = STATE(6152), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3234), + [sym__indent] = ACTIONS(3236), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1631)] = { + [sym__simple_statements] = STATE(4847), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3238), + [sym__indent] = ACTIONS(3240), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1632)] = { + [sym__simple_statements] = STATE(6190), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3242), + [sym__indent] = ACTIONS(3244), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1633)] = { + [sym__simple_statements] = STATE(4851), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3246), + [sym__indent] = ACTIONS(3248), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1634)] = { + [sym__simple_statements] = STATE(6164), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3250), + [sym__indent] = ACTIONS(3252), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1635)] = { + [sym__simple_statements] = STATE(4859), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3254), + [sym__indent] = ACTIONS(3256), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1636)] = { + [sym__simple_statements] = STATE(6201), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3258), + [sym__indent] = ACTIONS(3260), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1637)] = { + [sym__simple_statements] = STATE(6171), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3262), + [sym__indent] = ACTIONS(3264), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1638)] = { + [sym__simple_statements] = STATE(6178), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3266), + [sym__indent] = ACTIONS(3268), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1639)] = { + [sym__simple_statements] = STATE(6220), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3270), + [sym__indent] = ACTIONS(3272), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1640)] = { + [sym__simple_statements] = STATE(6181), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3274), + [sym__indent] = ACTIONS(3276), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1641)] = { + [sym__simple_statements] = STATE(4870), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3278), + [sym__indent] = ACTIONS(3280), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1642)] = { + [sym__simple_statements] = STATE(6184), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3282), + [sym__indent] = ACTIONS(3284), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1643)] = { + [sym__simple_statements] = STATE(6187), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3286), + [sym__indent] = ACTIONS(3288), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1644)] = { + [sym__simple_statements] = STATE(12340), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3290), + [sym__indent] = ACTIONS(3292), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1645)] = { + [sym__simple_statements] = STATE(4873), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3294), + [sym__indent] = ACTIONS(3296), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1646)] = { + [sym__simple_statements] = STATE(6196), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3298), + [sym__indent] = ACTIONS(3300), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1647)] = { + [sym__simple_statements] = STATE(12430), + [sym_import_statement] = STATE(12168), + [sym_future_import_statement] = STATE(12168), + [sym_import_from_statement] = STATE(12168), + [sym_print_statement] = STATE(12168), + [sym_assert_statement] = STATE(12168), + [sym_comptime_assert_statement] = STATE(12168), + [sym_expression_statement] = STATE(12168), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12168), + [sym_delete_statement] = STATE(12168), + [sym_raise_statement] = STATE(12168), + [sym_pass_statement] = STATE(12168), + [sym_break_statement] = STATE(12168), + [sym_continue_statement] = STATE(12168), + [sym_global_statement] = STATE(12168), + [sym_nonlocal_statement] = STATE(12168), + [sym_exec_statement] = STATE(12168), + [sym_type_alias_statement] = STATE(12168), + [sym_parameterized_alias_statement] = STATE(12168), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3302), + [sym__indent] = ACTIONS(3304), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1648)] = { + [sym__simple_statements] = STATE(6204), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3306), + [sym__indent] = ACTIONS(3308), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1649)] = { + [sym__simple_statements] = STATE(6249), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3310), + [sym__indent] = ACTIONS(3312), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1650)] = { + [sym__simple_statements] = STATE(4876), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3314), + [sym__indent] = ACTIONS(3316), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1651)] = { + [sym__simple_statements] = STATE(6219), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3318), + [sym__indent] = ACTIONS(3320), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1652)] = { + [sym__simple_statements] = STATE(4885), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3322), + [sym__indent] = ACTIONS(3324), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1653)] = { + [sym__simple_statements] = STATE(6232), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3326), + [sym__indent] = ACTIONS(3328), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1654)] = { + [sym__simple_statements] = STATE(6268), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3330), + [sym__indent] = ACTIONS(3332), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1655)] = { + [sym__simple_statements] = STATE(5260), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3334), + [sym__indent] = ACTIONS(3336), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1656)] = { + [sym__simple_statements] = STATE(6239), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3338), + [sym__indent] = ACTIONS(3340), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1657)] = { + [sym__simple_statements] = STATE(4889), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3342), + [sym__indent] = ACTIONS(3344), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1658)] = { + [sym__simple_statements] = STATE(4610), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3346), + [sym__indent] = ACTIONS(3348), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1659)] = { + [sym__simple_statements] = STATE(6281), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3350), + [sym__indent] = ACTIONS(3352), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1660)] = { + [sym__simple_statements] = STATE(4893), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3354), + [sym__indent] = ACTIONS(3356), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1661)] = { + [sym__simple_statements] = STATE(6254), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3358), + [sym__indent] = ACTIONS(3360), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1662)] = { + [sym__simple_statements] = STATE(6287), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3362), + [sym__indent] = ACTIONS(3364), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1663)] = { + [sym__simple_statements] = STATE(5285), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3366), + [sym__indent] = ACTIONS(3368), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1664)] = { + [sym__simple_statements] = STATE(6303), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3370), + [sym__indent] = ACTIONS(3372), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1665)] = { + [sym__simple_statements] = STATE(4298), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3374), + [sym__indent] = ACTIONS(3376), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1666)] = { + [sym__simple_statements] = STATE(6267), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3378), + [sym__indent] = ACTIONS(3380), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1667)] = { + [sym__simple_statements] = STATE(4901), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3382), + [sym__indent] = ACTIONS(3384), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1668)] = { + [sym__simple_statements] = STATE(6274), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3386), + [sym__indent] = ACTIONS(3388), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1669)] = { + [sym__simple_statements] = STATE(6328), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3390), + [sym__indent] = ACTIONS(3392), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1670)] = { + [sym__simple_statements] = STATE(4115), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3394), + [sym__indent] = ACTIONS(3396), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1671)] = { + [sym__simple_statements] = STATE(5301), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3398), + [sym__indent] = ACTIONS(3400), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1672)] = { + [sym__simple_statements] = STATE(4911), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3402), + [sym__indent] = ACTIONS(3404), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1673)] = { + [sym__simple_statements] = STATE(6285), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3406), + [sym__indent] = ACTIONS(3408), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1674)] = { + [sym__simple_statements] = STATE(6336), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3410), + [sym__indent] = ACTIONS(3412), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1675)] = { + [sym__simple_statements] = STATE(5312), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3414), + [sym__indent] = ACTIONS(3416), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1676)] = { + [sym__simple_statements] = STATE(6341), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3418), + [sym__indent] = ACTIONS(3420), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1677)] = { + [sym__simple_statements] = STATE(5084), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3422), + [sym__indent] = ACTIONS(3424), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1678)] = { + [sym__simple_statements] = STATE(6296), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3426), + [sym__indent] = ACTIONS(3428), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1679)] = { + [sym__simple_statements] = STATE(6349), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3430), + [sym__indent] = ACTIONS(3432), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1680)] = { + [sym__simple_statements] = STATE(4917), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3434), + [sym__indent] = ACTIONS(3436), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1681)] = { + [sym__simple_statements] = STATE(6304), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3438), + [sym__indent] = ACTIONS(3440), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1682)] = { + [sym__simple_statements] = STATE(5322), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3442), + [sym__indent] = ACTIONS(3444), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1683)] = { + [sym__simple_statements] = STATE(6363), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3446), + [sym__indent] = ACTIONS(3448), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1684)] = { + [sym__simple_statements] = STATE(4444), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3450), + [sym__indent] = ACTIONS(3452), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1685)] = { + [sym__simple_statements] = STATE(6311), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3454), + [sym__indent] = ACTIONS(3456), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1686)] = { + [sym__simple_statements] = STATE(5335), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3458), + [sym__indent] = ACTIONS(3460), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1687)] = { + [sym__simple_statements] = STATE(6313), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3462), + [sym__indent] = ACTIONS(3464), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1688)] = { + [sym__simple_statements] = STATE(6367), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3466), + [sym__indent] = ACTIONS(3468), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1689)] = { + [sym__simple_statements] = STATE(6318), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3470), + [sym__indent] = ACTIONS(3472), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1690)] = { + [sym__simple_statements] = STATE(6321), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3474), + [sym__indent] = ACTIONS(3476), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1691)] = { + [sym__simple_statements] = STATE(4930), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3478), + [sym__indent] = ACTIONS(3480), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1692)] = { + [sym__simple_statements] = STATE(6377), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3482), + [sym__indent] = ACTIONS(3484), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1693)] = { + [sym__simple_statements] = STATE(4932), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3486), + [sym__indent] = ACTIONS(3488), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1694)] = { + [sym__simple_statements] = STATE(6335), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3490), + [sym__indent] = ACTIONS(3492), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1695)] = { + [sym__simple_statements] = STATE(5349), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3494), + [sym__indent] = ACTIONS(3496), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1696)] = { + [sym__simple_statements] = STATE(6389), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3498), + [sym__indent] = ACTIONS(3500), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1697)] = { + [sym__simple_statements] = STATE(6343), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3502), + [sym__indent] = ACTIONS(3504), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1698)] = { + [sym__simple_statements] = STATE(4935), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3506), + [sym__indent] = ACTIONS(3508), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1699)] = { + [sym__simple_statements] = STATE(6352), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3510), + [sym__indent] = ACTIONS(3512), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1700)] = { + [sym__simple_statements] = STATE(4940), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3514), + [sym__indent] = ACTIONS(3516), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1701)] = { + [sym__simple_statements] = STATE(6413), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3518), + [sym__indent] = ACTIONS(3520), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1702)] = { + [sym__simple_statements] = STATE(6362), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3522), + [sym__indent] = ACTIONS(3524), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1703)] = { + [sym__simple_statements] = STATE(5366), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3526), + [sym__indent] = ACTIONS(3528), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1704)] = { + [sym__simple_statements] = STATE(6369), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3530), + [sym__indent] = ACTIONS(3532), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1705)] = { + [sym__simple_statements] = STATE(4945), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3534), + [sym__indent] = ACTIONS(3536), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1706)] = { + [sym__simple_statements] = STATE(6373), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3538), + [sym__indent] = ACTIONS(3540), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1707)] = { + [sym__simple_statements] = STATE(4948), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3542), + [sym__indent] = ACTIONS(3544), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1708)] = { + [sym__simple_statements] = STATE(6383), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3546), + [sym__indent] = ACTIONS(3548), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1709)] = { + [sym__simple_statements] = STATE(6452), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3550), + [sym__indent] = ACTIONS(3552), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1710)] = { + [sym__simple_statements] = STATE(4952), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3554), + [sym__indent] = ACTIONS(3556), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1711)] = { + [sym__simple_statements] = STATE(6394), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3558), + [sym__indent] = ACTIONS(3560), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1712)] = { + [sym__simple_statements] = STATE(4957), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3562), + [sym__indent] = ACTIONS(3564), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1713)] = { + [sym__simple_statements] = STATE(6458), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3566), + [sym__indent] = ACTIONS(3568), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1714)] = { + [sym__simple_statements] = STATE(4126), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3570), + [sym__indent] = ACTIONS(3572), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1715)] = { + [sym__simple_statements] = STATE(6402), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3574), + [sym__indent] = ACTIONS(3576), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1716)] = { + [sym__simple_statements] = STATE(5384), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3578), + [sym__indent] = ACTIONS(3580), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1717)] = { + [sym__simple_statements] = STATE(6405), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3582), + [sym__indent] = ACTIONS(3584), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1718)] = { + [sym__simple_statements] = STATE(6461), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3586), + [sym__indent] = ACTIONS(3588), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1719)] = { + [sym__simple_statements] = STATE(4964), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3590), + [sym__indent] = ACTIONS(3592), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1720)] = { + [sym__simple_statements] = STATE(6520), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3594), + [sym__indent] = ACTIONS(3596), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1721)] = { + [sym__simple_statements] = STATE(6415), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3598), + [sym__indent] = ACTIONS(3600), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1722)] = { + [sym__simple_statements] = STATE(4970), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3602), + [sym__indent] = ACTIONS(3604), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1723)] = { + [sym__simple_statements] = STATE(6423), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3606), + [sym__indent] = ACTIONS(3608), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1724)] = { + [sym__simple_statements] = STATE(6532), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3610), + [sym__indent] = ACTIONS(3612), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1725)] = { + [sym__simple_statements] = STATE(4975), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3614), + [sym__indent] = ACTIONS(3616), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1726)] = { + [sym__simple_statements] = STATE(6428), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3618), + [sym__indent] = ACTIONS(3620), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1727)] = { + [sym__simple_statements] = STATE(4980), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3622), + [sym__indent] = ACTIONS(3624), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1728)] = { + [sym__simple_statements] = STATE(6541), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3626), + [sym__indent] = ACTIONS(3628), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1729)] = { + [sym__simple_statements] = STATE(6439), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3630), + [sym__indent] = ACTIONS(3632), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1730)] = { + [sym__simple_statements] = STATE(6549), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3634), + [sym__indent] = ACTIONS(3636), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1731)] = { + [sym__simple_statements] = STATE(4986), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3638), + [sym__indent] = ACTIONS(3640), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1732)] = { + [sym__simple_statements] = STATE(6558), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3642), + [sym__indent] = ACTIONS(3644), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1733)] = { + [sym__simple_statements] = STATE(4991), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3646), + [sym__indent] = ACTIONS(3648), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1734)] = { + [sym__simple_statements] = STATE(6450), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3650), + [sym__indent] = ACTIONS(3652), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1735)] = { + [sym__simple_statements] = STATE(6577), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3654), + [sym__indent] = ACTIONS(3656), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1736)] = { + [sym__simple_statements] = STATE(5409), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3658), + [sym__indent] = ACTIONS(3660), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1737)] = { + [sym__simple_statements] = STATE(6467), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3662), + [sym__indent] = ACTIONS(3664), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1738)] = { + [sym__simple_statements] = STATE(6580), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3666), + [sym__indent] = ACTIONS(3668), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1739)] = { + [sym__simple_statements] = STATE(4459), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3670), + [sym__indent] = ACTIONS(3672), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1740)] = { + [sym__simple_statements] = STATE(6470), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3674), + [sym__indent] = ACTIONS(3676), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1741)] = { + [sym__simple_statements] = STATE(6589), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3678), + [sym__indent] = ACTIONS(3680), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1742)] = { + [sym__simple_statements] = STATE(6473), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3682), + [sym__indent] = ACTIONS(3684), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1743)] = { + [sym__simple_statements] = STATE(5004), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3686), + [sym__indent] = ACTIONS(3688), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1744)] = { + [sym__simple_statements] = STATE(4468), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3690), + [sym__indent] = ACTIONS(3692), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1745)] = { + [sym__simple_statements] = STATE(6479), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3694), + [sym__indent] = ACTIONS(3696), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1746)] = { + [sym__simple_statements] = STATE(6602), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3698), + [sym__indent] = ACTIONS(3700), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1747)] = { + [sym__simple_statements] = STATE(6482), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3702), + [sym__indent] = ACTIONS(3704), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1748)] = { + [sym__simple_statements] = STATE(5443), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3706), + [sym__indent] = ACTIONS(3708), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1749)] = { + [sym__simple_statements] = STATE(6485), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3710), + [sym__indent] = ACTIONS(3712), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1750)] = { + [sym__simple_statements] = STATE(6620), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3714), + [sym__indent] = ACTIONS(3716), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1751)] = { + [sym__simple_statements] = STATE(5011), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3718), + [sym__indent] = ACTIONS(3720), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1752)] = { + [sym__simple_statements] = STATE(6491), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3722), + [sym__indent] = ACTIONS(3724), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1753)] = { + [sym__simple_statements] = STATE(5014), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3726), + [sym__indent] = ACTIONS(3728), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1754)] = { + [sym__simple_statements] = STATE(6497), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3730), + [sym__indent] = ACTIONS(3732), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1755)] = { + [sym__simple_statements] = STATE(5018), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3734), + [sym__indent] = ACTIONS(3736), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1756)] = { + [sym__simple_statements] = STATE(4531), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3738), + [sym__indent] = ACTIONS(3740), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1757)] = { + [sym__simple_statements] = STATE(6651), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3742), + [sym__indent] = ACTIONS(3744), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1758)] = { + [sym__simple_statements] = STATE(6503), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3746), + [sym__indent] = ACTIONS(3748), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1759)] = { + [sym__simple_statements] = STATE(5487), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3750), + [sym__indent] = ACTIONS(3752), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1760)] = { + [sym__simple_statements] = STATE(6507), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3754), + [sym__indent] = ACTIONS(3756), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1761)] = { + [sym__simple_statements] = STATE(5026), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3758), + [sym__indent] = ACTIONS(3760), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1762)] = { + [sym__simple_statements] = STATE(6513), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3762), + [sym__indent] = ACTIONS(3764), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1763)] = { + [sym__simple_statements] = STATE(6679), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3766), + [sym__indent] = ACTIONS(3768), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1764)] = { + [sym__simple_statements] = STATE(6523), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3770), + [sym__indent] = ACTIONS(3772), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1765)] = { + [sym__simple_statements] = STATE(6531), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3774), + [sym__indent] = ACTIONS(3776), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1766)] = { + [sym__simple_statements] = STATE(6685), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3778), + [sym__indent] = ACTIONS(3780), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1767)] = { + [sym__simple_statements] = STATE(6688), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3782), + [sym__indent] = ACTIONS(3784), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1768)] = { + [sym__simple_statements] = STATE(6544), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3786), + [sym__indent] = ACTIONS(3788), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1769)] = { + [sym__simple_statements] = STATE(5037), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3790), + [sym__indent] = ACTIONS(3792), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1770)] = { + [sym__simple_statements] = STATE(6693), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3794), + [sym__indent] = ACTIONS(3796), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1771)] = { + [sym__simple_statements] = STATE(5500), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3798), + [sym__indent] = ACTIONS(3800), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1772)] = { + [sym__simple_statements] = STATE(6561), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3802), + [sym__indent] = ACTIONS(3804), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1773)] = { + [sym__simple_statements] = STATE(6708), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3806), + [sym__indent] = ACTIONS(3808), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1774)] = { + [sym__simple_statements] = STATE(5046), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3810), + [sym__indent] = ACTIONS(3812), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1775)] = { + [sym__simple_statements] = STATE(5048), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3814), + [sym__indent] = ACTIONS(3816), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1776)] = { + [sym__simple_statements] = STATE(5527), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3818), + [sym__indent] = ACTIONS(3820), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1777)] = { + [sym__simple_statements] = STATE(6571), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3822), + [sym__indent] = ACTIONS(3824), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1778)] = { + [sym__simple_statements] = STATE(5050), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3826), + [sym__indent] = ACTIONS(3828), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1779)] = { + [sym__simple_statements] = STATE(4475), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3830), + [sym__indent] = ACTIONS(3832), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1780)] = { + [sym__simple_statements] = STATE(5053), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3834), + [sym__indent] = ACTIONS(3836), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1781)] = { + [sym__simple_statements] = STATE(6587), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3838), + [sym__indent] = ACTIONS(3840), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1782)] = { + [sym__simple_statements] = STATE(4307), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3842), + [sym__indent] = ACTIONS(3844), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1783)] = { + [sym__simple_statements] = STATE(5531), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3846), + [sym__indent] = ACTIONS(3848), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1784)] = { + [sym__simple_statements] = STATE(6594), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3850), + [sym__indent] = ACTIONS(3852), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1785)] = { + [sym__simple_statements] = STATE(5056), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3854), + [sym__indent] = ACTIONS(3856), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1786)] = { + [sym__simple_statements] = STATE(6605), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3858), + [sym__indent] = ACTIONS(3860), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1787)] = { + [sym__simple_statements] = STATE(4798), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3862), + [sym__indent] = ACTIONS(3864), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1788)] = { + [sym__simple_statements] = STATE(4303), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3866), + [sym__indent] = ACTIONS(3868), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1789)] = { + [sym__simple_statements] = STATE(5060), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3870), + [sym__indent] = ACTIONS(3872), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1790)] = { + [sym__simple_statements] = STATE(6614), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3874), + [sym__indent] = ACTIONS(3876), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1791)] = { + [sym__simple_statements] = STATE(5063), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3878), + [sym__indent] = ACTIONS(3880), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1792)] = { + [sym__simple_statements] = STATE(5595), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3882), + [sym__indent] = ACTIONS(3884), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1793)] = { + [sym__simple_statements] = STATE(6623), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3886), + [sym__indent] = ACTIONS(3888), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1794)] = { + [sym__simple_statements] = STATE(5067), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3890), + [sym__indent] = ACTIONS(3892), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1795)] = { + [sym__simple_statements] = STATE(6628), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3894), + [sym__indent] = ACTIONS(3896), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1796)] = { + [sym__simple_statements] = STATE(5599), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3898), + [sym__indent] = ACTIONS(3900), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1797)] = { + [sym__simple_statements] = STATE(6635), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3902), + [sym__indent] = ACTIONS(3904), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1798)] = { + [sym__simple_statements] = STATE(4456), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3906), + [sym__indent] = ACTIONS(3908), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1799)] = { + [sym__simple_statements] = STATE(5547), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3910), + [sym__indent] = ACTIONS(3912), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1800)] = { + [sym__simple_statements] = STATE(6644), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3914), + [sym__indent] = ACTIONS(3916), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1801)] = { + [sym__simple_statements] = STATE(5072), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3918), + [sym__indent] = ACTIONS(3920), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1802)] = { + [sym__simple_statements] = STATE(6648), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3922), + [sym__indent] = ACTIONS(3924), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1803)] = { + [sym__simple_statements] = STATE(4477), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3926), + [sym__indent] = ACTIONS(3928), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1804)] = { + [sym__simple_statements] = STATE(6654), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3930), + [sym__indent] = ACTIONS(3932), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1805)] = { + [sym__simple_statements] = STATE(5557), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3934), + [sym__indent] = ACTIONS(3936), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1806)] = { + [sym__simple_statements] = STATE(5077), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3938), + [sym__indent] = ACTIONS(3940), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1807)] = { + [sym__simple_statements] = STATE(6662), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3942), + [sym__indent] = ACTIONS(3944), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1808)] = { + [sym__simple_statements] = STATE(5080), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3946), + [sym__indent] = ACTIONS(3948), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1809)] = { + [sym__simple_statements] = STATE(5083), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3950), + [sym__indent] = ACTIONS(3952), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1810)] = { + [sym__simple_statements] = STATE(6672), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3954), + [sym__indent] = ACTIONS(3956), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1811)] = { + [sym__simple_statements] = STATE(4523), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3958), + [sym__indent] = ACTIONS(3960), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1812)] = { + [sym__simple_statements] = STATE(5089), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3962), + [sym__indent] = ACTIONS(3964), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1813)] = { + [sym__simple_statements] = STATE(5092), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3966), + [sym__indent] = ACTIONS(3968), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1814)] = { + [sym__simple_statements] = STATE(6700), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3970), + [sym__indent] = ACTIONS(3972), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1815)] = { + [sym__simple_statements] = STATE(4578), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3974), + [sym__indent] = ACTIONS(3976), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1816)] = { + [sym__simple_statements] = STATE(6715), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3978), + [sym__indent] = ACTIONS(3980), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1817)] = { + [sym__simple_statements] = STATE(4312), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3982), + [sym__indent] = ACTIONS(3984), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1818)] = { + [sym__simple_statements] = STATE(5104), + [sym_import_statement] = STATE(12239), + [sym_future_import_statement] = STATE(12239), + [sym_import_from_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_assert_statement] = STATE(12239), + [sym_comptime_assert_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12239), + [sym_delete_statement] = STATE(12239), + [sym_raise_statement] = STATE(12239), + [sym_pass_statement] = STATE(12239), + [sym_break_statement] = STATE(12239), + [sym_continue_statement] = STATE(12239), + [sym_global_statement] = STATE(12239), + [sym_nonlocal_statement] = STATE(12239), + [sym_exec_statement] = STATE(12239), + [sym_type_alias_statement] = STATE(12239), + [sym_parameterized_alias_statement] = STATE(12239), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3986), + [sym__indent] = ACTIONS(3988), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1819)] = { + [sym__simple_statements] = STATE(4315), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3990), + [sym__indent] = ACTIONS(3992), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1820)] = { + [sym__simple_statements] = STATE(4321), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3994), + [sym__indent] = ACTIONS(3996), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1821)] = { + [sym__simple_statements] = STATE(4326), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(3998), + [sym__indent] = ACTIONS(4000), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1822)] = { + [sym__simple_statements] = STATE(4329), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4002), + [sym__indent] = ACTIONS(4004), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1823)] = { + [sym__simple_statements] = STATE(4332), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4006), + [sym__indent] = ACTIONS(4008), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1824)] = { + [sym__simple_statements] = STATE(4338), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4010), + [sym__indent] = ACTIONS(4012), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1825)] = { + [sym__simple_statements] = STATE(4341), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4014), + [sym__indent] = ACTIONS(4016), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1826)] = { + [sym__simple_statements] = STATE(4344), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4018), + [sym__indent] = ACTIONS(4020), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1827)] = { + [sym__simple_statements] = STATE(4350), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4022), + [sym__indent] = ACTIONS(4024), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1828)] = { + [sym__simple_statements] = STATE(4356), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4026), + [sym__indent] = ACTIONS(4028), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1829)] = { + [sym__simple_statements] = STATE(4366), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4030), + [sym__indent] = ACTIONS(4032), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1830)] = { + [sym__simple_statements] = STATE(4373), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4034), + [sym__indent] = ACTIONS(4036), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1831)] = { + [sym__simple_statements] = STATE(4379), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4038), + [sym__indent] = ACTIONS(4040), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1832)] = { + [sym__simple_statements] = STATE(4382), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4042), + [sym__indent] = ACTIONS(4044), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1833)] = { + [sym__simple_statements] = STATE(4385), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4046), + [sym__indent] = ACTIONS(4048), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1834)] = { + [sym__simple_statements] = STATE(4391), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4050), + [sym__indent] = ACTIONS(4052), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1835)] = { + [sym__simple_statements] = STATE(4398), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4054), + [sym__indent] = ACTIONS(4056), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1836)] = { + [sym__simple_statements] = STATE(4405), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4058), + [sym__indent] = ACTIONS(4060), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1837)] = { + [sym__simple_statements] = STATE(4411), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4062), + [sym__indent] = ACTIONS(4064), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1838)] = { + [sym__simple_statements] = STATE(4414), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4066), + [sym__indent] = ACTIONS(4068), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1839)] = { + [sym__simple_statements] = STATE(4417), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4070), + [sym__indent] = ACTIONS(4072), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1840)] = { + [sym__simple_statements] = STATE(4423), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4074), + [sym__indent] = ACTIONS(4076), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1841)] = { + [sym__simple_statements] = STATE(4431), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4078), + [sym__indent] = ACTIONS(4080), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1842)] = { + [sym__simple_statements] = STATE(4440), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4082), + [sym__indent] = ACTIONS(4084), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1843)] = { + [sym__simple_statements] = STATE(9712), + [sym_import_statement] = STATE(12126), + [sym_future_import_statement] = STATE(12126), + [sym_import_from_statement] = STATE(12126), + [sym_print_statement] = STATE(12126), + [sym_assert_statement] = STATE(12126), + [sym_comptime_assert_statement] = STATE(12126), + [sym_expression_statement] = STATE(12126), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12126), + [sym_delete_statement] = STATE(12126), + [sym_raise_statement] = STATE(12126), + [sym_pass_statement] = STATE(12126), + [sym_break_statement] = STATE(12126), + [sym_continue_statement] = STATE(12126), + [sym_global_statement] = STATE(12126), + [sym_nonlocal_statement] = STATE(12126), + [sym_exec_statement] = STATE(12126), + [sym_type_alias_statement] = STATE(12126), + [sym_parameterized_alias_statement] = STATE(12126), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4086), + [sym__indent] = ACTIONS(4088), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1844)] = { + [sym__simple_statements] = STATE(4509), + [sym_import_statement] = STATE(11814), + [sym_future_import_statement] = STATE(11814), + [sym_import_from_statement] = STATE(11814), + [sym_print_statement] = STATE(11814), + [sym_assert_statement] = STATE(11814), + [sym_comptime_assert_statement] = STATE(11814), + [sym_expression_statement] = STATE(11814), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(11814), + [sym_delete_statement] = STATE(11814), + [sym_raise_statement] = STATE(11814), + [sym_pass_statement] = STATE(11814), + [sym_break_statement] = STATE(11814), + [sym_continue_statement] = STATE(11814), + [sym_global_statement] = STATE(11814), + [sym_nonlocal_statement] = STATE(11814), + [sym_exec_statement] = STATE(11814), + [sym_type_alias_statement] = STATE(11814), + [sym_parameterized_alias_statement] = STATE(11814), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4090), + [sym__indent] = ACTIONS(4092), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1845)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9981), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1846)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(10077), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1847)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4099), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1848)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4101), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1849)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4103), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1850)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4105), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1851)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4107), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1852)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4109), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1853)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4111), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1854)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4113), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1855)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4115), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1856)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4117), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1857)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4119), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1858)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4121), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1859)] = { + [sym_import_statement] = STATE(12397), + [sym_future_import_statement] = STATE(12397), + [sym_import_from_statement] = STATE(12397), + [sym_print_statement] = STATE(12397), + [sym_assert_statement] = STATE(12397), + [sym_comptime_assert_statement] = STATE(12397), + [sym_expression_statement] = STATE(12397), + [sym_tuple_expression] = STATE(12425), + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_return_statement] = STATE(12397), + [sym_delete_statement] = STATE(12397), + [sym_raise_statement] = STATE(12397), + [sym_pass_statement] = STATE(12397), + [sym_break_statement] = STATE(12397), + [sym_continue_statement] = STATE(12397), + [sym_global_statement] = STATE(12397), + [sym_nonlocal_statement] = STATE(12397), + [sym_exec_statement] = STATE(12397), + [sym_type_alias_statement] = STATE(12397), + [sym_parameterized_alias_statement] = STATE(12397), + [sym_pattern] = STATE(8086), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9883), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12425), + [sym_augmented_assignment] = STATE(12425), + [sym_pattern_list] = STATE(8578), + [sym_yield] = STATE(12425), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_comptime] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(23), + [anon_sym___comptime_assert] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_del] = ACTIONS(29), + [anon_sym_raise] = ACTIONS(31), + [anon_sym_pass] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_global] = ACTIONS(63), + [anon_sym_nonlocal] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(67), + [anon_sym_type] = ACTIONS(69), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(1860)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(4123), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(4125), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4123), + [anon_sym_DASH_EQ] = ACTIONS(4123), + [anon_sym_STAR_EQ] = ACTIONS(4123), + [anon_sym_SLASH_EQ] = ACTIONS(4123), + [anon_sym_AT_EQ] = ACTIONS(4123), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(4123), + [anon_sym_PERCENT_EQ] = ACTIONS(4123), + [anon_sym_STAR_STAR_EQ] = ACTIONS(4123), + [anon_sym_GT_GT_EQ] = ACTIONS(4123), + [anon_sym_LT_LT_EQ] = ACTIONS(4123), + [anon_sym_AMP_EQ] = ACTIONS(4123), + [anon_sym_CARET_EQ] = ACTIONS(4123), + [anon_sym_PIPE_EQ] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4123), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1861)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7352), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4159), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1862)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7352), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4159), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1863)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(4123), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(4125), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [anon_sym_PLUS_EQ] = ACTIONS(4123), + [anon_sym_DASH_EQ] = ACTIONS(4123), + [anon_sym_STAR_EQ] = ACTIONS(4123), + [anon_sym_SLASH_EQ] = ACTIONS(4123), + [anon_sym_AT_EQ] = ACTIONS(4123), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(4123), + [anon_sym_PERCENT_EQ] = ACTIONS(4123), + [anon_sym_STAR_STAR_EQ] = ACTIONS(4123), + [anon_sym_GT_GT_EQ] = ACTIONS(4123), + [anon_sym_LT_LT_EQ] = ACTIONS(4123), + [anon_sym_AMP_EQ] = ACTIONS(4123), + [anon_sym_CARET_EQ] = ACTIONS(4123), + [anon_sym_PIPE_EQ] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4123), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1864)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(4123), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_from] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4123), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1865)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(6948), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4185), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1866)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1867)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_RPAREN] = ACTIONS(4123), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1868)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1869)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__raises_type] = STATE(8639), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8045), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(11848), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8173), + [sym_union_type] = STATE(8844), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8046), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4191), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1870)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7040), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4216), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1871)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(4123), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4123), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1872)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_RPAREN] = ACTIONS(4123), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1873)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_else] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1874)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(4138), + [anon_sym_capturing] = ACTIONS(4138), + [anon_sym_escaping] = ACTIONS(4138), + [anon_sym_thin] = ACTIONS(4138), + [anon_sym_abi] = ACTIONS(4138), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1875)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__raises_type] = STATE(9015), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8073), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(11924), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8248), + [sym_union_type] = STATE(9099), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8072), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4193), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1876)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__raises_type] = STATE(9031), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8183), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(12029), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8480), + [sym_union_type] = STATE(9449), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8184), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1877)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(6953), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_raises] = ACTIONS(4274), + [anon_sym_capturing] = ACTIONS(4274), + [anon_sym_escaping] = ACTIONS(4274), + [anon_sym_thin] = ACTIONS(4274), + [anon_sym_abi] = ACTIONS(4274), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4185), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1878)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7018), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4278), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1879)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7052), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4288), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1880)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__raises_type] = STATE(9274), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8075), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(12000), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8292), + [sym_union_type] = STATE(9022), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8076), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4191), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1881)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(6948), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4185), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1882)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7025), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_raises] = ACTIONS(4274), + [anon_sym_capturing] = ACTIONS(4274), + [anon_sym_escaping] = ACTIONS(4274), + [anon_sym_thin] = ACTIONS(4274), + [anon_sym_abi] = ACTIONS(4274), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4216), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1883)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7034), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_raises] = ACTIONS(4274), + [anon_sym_capturing] = ACTIONS(4274), + [anon_sym_escaping] = ACTIONS(4274), + [anon_sym_thin] = ACTIONS(4274), + [anon_sym_abi] = ACTIONS(4274), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4278), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4276), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1884)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7018), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4278), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1885)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7053), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_raises] = ACTIONS(4274), + [anon_sym_capturing] = ACTIONS(4274), + [anon_sym_escaping] = ACTIONS(4274), + [anon_sym_thin] = ACTIONS(4274), + [anon_sym_abi] = ACTIONS(4274), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4288), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1886)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7052), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4288), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1887)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7040), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_raises] = ACTIONS(1497), + [anon_sym_capturing] = ACTIONS(1497), + [anon_sym_escaping] = ACTIONS(1497), + [anon_sym_thin] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4216), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1888)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_infer_separator] = STATE(12017), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(8233), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_type] = STATE(9635), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_positional_separator] = STATE(12017), + [sym_keyword_separator] = STATE(12017), + [sym_identifier] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4323), + [anon_sym_mut] = ACTIONS(4325), + [anon_sym_out] = ACTIONS(4325), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(1889)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1890)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1891)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1892)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1893)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1894)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3321), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10142), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1895)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4381), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1896)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1897)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1898)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1899)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1900)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1901)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1902)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1903)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1904)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3188), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10129), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1905)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7352), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_from] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4159), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1906)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3240), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10463), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1907)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1908)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1909)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3528), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10691), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1910)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3530), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10704), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1911)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1912)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1913)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1914)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1915)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1916)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1917)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1918)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3531), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10782), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1919)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3533), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10792), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4427), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1920)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1921)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1922)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1923)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1924)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1925)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1926)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1927)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1928)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3534), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10855), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1929)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3535), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10865), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1930)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1931)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1932)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1933)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1934)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1935)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1936)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1937)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1938)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3536), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10101), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1939)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3537), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10107), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1940)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1941)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1942)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1943)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1944)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1945)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1946)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1947)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1948)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3242), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10515), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1949)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1950)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3538), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10721), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1951)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3539), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10723), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1952)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1953)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1954)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1955)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1956)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4501), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1957)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1958)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1959)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1960)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1961)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3624), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10886), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1962)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3625), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10889), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1963)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1964)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1965)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1966)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1967)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1968)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1969)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1970)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1971)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3626), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10898), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1972)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(3627), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10902), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1973)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1974)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1975)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1976)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1977)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1978)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1979)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1980)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1981)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2839), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10921), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1982)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2877), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10924), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1983)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1984)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1985)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1986)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1987)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1988)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1989)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1990)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__raises_type] = STATE(9274), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8565), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(12000), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8692), + [sym_union_type] = STATE(9567), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8566), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4191), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(1991)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(7882), + [sym_argument_convention] = STATE(2973), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11100), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_out] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4361), + [anon_sym_borrowed] = ACTIONS(4363), + [anon_sym_inout] = ACTIONS(4363), + [anon_sym_owned] = ACTIONS(4363), + [anon_sym_read] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [anon_sym_deinit] = ACTIONS(4363), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(1992)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7340), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_from] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4159), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4276), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1993)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_where] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1994)] = { + [sym_list_splat_pattern] = STATE(7504), + [sym_primary_expression] = STATE(7330), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4575), + [anon_sym_print] = ACTIONS(4577), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4579), + [anon_sym_async] = ACTIONS(4577), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4577), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4577), + [anon_sym_out] = ACTIONS(4577), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4581), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(1995)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__raises_type] = STATE(9015), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8235), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(11924), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8541), + [sym_union_type] = STATE(9489), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8236), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(4193), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1996)] = { + [sym_list_splat_pattern] = STATE(6966), + [sym_primary_expression] = STATE(7352), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_from] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4151), + [anon_sym_out] = ACTIONS(4151), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4159), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(1997)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__raises_type] = STATE(8639), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8325), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(11848), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8536), + [sym_union_type] = STATE(9505), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8326), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_raises] = ACTIONS(4191), + [anon_sym_capturing] = ACTIONS(4191), + [anon_sym_escaping] = ACTIONS(4191), + [anon_sym_thin] = ACTIONS(4191), + [anon_sym_abi] = ACTIONS(4191), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(1998)] = { + [sym_list_splat_pattern] = STATE(7576), + [sym_primary_expression] = STATE(7411), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_print] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4593), + [anon_sym_async] = ACTIONS(4589), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4589), + [anon_sym_type] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_out] = ACTIONS(4589), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(4607), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(1999)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2000)] = { + [sym_list_splat_pattern] = STATE(7504), + [sym_primary_expression] = STATE(7330), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4575), + [anon_sym_print] = ACTIONS(4577), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4579), + [anon_sym_async] = ACTIONS(4577), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4577), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4577), + [anon_sym_out] = ACTIONS(4577), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4581), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(2001)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7371), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(1495), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2002)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(4123), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_and] = ACTIONS(4138), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4138), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_LT_GT] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_type_conversion] = ACTIONS(4123), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2003)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7409), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4637), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2004)] = { + [sym_list_splat_pattern] = STATE(7504), + [sym_primary_expression] = STATE(7337), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4577), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4579), + [anon_sym_async] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4577), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4577), + [anon_sym_out] = ACTIONS(4577), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4581), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(2005)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2006)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7371), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(1495), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2007)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2008)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7375), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4637), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2009)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7418), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2010)] = { + [sym_list_splat_pattern] = STATE(7727), + [sym_primary_expression] = STATE(7466), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_print] = ACTIONS(4645), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4645), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4645), + [anon_sym_type] = ACTIONS(4649), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_mut] = ACTIONS(4645), + [anon_sym_out] = ACTIONS(4645), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(4663), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(2011)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7409), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4125), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4637), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2012)] = { + [sym_list_splat_pattern] = STATE(7576), + [sym_primary_expression] = STATE(7411), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_print] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4593), + [anon_sym_async] = ACTIONS(4589), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4589), + [anon_sym_type] = ACTIONS(4593), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_out] = ACTIONS(4589), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(4607), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(2013)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7409), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4637), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2014)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2015)] = { + [sym_list_splat_pattern] = STATE(7278), + [sym_primary_expression] = STATE(7409), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_print] = ACTIONS(4282), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_async] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_out] = ACTIONS(4282), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4637), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2016)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7424), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(4276), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2017)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7371), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(1495), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2018)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7371), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_STAR_STAR] = ACTIONS(4142), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4125), + [anon_sym_or] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_LT_GT] = ACTIONS(4142), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2019)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2020)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7423), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2021)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4667), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2022)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4671), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2023)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4681), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2024)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4683), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2025)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4685), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2026)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4687), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2027)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2028)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4691), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2029)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4693), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2030)] = { + [sym_list_splat_pattern] = STATE(7696), + [sym_primary_expression] = STATE(7371), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_print] = ACTIONS(4617), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4621), + [anon_sym_async] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_out] = ACTIONS(4617), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(4633), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(2031)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4695), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2032)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4697), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2033)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2034)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4701), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2035)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2036)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4705), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2037)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12017), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9635), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12017), + [sym_keyword_separator] = STATE(12017), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4709), + [anon_sym_out] = ACTIONS(4709), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2038)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2039)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4713), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2040)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2041)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4717), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2042)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2043)] = { + [sym_list_splat_pattern] = STATE(7504), + [sym_primary_expression] = STATE(7330), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4575), + [anon_sym_print] = ACTIONS(4577), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4579), + [anon_sym_async] = ACTIONS(4577), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4577), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_mut] = ACTIONS(4577), + [anon_sym_out] = ACTIONS(4577), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4581), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(2044)] = { + [sym_list_splat_pattern] = STATE(7576), + [sym_primary_expression] = STATE(7411), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_print] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4593), + [anon_sym_async] = ACTIONS(4589), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4589), + [anon_sym_type] = ACTIONS(4593), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_out] = ACTIONS(4589), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(4607), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(2045)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12070), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9637), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12070), + [sym_keyword_separator] = STATE(12070), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4721), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4723), + [anon_sym_out] = ACTIONS(4723), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2046)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2047)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4727), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2048)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(11866), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9634), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(11866), + [sym_keyword_separator] = STATE(11866), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4729), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4731), + [anon_sym_out] = ACTIONS(4731), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2049)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4733), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2050)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1540), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2051)] = { + [sym_list_splat_pattern] = STATE(7727), + [sym_primary_expression] = STATE(7466), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_print] = ACTIONS(4645), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4645), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4645), + [anon_sym_type] = ACTIONS(4649), + [anon_sym_mut] = ACTIONS(4645), + [anon_sym_out] = ACTIONS(4645), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(4663), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(2052)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2053)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2054)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2055)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4741), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2056)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4743), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2057)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4745), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2058)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2059)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4749), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2060)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2061)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2062)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2063)] = { + [sym_list_splat_pattern] = STATE(7727), + [sym_primary_expression] = STATE(7466), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_print] = ACTIONS(4645), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4645), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4645), + [anon_sym_type] = ACTIONS(4649), + [anon_sym_mut] = ACTIONS(4645), + [anon_sym_out] = ACTIONS(4645), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(4663), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(2064)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4757), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2065)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4759), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2066)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4761), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2067)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2068)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2069)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4767), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2070)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4769), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2071)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2072)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4773), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2073)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2074)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4777), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2075)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4779), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2076)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2077)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4783), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2078)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4785), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2079)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4787), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2080)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4789), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2081)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12048), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9638), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12048), + [sym_keyword_separator] = STATE(12048), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4791), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4793), + [anon_sym_out] = ACTIONS(4793), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2082)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4795), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2083)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2084)] = { + [sym_list_splat_pattern] = STATE(7302), + [sym_primary_expression] = STATE(7376), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON_EQ] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4799), + [anon_sym_mut] = ACTIONS(4167), + [anon_sym_out] = ACTIONS(4167), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4571), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2085)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4801), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2086)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4803), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2087)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4805), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2088)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4807), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2089)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2090)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2091)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2092)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2093)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2094)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2095)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4821), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2096)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2097)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4825), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2098)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2099)] = { + [sym_list_splat_pattern] = STATE(7576), + [sym_primary_expression] = STATE(7378), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4593), + [anon_sym_async] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4589), + [anon_sym_type] = ACTIONS(4593), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_out] = ACTIONS(4589), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(4607), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(2100)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2101)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2102)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_infer_separator] = STATE(12302), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9681), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_positional_separator] = STATE(12302), + [sym_keyword_separator] = STATE(12302), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4669), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4673), + [anon_sym_out] = ACTIONS(4673), + [anon_sym_SLASH_SLASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_SLASH] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2103)] = { + [sym_list_splat_pattern] = STATE(7727), + [sym_primary_expression] = STATE(7490), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_print] = ACTIONS(4645), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(4276), + [anon_sym_exec] = ACTIONS(4645), + [anon_sym_type] = ACTIONS(4649), + [anon_sym_mut] = ACTIONS(4645), + [anon_sym_out] = ACTIONS(4645), + [anon_sym_SLASH_SLASH] = ACTIONS(4276), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_and] = ACTIONS(4274), + [anon_sym_or] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_LT_GT] = ACTIONS(4276), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(4663), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(2104)] = { + [sym_list_splat_pattern] = STATE(7727), + [sym_primary_expression] = STATE(7466), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_print] = ACTIONS(4645), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4645), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4645), + [anon_sym_type] = ACTIONS(4649), + [anon_sym_mut] = ACTIONS(4645), + [anon_sym_out] = ACTIONS(4645), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1497), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_is] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_GT] = ACTIONS(1495), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(4663), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(2105)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(4125), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4123), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(4123), + [anon_sym_DASH_EQ] = ACTIONS(4123), + [anon_sym_STAR_EQ] = ACTIONS(4123), + [anon_sym_SLASH_EQ] = ACTIONS(4123), + [anon_sym_AT_EQ] = ACTIONS(4123), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(4123), + [anon_sym_PERCENT_EQ] = ACTIONS(4123), + [anon_sym_STAR_STAR_EQ] = ACTIONS(4123), + [anon_sym_GT_GT_EQ] = ACTIONS(4123), + [anon_sym_LT_LT_EQ] = ACTIONS(4123), + [anon_sym_AMP_EQ] = ACTIONS(4123), + [anon_sym_CARET_EQ] = ACTIONS(4123), + [anon_sym_PIPE_EQ] = ACTIONS(4123), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2106)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_AT_EQ] = ACTIONS(1540), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2107)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3562), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10238), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2108)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3147), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10122), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2109)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3048), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10298), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2110)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3031), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10416), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2111)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3148), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10124), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2112)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3032), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10417), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2113)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3034), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10421), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2114)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3052), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10347), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2115)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3168), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10780), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2116)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3036), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10427), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2117)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3037), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10430), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2118)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3038), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10433), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2119)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3066), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10418), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2120)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3040), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10440), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2121)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2945), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10566), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2122)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3041), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10437), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2123)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3191), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10725), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2124)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3073), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10431), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2125)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3042), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10441), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2126)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2952), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10660), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2127)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3043), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10443), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2128)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3097), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10458), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2129)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3193), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10710), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2130)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2961), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10677), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2131)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3044), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10445), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2132)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3045), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10446), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2133)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3195), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10730), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2134)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3046), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10449), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2135)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3047), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10450), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2136)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3049), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10455), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2137)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3050), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10459), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2138)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3237), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10422), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2139)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3085), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10810), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2140)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3051), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10464), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2141)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3053), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10483), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2142)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12364), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12364), + [sym_augmented_assignment] = STATE(12364), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12364), + [sym_yield] = STATE(12364), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12364), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2143)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3054), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10481), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2144)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3055), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10486), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2145)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3056), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10493), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2146)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3057), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10494), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2147)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3151), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10153), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2148)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3058), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10496), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2149)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3152), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10158), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2150)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3059), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10501), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2151)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3153), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10163), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2152)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3098), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10912), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2153)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3154), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10166), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2154)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3155), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10169), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2155)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3156), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10177), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2156)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3060), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10504), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2157)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3061), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10506), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2158)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3062), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10507), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2159)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3063), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10509), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2160)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3101), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10707), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2161)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3064), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10510), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2162)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3169), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10798), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2163)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3065), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10513), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2164)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3067), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10518), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2165)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3068), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10516), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2166)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3069), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10519), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2167)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3070), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10522), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2168)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2863), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10805), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2169)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3170), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10787), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2170)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12306), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12306), + [sym_augmented_assignment] = STATE(12306), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12306), + [sym_yield] = STATE(12306), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12306), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2171)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3071), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10523), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2172)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3072), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10524), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2173)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3074), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10529), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2174)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3075), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10533), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2175)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3076), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10538), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2176)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3159), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10228), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2177)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3171), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10828), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2178)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3077), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10539), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2179)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2865), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10802), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2180)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3173), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10831), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2181)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2866), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10806), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2182)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3174), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10833), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2183)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2869), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10808), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2184)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3176), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10109), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2185)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3078), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10545), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2186)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3175), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10838), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2187)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2870), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10809), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2188)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3160), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10263), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2189)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3079), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10548), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2190)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3177), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10839), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2191)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3178), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10844), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2192)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3161), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10245), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2193)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2872), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10812), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2194)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3080), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10938), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2195)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2876), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10817), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2196)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2879), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10821), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2197)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3162), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10282), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2198)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3081), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10549), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2199)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3179), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10850), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2200)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3082), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10551), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2201)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3204), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10731), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2202)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3103), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10583), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2203)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2881), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10887), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2204)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2882), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10890), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2205)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3104), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10588), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2206)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3105), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10595), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2207)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3083), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10555), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2208)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3163), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10310), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2209)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3106), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10602), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2210)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2885), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10894), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2211)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3164), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10290), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2212)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3107), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10610), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2213)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3084), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10558), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2214)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3108), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10614), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2215)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3165), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10348), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2216)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3205), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10811), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2217)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2886), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10910), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2218)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3166), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10351), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2219)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3109), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10611), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2220)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2890), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10934), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2221)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3167), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10420), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2222)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3206), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10825), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2223)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3086), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10563), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2224)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3207), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10832), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2225)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3110), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10615), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2226)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3210), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10871), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2227)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3211), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10864), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2228)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3087), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10567), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2229)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2896), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10451), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2230)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3111), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10622), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2231)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2898), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10226), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2232)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3088), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10570), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2233)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3089), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10572), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2234)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3112), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10623), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2235)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2899), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10556), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2236)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3113), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10626), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2237)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3212), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10877), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2238)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2906), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10686), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2239)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3114), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10639), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2240)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2907), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10700), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2241)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3115), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10645), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2242)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3116), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10659), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2243)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2909), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10717), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2244)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2848), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10697), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2245)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2849), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10875), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2246)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2850), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10879), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2247)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3090), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10586), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2248)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2851), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10923), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2249)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2852), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10108), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2250)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3117), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10663), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2251)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2854), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10187), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2252)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3091), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10596), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2253)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2855), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10189), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2254)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2857), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10232), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2255)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2858), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10252), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2256)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3180), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10854), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2257)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2860), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10266), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2258)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2861), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10288), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2259)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2862), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10316), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2260)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3092), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10600), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2261)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2864), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10383), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2262)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2867), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10573), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2263)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2868), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10599), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2264)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2871), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10636), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2265)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2873), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10644), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2266)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2874), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10641), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2267)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2875), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10647), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2268)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3093), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10604), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2269)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(3628), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10650), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2270)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2878), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10652), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2271)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2880), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10655), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2272)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2883), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10658), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2273)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2884), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10661), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2274)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3094), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10609), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2275)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2887), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10664), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2276)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2888), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10665), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2277)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2889), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10668), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2278)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2891), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10742), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2279)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3095), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10621), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2280)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2892), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10739), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2281)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2893), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10743), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2282)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3181), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10867), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2283)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2894), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10745), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2284)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3096), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10632), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2285)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2895), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10746), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2286)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2897), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10747), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2287)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2900), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10753), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2288)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2954), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9844), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2289)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2901), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10756), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2290)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2902), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10758), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2291)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2903), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10759), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2292)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2904), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10761), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2293)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2905), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10764), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2294)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7471), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7296), + [sym_subscript] = STATE(7298), + [sym_call] = STATE(7295), + [sym_type] = STATE(11958), + [sym_called_type] = STATE(8625), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8188), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8055), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4851), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4855), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4857), + [anon_sym_async] = ACTIONS(4855), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4853), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(4859), + [anon_sym_mut] = ACTIONS(4855), + [anon_sym_out] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4861), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2295)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2908), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10765), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2296)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2910), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10773), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2297)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2911), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10770), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2298)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2912), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10774), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2299)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2913), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10776), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2300)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2955), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9933), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2301)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2914), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10778), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2302)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2915), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10784), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2303)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2916), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10905), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2304)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2917), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10908), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2305)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2956), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9963), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2306)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2918), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10094), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2307)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2919), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10913), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2308)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2957), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9993), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2309)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2920), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10920), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2310)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3118), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10683), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2311)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2921), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10928), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2312)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2922), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10925), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2313)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2923), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10933), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2314)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12338), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12338), + [sym_augmented_assignment] = STATE(12338), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12338), + [sym_yield] = STATE(12338), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12338), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2315)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2925), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10911), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2316)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2926), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10468), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2317)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2927), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10692), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2318)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2928), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10229), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2319)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2929), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10292), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2320)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2930), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10444), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2321)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2958), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9839), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2322)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2931), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10452), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2323)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2932), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10852), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2324)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2933), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10862), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2325)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2934), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10878), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2326)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2935), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10885), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2327)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2936), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10895), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2328)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2938), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10104), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2329)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3120), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10670), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2330)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym__ref_convention] = STATE(2939), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10479), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2331)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2959), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9858), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2332)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2960), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9900), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2333)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3121), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10695), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2334)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2962), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9882), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2335)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2963), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9889), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2336)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2964), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9894), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2337)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2924), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10223), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2338)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2965), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9916), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2339)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3123), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10701), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2340)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3182), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10146), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2341)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2966), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9771), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2342)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3124), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10708), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2343)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2937), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10267), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2344)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2967), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9923), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2345)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2968), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9932), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2346)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2943), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10434), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2347)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3127), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10716), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2348)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2969), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9937), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2349)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2970), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9944), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2350)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3128), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10727), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2351)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2971), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9999), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2352)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2972), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10005), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2353)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2974), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10022), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2354)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3129), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10738), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2355)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2949), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10497), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2356)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2975), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10024), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2357)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2976), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10034), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2358)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12407), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12407), + [sym_augmented_assignment] = STATE(12407), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12407), + [sym_yield] = STATE(12407), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12407), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2359)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3202), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10893), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2360)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3122), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10781), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2361)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2977), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10076), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2362)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2978), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10063), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2363)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3183), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10259), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2364)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2979), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10083), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2365)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3184), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10174), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2366)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2980), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10087), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2367)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3146), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10587), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2368)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2981), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10090), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2369)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3185), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10413), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2370)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2982), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10091), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2371)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2983), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10010), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2372)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2984), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9975), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2373)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3149), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10554), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2374)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12390), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12390), + [sym_augmented_assignment] = STATE(12390), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12390), + [sym_yield] = STATE(12390), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12390), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2375)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12299), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12299), + [sym_augmented_assignment] = STATE(12299), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12299), + [sym_yield] = STATE(12299), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12299), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2376)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3125), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10714), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2377)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2985), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9787), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2378)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2986), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9788), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2379)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2987), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9831), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2380)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2988), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9855), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2381)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3407), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10687), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2382)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2989), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9956), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2383)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2990), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10081), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2384)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3150), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10625), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2385)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2991), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10067), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2386)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2853), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10131), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2387)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2992), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9819), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2388)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2993), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10015), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2389)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3214), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10095), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2390)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3186), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10465), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2391)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2994), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9784), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2392)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3215), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10106), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2393)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2995), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9832), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2394)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3216), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10115), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2395)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3126), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10876), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2396)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2996), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9778), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2397)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3157), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10654), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2398)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3217), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10126), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2399)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2997), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9782), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2400)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3158), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10676), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2401)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3189), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10182), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2402)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2998), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9789), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2403)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3461), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10699), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2404)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2999), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9804), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2405)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3219), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10127), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2406)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3472), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10720), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2407)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3000), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9823), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2408)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3497), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10728), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2409)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3001), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9830), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2410)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3002), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9826), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2411)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3003), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9836), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2412)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3527), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10732), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2413)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3004), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9854), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2414)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3005), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9865), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2415)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3006), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9867), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2416)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3007), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9907), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2417)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3008), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9929), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2418)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3009), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9941), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2419)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3248), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10853), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2420)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9659), + [sym_primary_expression] = STATE(7355), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7499), + [sym_subscript] = STATE(7500), + [sym_call] = STATE(7150), + [sym_type] = STATE(11958), + [sym_called_type] = STATE(8625), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8188), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8055), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_print] = ACTIONS(4865), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4867), + [anon_sym_async] = ACTIONS(4865), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4853), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4865), + [anon_sym_type] = ACTIONS(4869), + [anon_sym_mut] = ACTIONS(4865), + [anon_sym_out] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4871), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2421)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3194), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10227), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2422)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2838), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10121), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2423)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3010), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9946), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2424)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3223), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10133), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2425)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3243), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8927), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2426)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3244), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8937), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2427)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3245), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8948), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2428)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3246), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8966), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2429)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3247), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8970), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2430)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3249), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9010), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2431)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3250), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9011), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2432)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3251), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9013), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2433)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3252), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9014), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2434)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3253), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9019), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2435)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3254), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9021), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2436)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3255), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9023), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2437)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3256), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9025), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2438)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3257), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9035), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2439)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3258), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9036), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2440)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3259), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9038), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2441)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3260), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9042), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2442)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3261), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9040), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2443)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3262), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9043), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2444)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3263), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9045), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2445)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3264), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9046), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2446)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3265), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9047), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2447)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3266), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9051), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2448)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3267), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9053), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2449)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3268), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9056), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2450)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3269), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9057), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2451)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3270), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9058), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2452)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3271), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9071), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2453)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3272), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9068), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2454)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3273), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9072), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2455)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3274), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9074), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2456)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3275), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9075), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2457)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3276), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9076), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2458)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3277), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9080), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2459)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3278), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9083), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2460)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3279), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9085), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2461)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3280), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9086), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2462)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3281), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9088), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2463)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3282), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9089), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2464)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3283), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9091), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2465)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3284), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9096), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2466)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3285), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9094), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2467)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3286), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9098), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2468)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3287), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9101), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2469)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3288), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9102), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2470)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3289), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9103), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2471)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3290), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9112), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2472)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3291), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9115), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2473)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3292), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9117), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2474)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3293), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9118), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2475)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3294), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9123), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2476)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3295), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9127), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2477)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3296), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9124), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2478)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3297), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9129), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2479)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3298), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9131), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2480)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3299), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9132), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2481)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3300), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9133), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2482)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3301), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9137), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2483)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3302), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9269), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2484)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3303), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9272), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2485)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3304), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9275), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2486)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3305), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9282), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2487)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3306), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9307), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2488)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3307), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9333), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2489)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3308), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9338), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2490)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3309), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9376), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2491)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3310), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9381), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2492)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym__ref_convention] = STATE(3311), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9387), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2493)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3011), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9958), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2494)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3314), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9392), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2495)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3315), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9394), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2496)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3316), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9396), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2497)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3317), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9397), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2498)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3318), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9399), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2499)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3319), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9402), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2500)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3320), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9403), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2501)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3322), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9404), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2502)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3323), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9405), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2503)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3324), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9406), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2504)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3325), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9407), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2505)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3326), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9408), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2506)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3327), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9409), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2507)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3328), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9450), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2508)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3329), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8887), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2509)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3029), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10414), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2510)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3331), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8893), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2511)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3332), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8891), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2512)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3333), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8894), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2513)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3334), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8896), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2514)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3335), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8897), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2515)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3336), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8898), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2516)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3337), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8901), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2517)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3338), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8902), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2518)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3339), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8903), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2519)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3340), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8904), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2520)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3341), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8905), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2521)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3342), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8908), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2522)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3343), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8906), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2523)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3344), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8909), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2524)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3345), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8911), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2525)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3346), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8912), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2526)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3347), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8913), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2527)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3348), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8917), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2528)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3349), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8920), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2529)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3350), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8922), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2530)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3351), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8923), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2531)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3352), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8925), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2532)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3353), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8926), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2533)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3354), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8929), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2534)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3355), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8932), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2535)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3356), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8930), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2536)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3357), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8933), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2537)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3358), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8935), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2538)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3359), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8936), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2539)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3360), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8938), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2540)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3361), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8942), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2541)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3362), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8945), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2542)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3363), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8947), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2543)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3364), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8949), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2544)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3365), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8954), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2545)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3366), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8957), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2546)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3367), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8955), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2547)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3368), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8958), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2548)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3369), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8960), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2549)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3370), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8961), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2550)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3371), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8962), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2551)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3372), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8967), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2552)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3373), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8971), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2553)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3374), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8973), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2554)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3375), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8974), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2555)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3376), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8979), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2556)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3377), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8984), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2557)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3378), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8987), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2558)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3379), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8989), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2559)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3380), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8990), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2560)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3381), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8996), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2561)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3382), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9003), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2562)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3012), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9982), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2563)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3385), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8698), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2564)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3386), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8699), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2565)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3387), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8700), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2566)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3388), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8702), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2567)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3389), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8703), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2568)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3390), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8706), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2569)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3391), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8707), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2570)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3392), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8708), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2571)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3393), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8709), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2572)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3394), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8710), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2573)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3395), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8712), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2574)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3396), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8713), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2575)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3397), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8714), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2576)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3398), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8716), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2577)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3399), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8717), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2578)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3400), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8718), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2579)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3401), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8721), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2580)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3402), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8719), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2581)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3403), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8722), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2582)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3404), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8724), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2583)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3405), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8725), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2584)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3406), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8726), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2585)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3408), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8729), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2586)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3409), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8730), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2587)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3410), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8731), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2588)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3411), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8732), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2589)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3412), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8733), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2590)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3413), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8736), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2591)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3414), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8734), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2592)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3415), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8737), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2593)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3416), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8739), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2594)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3417), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8740), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2595)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3418), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8741), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2596)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8745), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2597)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3420), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8748), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2598)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3421), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8750), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2599)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3422), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8751), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2600)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3423), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8753), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2601)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3424), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8754), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2602)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3425), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8755), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2603)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3426), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8758), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2604)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3427), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8756), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2605)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3428), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8759), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2606)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3429), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8761), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2607)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3430), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8762), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2608)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3431), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8763), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2609)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3432), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8767), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2610)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3433), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8770), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2611)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3434), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8772), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2612)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3435), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8773), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2613)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3436), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8778), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2614)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3437), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8781), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2615)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3438), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8779), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2616)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3439), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8782), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2617)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3440), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8784), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2618)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3441), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8785), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2619)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3442), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8786), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2620)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3443), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8790), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2621)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3444), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8793), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2622)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3445), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8795), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2623)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3446), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8796), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2624)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3447), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8801), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2625)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3448), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8806), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2626)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3449), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8809), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2627)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3450), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8811), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2628)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3451), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8812), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2629)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3452), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8817), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2630)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym__ref_convention] = STATE(3453), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8823), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2631)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3013), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9997), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2632)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3456), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9139), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2633)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3457), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9140), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2634)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3458), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9141), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2635)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3459), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9142), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2636)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3460), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9143), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2637)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3462), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9146), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2638)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3463), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9147), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2639)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3464), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9148), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2640)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3465), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9149), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2641)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3466), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9150), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2642)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3467), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9151), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2643)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3468), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9152), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2644)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3469), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9153), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2645)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3470), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9155), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2646)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3471), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9156), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2647)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3473), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9157), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2648)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3474), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9160), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2649)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9158), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2650)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3476), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9161), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2651)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3477), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9163), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2652)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3478), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9164), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2653)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3479), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9165), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2654)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3480), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9168), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2655)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3481), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9169), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2656)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3482), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9170), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2657)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3483), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9171), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2658)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3484), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9172), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2659)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3485), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9175), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2660)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3486), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9173), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2661)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3487), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9176), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2662)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3488), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9178), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2663)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3489), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9179), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2664)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3490), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9181), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2665)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3491), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9185), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2666)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3492), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9188), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2667)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3493), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9190), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2668)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3494), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9191), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2669)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3495), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9193), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2670)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3496), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9194), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2671)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3498), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9195), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2672)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3499), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9198), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2673)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3500), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9196), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2674)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3501), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9200), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2675)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3502), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9451), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2676)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3503), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9203), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2677)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3504), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9204), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2678)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3505), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9208), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2679)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3506), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9211), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2680)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3507), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9213), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2681)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3508), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9214), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2682)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3509), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9219), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2683)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3510), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9222), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2684)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3511), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9220), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2685)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3512), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9223), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2686)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3513), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9225), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2687)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3514), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9226), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2688)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3515), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9227), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2689)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3516), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9231), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2690)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3517), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9234), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2691)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3518), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9236), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2692)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3519), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9237), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2693)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3520), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9242), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2694)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3521), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9247), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2695)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3522), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9250), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2696)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3523), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9252), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2697)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3524), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9253), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2698)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3525), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9258), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2699)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym__ref_convention] = STATE(3526), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9264), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2700)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3014), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10004), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2701)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3135), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10851), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2702)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3224), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10136), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2703)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3225), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10145), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2704)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3015), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10007), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2705)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3198), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10200), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2706)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3016), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10040), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2707)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(3017), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10054), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2708)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2944), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9808), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2709)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3187), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10662), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2710)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3199), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10254), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2711)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2946), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9930), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2712)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3138), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10884), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2713)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2947), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9939), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2714)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3540), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10176), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2715)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3541), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10183), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2716)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3542), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10184), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2717)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3543), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10185), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2718)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3544), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10186), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2719)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3545), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10190), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2720)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3546), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10191), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2721)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3547), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10192), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2722)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3548), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10195), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2723)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3549), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10193), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2724)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3550), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10196), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2725)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3551), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10197), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2726)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3552), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10198), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2727)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3553), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10206), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2728)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3554), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10204), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2729)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3555), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10207), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2730)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3556), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10208), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2731)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3557), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10209), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2732)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3558), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10213), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2733)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3559), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10216), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2734)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3560), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10214), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2735)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3561), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10217), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2736)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3130), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10135), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2737)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3563), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10241), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2738)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3564), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10239), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2739)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3565), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10242), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2740)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3566), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10243), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2741)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3567), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10251), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2742)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3568), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10269), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2743)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3569), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10274), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2744)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3570), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10275), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2745)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3571), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10276), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2746)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3572), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10277), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2747)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3573), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10279), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2748)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3574), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10294), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2749)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3575), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10295), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2750)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3576), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10296), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2751)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3577), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10297), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2752)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3578), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10302), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2753)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3579), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10300), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2754)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3580), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10303), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2755)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3581), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10304), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2756)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3582), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10305), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2757)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3583), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10306), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2758)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3584), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10307), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2759)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3585), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10308), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2760)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3586), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10326), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2761)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3587), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10324), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2762)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3588), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10327), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2763)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3589), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10328), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2764)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3590), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10329), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2765)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3591), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10330), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2766)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3592), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10331), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2767)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3593), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10332), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2768)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3594), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10336), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2769)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3595), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10339), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2770)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3596), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10337), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2771)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3597), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10340), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2772)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3598), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10343), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2773)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3599), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10341), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2774)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3600), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10344), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2775)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3601), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10345), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2776)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3602), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10346), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2777)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3603), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10358), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2778)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3604), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10361), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2779)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3605), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10359), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2780)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3606), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10362), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2781)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3607), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10365), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2782)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3608), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10363), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2783)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3609), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10366), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2784)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3610), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10367), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2785)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3611), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10368), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2786)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3612), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10373), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2787)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3613), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10377), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2788)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3614), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10380), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2789)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3615), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10378), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2790)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3616), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10381), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2791)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3617), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10389), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2792)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3618), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10393), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2793)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3619), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10396), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2794)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3620), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10394), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2795)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3621), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10397), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2796)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3622), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10403), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2797)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3623), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10410), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2798)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3131), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10168), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2799)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3140), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10861), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2800)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2948), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10075), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2801)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2951), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9791), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2802)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3141), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10097), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2803)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3132), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10202), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2804)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym__ref_convention] = STATE(2953), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9838), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2805)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3020), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10221), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2806)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3030), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10257), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2807)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3021), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10264), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2808)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3022), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10265), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2809)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3035), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10244), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2810)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3133), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10234), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2811)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3023), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10284), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2812)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3200), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10278), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2813)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3039), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10286), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2814)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3143), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10114), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2815)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3024), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10287), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2816)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3025), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10317), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2817)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12448), + [sym_pattern] = STATE(8167), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(6819), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9745), + [sym_primary_expression] = STATE(7326), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_assignment] = STATE(12448), + [sym_augmented_assignment] = STATE(12448), + [sym_pattern_list] = STATE(8079), + [sym__right_hand_side] = STATE(12448), + [sym_yield] = STATE(12448), + [sym_attribute] = STATE(6836), + [sym_subscript] = STATE(6838), + [sym_call] = STATE(6845), + [sym_function_type] = STATE(12448), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6751), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(73), + [anon_sym_comptime] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(73), + [anon_sym_def] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(73), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(73), + [anon_sym_out] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(95), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(97), + }, + [STATE(2818)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3144), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10103), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2819)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3190), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10698), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2820)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3026), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10319), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2821)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3027), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10350), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2822)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3145), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10120), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2823)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(2940), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10514), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2824)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym__ref_convention] = STATE(3028), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10353), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2825)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3134), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10268), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2826)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym__ref_convention] = STATE(3218), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10113), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2827)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym__ref_convention] = STATE(3330), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8890), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_ref] = ACTIONS(4835), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2828)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9668), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12082), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11348), + [sym_slice_keyword_argument] = STATE(12082), + [sym_keyword_argument] = STATE(11348), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4901), + [anon_sym_out] = ACTIONS(4901), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2829)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9661), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12068), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11658), + [sym_slice_keyword_argument] = STATE(12068), + [sym_keyword_argument] = STATE(11658), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4909), + [anon_sym_out] = ACTIONS(4909), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2830)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9678), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12092), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11198), + [sym_slice_keyword_argument] = STATE(12092), + [sym_keyword_argument] = STATE(11198), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4913), + [anon_sym_out] = ACTIONS(4913), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2831)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9657), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12020), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11220), + [sym_slice_keyword_argument] = STATE(12020), + [sym_keyword_argument] = STATE(11220), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4917), + [anon_sym_out] = ACTIONS(4917), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2832)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9680), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(11988), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11725), + [sym_slice_keyword_argument] = STATE(11988), + [sym_keyword_argument] = STATE(11725), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4921), + [anon_sym_out] = ACTIONS(4921), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2833)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9665), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12191), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11730), + [sym_slice_keyword_argument] = STATE(12191), + [sym_keyword_argument] = STATE(11730), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4925), + [anon_sym_out] = ACTIONS(4925), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2834)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9671), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12045), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11620), + [sym_slice_keyword_argument] = STATE(12045), + [sym_keyword_argument] = STATE(11620), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4929), + [anon_sym_out] = ACTIONS(4929), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2835)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9650), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(11862), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11478), + [sym_slice_keyword_argument] = STATE(11862), + [sym_keyword_argument] = STATE(11478), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4931), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4933), + [anon_sym_out] = ACTIONS(4933), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2836)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9675), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12030), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11731), + [sym_slice_keyword_argument] = STATE(12030), + [sym_keyword_argument] = STATE(11731), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4935), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4937), + [anon_sym_out] = ACTIONS(4937), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2837)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(11909), + [sym_dictionary_splat] = STATE(11909), + [sym_parenthesized_list_splat] = STATE(12224), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9649), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(11969), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(11433), + [sym_slice_keyword_argument] = STATE(11969), + [sym_keyword_argument] = STATE(11433), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4941), + [anon_sym_out] = ACTIONS(4941), + [anon_sym_inferred] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2838)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10787), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2839)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10922), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2840)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10318), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2841)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9066), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2842)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10942), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2843)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10322), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2844)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10954), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2845)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11006), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2846)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10478), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2847)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11008), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2848)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10875), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2849)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10178), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2850)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10181), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2851)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10232), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2852)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10288), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2853)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10810), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2854)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10571), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2855)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10573), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2856)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7307), + [sym_subscript] = STATE(7309), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4945), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4947), + [anon_sym_async] = ACTIONS(4945), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4945), + [anon_sym_type] = ACTIONS(4949), + [anon_sym_mut] = ACTIONS(4945), + [anon_sym_out] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4951), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2857)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10641), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2858)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10643), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2859)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7314), + [sym_subscript] = STATE(7316), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2860)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10648), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2861)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10656), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2862)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10657), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2863)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10575), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2864)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10664), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2865)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10578), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2866)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10580), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2867)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10739), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2868)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10740), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2869)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10584), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2870)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10585), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2871)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10744), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2872)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10591), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2873)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10749), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2874)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10750), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2875)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10751), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2876)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10603), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2877)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10926), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2878)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10755), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2879)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10605), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2880)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10757), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2881)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10606), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2882)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10608), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2883)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10760), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2884)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10761), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2885)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10611), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2886)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10612), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2887)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10770), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2888)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10771), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2889)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10775), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2890)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10617), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2891)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10899), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2892)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10901), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2893)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10903), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2894)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10906), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2895)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10907), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2896)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10631), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2897)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10909), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2898)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10633), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2899)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10637), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2900)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10915), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2901)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10916), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2902)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10917), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2903)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10918), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2904)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10925), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2905)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10927), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2906)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10640), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2907)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10642), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2908)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10936), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2909)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10649), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2910)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10111), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2911)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10147), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2912)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10225), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2913)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10230), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2914)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10253), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2915)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10311), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2916)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10842), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2917)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10845), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2918)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10847), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2919)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10848), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2920)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10856), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2921)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10857), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2922)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10858), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2923)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10859), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2924)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10670), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2925)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10866), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2926)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10872), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2927)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10882), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2928)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10919), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2929)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10098), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2930)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10099), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2931)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10102), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2932)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10471), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2933)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10472), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2934)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10475), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2935)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10476), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2936)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10477), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2937)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10674), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2938)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10480), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2939)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10684), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2940)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10714), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2941)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10003), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2942)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8634), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2943)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10701), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2944)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9930), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2945)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10733), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2946)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9913), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2947)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9828), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2948)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9933), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2949)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10716), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2950)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10432), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(2951)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9839), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2952)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10121), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2953)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9881), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2954)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9882), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2955)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9771), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2956)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9914), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2957)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9926), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2958)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9955), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2959)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9960), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2960)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10022), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2961)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10168), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(2962)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10063), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2963)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10068), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2964)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10085), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2965)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9915), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2966)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9973), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2967)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9985), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2968)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10020), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2969)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9951), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2970)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9811), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2971)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9887), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2972)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9831), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2973)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(11099), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(2974)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10067), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2975)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10070), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2976)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9871), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2977)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10045), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2978)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9774), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2979)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9776), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2980)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9780), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2981)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9781), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2982)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9786), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2983)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9806), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2984)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9807), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2985)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9821), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2986)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9822), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2987)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9826), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2988)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9829), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2989)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9847), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2990)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9898), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2991)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9902), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2992)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9906), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2993)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9924), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2994)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9927), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2995)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9935), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2996)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9949), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2997)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9952), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2998)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9953), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(2999)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9954), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3000)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9959), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3001)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9962), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3002)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9972), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3003)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9974), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3004)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9990), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3005)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9994), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3006)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10000), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3007)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10021), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3008)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10023), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3009)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10025), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3010)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10029), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3011)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10043), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3012)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10044), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3013)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10047), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3014)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10049), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3015)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10051), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3016)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10056), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3017)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10057), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3018)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10144), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3019)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9016), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3020)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10264), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3021)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10314), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3022)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10315), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3023)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10350), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3024)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10416), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3025)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10426), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3026)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10427), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3027)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10437), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3028)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10438), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3029)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10442), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3030)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10840), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3031)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10447), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3032)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10448), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3033)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10428), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3034)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10455), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3035)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10843), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3036)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10481), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3037)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10482), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3038)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10487), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3039)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10846), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3040)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10498), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3041)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10499), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3042)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10500), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3043)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10502), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3044)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10503), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3045)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10505), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3046)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10508), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3047)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10509), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3048)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10861), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3049)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10516), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3050)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10517), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3051)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10520), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3052)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10868), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3053)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10526), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3054)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10527), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3055)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10528), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3056)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10530), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3057)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10532), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3058)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10535), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3059)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10540), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3060)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10541), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3061)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10542), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3062)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10543), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3063)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10938), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3064)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10547), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3065)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10550), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3066)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10103), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3067)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10559), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3068)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10560), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3069)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10561), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3070)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10564), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3071)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10565), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3072)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10568), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3073)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10110), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3074)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10574), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3075)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10576), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3076)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10579), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3077)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10582), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3078)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10589), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3079)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10592), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3080)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10593), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3081)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10594), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3082)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10597), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3083)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10598), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3084)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10601), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3085)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10554), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3086)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10613), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3087)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10616), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3088)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10618), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3089)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10619), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3090)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10624), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3091)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10627), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3092)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10628), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3093)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10629), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3094)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10630), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3095)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10634), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3096)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10635), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3097)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10122), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3098)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10562), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3099)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7513), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7308), + [sym_subscript] = STATE(7310), + [sym_call] = STATE(7295), + [sym_type] = STATE(11849), + [sym_called_type] = STATE(9330), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8405), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8106), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4957), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4959), + [anon_sym_async] = ACTIONS(4957), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4957), + [anon_sym_type] = ACTIONS(4961), + [anon_sym_mut] = ACTIONS(4957), + [anon_sym_out] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4963), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3100)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7513), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7320), + [sym_subscript] = STATE(7321), + [sym_call] = STATE(7295), + [sym_type] = STATE(11849), + [sym_called_type] = STATE(9330), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8405), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8106), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(4967), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3101)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10654), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3102)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3103)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10148), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3104)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10149), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3105)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10150), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3106)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10151), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3107)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10154), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3108)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10155), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3109)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10156), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3110)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10157), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3111)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10159), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3112)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10162), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3113)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10164), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3114)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10170), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3115)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10171), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3116)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10172), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3117)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10173), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3118)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10199), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3119)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10766), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3120)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10218), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3121)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10222), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3122)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10741), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3123)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10245), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3124)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10255), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3125)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10763), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3126)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10768), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3127)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10290), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3128)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10293), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3129)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10351), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3130)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10790), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3131)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10829), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3132)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10830), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3133)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10838), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3134)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10850), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3135)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10779), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3136)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3137)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(11181), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3138)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10869), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3139)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9048), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3140)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10874), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3141)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10881), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3142)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11283), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3143)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10132), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3144)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10134), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3145)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10141), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3146)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10143), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3147)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10174), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3148)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10188), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3149)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10152), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3150)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10167), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3151)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10456), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3152)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10457), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3153)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10460), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3154)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10461), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3155)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10462), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3156)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10466), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3157)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10200), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3158)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10220), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3159)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10525), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3160)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10607), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3161)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10646), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3162)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10651), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3163)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10682), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3164)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10685), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3165)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10688), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3166)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10710), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3167)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10712), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3168)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10488), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3169)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10672), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3170)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10689), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3171)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10711), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3172)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11550), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3173)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10794), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3174)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10811), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3175)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10864), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3176)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10795), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3177)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10870), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3178)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10880), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3179)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10123), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3180)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10125), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3181)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10133), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3182)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10804), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3183)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10816), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3184)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10820), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3185)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10823), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3186)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10914), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3187)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10439), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3188)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10138), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3189)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10569), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3190)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10705), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3191)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10834), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3192)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11382), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3193)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10841), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3194)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10667), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3195)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10883), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3196)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11068), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3197)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(11387), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3198)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10675), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3199)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10679), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3200)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10699), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3201)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3202)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10484), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3203)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9853), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3204)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10800), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3205)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10802), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3206)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10803), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3207)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10807), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3208)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7475), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7312), + [sym_subscript] = STATE(7313), + [sym_call] = STATE(7295), + [sym_type] = STATE(11973), + [sym_called_type] = STATE(9105), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8226), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8085), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4979), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4981), + [anon_sym_async] = ACTIONS(4979), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4979), + [anon_sym_type] = ACTIONS(4983), + [anon_sym_mut] = ACTIONS(4979), + [anon_sym_out] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4985), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3209)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7471), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7282), + [sym_subscript] = STATE(7156), + [sym_call] = STATE(7295), + [sym_type] = STATE(11958), + [sym_called_type] = STATE(8625), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8188), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8055), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(4989), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3210)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10813), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3211)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10814), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3212)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10815), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3213)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3214)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10818), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3215)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10819), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3216)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10822), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3217)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10892), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3218)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10671), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3219)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10894), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3220)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7311), + [sym_subscript] = STATE(7305), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4993), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4945), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4947), + [anon_sym_async] = ACTIONS(4945), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4945), + [anon_sym_type] = ACTIONS(4949), + [anon_sym_mut] = ACTIONS(4945), + [anon_sym_out] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4951), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3221)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7475), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7322), + [sym_subscript] = STATE(7323), + [sym_call] = STATE(7295), + [sym_type] = STATE(11973), + [sym_called_type] = STATE(9105), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8226), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8085), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(4997), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3222)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3223)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10226), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3224)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10262), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3225)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10581), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3226)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7471), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7296), + [sym_subscript] = STATE(7298), + [sym_call] = STATE(7295), + [sym_type] = STATE(11958), + [sym_called_type] = STATE(8625), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8188), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8055), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4851), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4855), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4857), + [anon_sym_async] = ACTIONS(4855), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(4859), + [anon_sym_mut] = ACTIONS(4855), + [anon_sym_out] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4861), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3227)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3228)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7483), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(6774), + [sym_subscript] = STATE(6775), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(5005), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(5007), + [anon_sym_async] = ACTIONS(5005), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(5005), + [anon_sym_type] = ACTIONS(5009), + [anon_sym_mut] = ACTIONS(5005), + [anon_sym_out] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5011), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3229)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3230)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7513), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7319), + [sym_subscript] = STATE(7324), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4957), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4959), + [anon_sym_async] = ACTIONS(4957), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4957), + [anon_sym_type] = ACTIONS(5017), + [anon_sym_mut] = ACTIONS(4957), + [anon_sym_out] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4963), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3231)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3232)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7471), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7177), + [sym_subscript] = STATE(7178), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4855), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4857), + [anon_sym_async] = ACTIONS(4855), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(5023), + [anon_sym_mut] = ACTIONS(4855), + [anon_sym_out] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4861), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3233)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5025), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3234)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7475), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7327), + [sym_subscript] = STATE(7328), + [sym_call] = STATE(7295), + [sym_type] = STATE(12177), + [sym_called_type] = STATE(9097), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8328), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8164), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(4979), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(4981), + [anon_sym_async] = ACTIONS(4979), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(4979), + [anon_sym_type] = ACTIONS(5029), + [anon_sym_mut] = ACTIONS(4979), + [anon_sym_out] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4985), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3235)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3236)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10013), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12318), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12318), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5033), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3237)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10223), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3238)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9063), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3239)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9048), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3240)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10512), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3241)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9903), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3242)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10577), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3243)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(8937), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3244)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9007), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3245)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9008), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3246)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9013), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3247)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9021), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3248)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10514), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3249)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9034), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3250)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9035), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3251)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9040), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3252)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9041), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3253)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9044), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3254)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9049), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3255)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9050), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3256)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9056), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3257)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9068), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3258)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9069), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3259)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9073), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3260)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9077), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3261)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9078), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3262)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9079), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3263)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9081), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3264)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9082), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3265)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9084), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3266)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9087), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3267)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9088), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3268)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9094), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3269)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9095), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3270)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9100), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3271)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9109), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3272)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9110), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3273)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9111), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3274)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9113), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3275)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9114), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3276)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9116), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3277)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9119), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3278)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9120), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3279)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9121), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3280)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9122), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3281)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9124), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3282)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9125), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3283)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9130), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3284)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9134), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3285)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9135), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3286)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9136), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3287)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9180), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3288)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9199), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3289)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9271), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3290)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9277), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3291)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9278), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3292)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9280), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3293)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9281), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3294)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9287), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3295)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9292), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3296)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9295), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3297)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9298), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3298)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9313), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3299)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9325), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3300)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9334), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3301)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9377), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3302)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9378), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3303)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9379), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3304)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9380), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3305)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9382), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3306)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9383), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3307)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9384), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3308)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9385), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3309)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9386), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3310)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9388), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3311)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12710), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(8087), + [sym_primary_expression] = STATE(6934), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(9389), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12457), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_lambda] = ACTIONS(4297), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4299), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3312)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9391), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3313)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9066), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3314)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9394), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3315)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9400), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3316)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9401), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3317)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9404), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3318)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9407), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3319)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9410), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3320)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9450), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3321)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10706), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3322)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8891), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3323)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8892), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3324)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8895), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3325)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8899), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3326)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8900), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3327)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8903), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3328)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8906), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3329)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8907), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3330)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8910), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3331)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8914), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3332)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8915), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3333)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8916), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3334)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8918), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3335)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8919), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3336)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8921), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3337)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8924), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3338)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8925), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3339)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8930), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3340)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8931), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3341)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8934), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3342)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8939), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3343)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8940), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3344)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8941), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3345)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8943), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3346)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8944), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3347)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8946), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3348)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8950), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3349)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8951), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3350)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8952), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3351)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8953), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3352)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8955), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3353)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8956), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3354)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8959), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3355)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8963), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3356)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8964), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3357)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8965), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3358)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8968), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3359)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8969), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3360)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8972), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3361)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8975), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3362)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8976), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3363)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8977), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3364)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8978), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3365)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8980), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3366)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8981), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3367)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8982), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3368)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8983), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3369)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8985), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3370)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8986), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3371)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8988), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3372)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8992), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3373)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8993), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3374)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8994), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3375)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8995), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3376)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8997), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3377)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8998), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3378)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(8999), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3379)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9000), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3380)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9001), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3381)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9004), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3382)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12535), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(8103), + [sym_primary_expression] = STATE(6933), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(9005), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12450), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4233), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(4235), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3383)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8697), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3384)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8634), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3385)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8699), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3386)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8704), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3387)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8705), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3388)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8708), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3389)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8712), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3390)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8715), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3391)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8716), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3392)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8719), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3393)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8720), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3394)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8723), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3395)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8727), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3396)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8728), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3397)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8731), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3398)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8734), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3399)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8735), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3400)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8738), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3401)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8742), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3402)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8743), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3403)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8744), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3404)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8746), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3405)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8747), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3406)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8749), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3407)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10203), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3408)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8752), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3409)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8753), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3410)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8756), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3411)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8757), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3412)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8760), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3413)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8764), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3414)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8885), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3415)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8766), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3416)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8768), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3417)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8769), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3418)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8771), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3419)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8774), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3420)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8775), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3421)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8776), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3422)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8777), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3423)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8779), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3424)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8780), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3425)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8783), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3426)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8787), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3427)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8788), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3428)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8789), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3429)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8791), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3430)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8792), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3431)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8794), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3432)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8797), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3433)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8798), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3434)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8799), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3435)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8800), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3436)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8802), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3437)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8803), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3438)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8804), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3439)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8805), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3440)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8807), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3441)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8808), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3442)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8810), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3443)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8813), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3444)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8814), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3445)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8815), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3446)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8816), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3447)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8818), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3448)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8819), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3449)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8820), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3450)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8821), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3451)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8822), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3452)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8824), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3453)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12672), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(8030), + [sym_primary_expression] = STATE(6913), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(8825), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12427), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4208), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4210), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3454)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9138), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3455)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9016), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3456)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9140), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3457)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9144), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3458)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9145), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3459)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9148), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3460)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9151), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3461)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10244), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3462)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9154), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3463)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9155), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3464)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9158), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3465)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9159), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3466)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9162), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3467)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9166), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3468)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9167), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3469)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9170), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3470)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9173), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3471)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9174), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3472)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10246), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3473)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9177), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3474)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9182), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3475)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9183), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3476)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9184), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3477)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9186), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3478)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9187), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3479)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9189), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3480)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9192), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3481)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9193), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3482)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9196), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3483)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9197), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3484)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9201), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3485)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9205), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3486)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9206), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3487)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9207), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3488)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9209), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3489)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9210), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3490)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9212), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3491)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9215), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3492)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9216), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3493)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9217), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3494)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9218), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3495)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9220), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3496)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9221), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3497)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10298), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3498)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9224), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3499)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9228), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3500)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9229), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3501)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9230), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3502)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9232), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3503)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9233), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3504)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9235), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3505)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9238), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3506)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9239), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3507)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9240), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3508)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9241), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3509)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9243), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3510)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9244), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3511)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9245), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3512)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9246), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3513)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9248), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3514)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9249), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3515)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9251), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3516)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9254), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3517)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9255), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3518)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9256), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3519)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9257), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3520)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9259), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3521)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9260), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3522)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9261), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3523)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9262), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3524)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9263), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3525)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9265), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3526)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12631), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(8109), + [sym_primary_expression] = STATE(6938), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(9266), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12452), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_lambda] = ACTIONS(4262), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4270), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3527)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10418), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3528)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10703), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3529)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(10058), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3530)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10713), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3531)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10789), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3532)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(9585), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_type] = STATE(9812), + [sym_called_type] = STATE(8618), + [sym_function_type] = STATE(8618), + [sym_splat_type] = STATE(8618), + [sym_generic_type] = STATE(8170), + [sym_union_type] = STATE(8618), + [sym_intersection_type] = STATE(8618), + [sym__intersection_operand] = STATE(12300), + [sym_constrained_type] = STATE(8618), + [sym_member_type] = STATE(8044), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4321), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3533)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10824), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3534)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10863), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3535)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10873), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3536)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10105), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3537)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10112), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3538)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10722), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3539)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10724), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3540)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10184), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3541)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10190), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3542)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10193), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3543)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10194), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3544)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10197), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3545)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10204), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3546)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10205), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3547)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10208), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3548)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10210), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3549)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10211), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3550)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10212), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3551)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10214), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3552)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10215), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3553)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10235), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3554)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10236), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3555)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10237), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3556)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10239), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3557)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10240), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3558)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10247), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3559)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10248), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3560)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10249), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3561)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10250), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3562)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10270), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3563)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10271), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3564)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10272), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3565)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10273), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3566)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10275), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3567)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10281), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3568)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10294), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3569)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10299), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3570)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10300), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3571)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10301), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3572)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10304), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3573)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10306), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3574)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10324), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3575)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10325), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3576)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10328), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3577)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10330), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3578)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10333), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3579)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10334), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3580)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10335), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3581)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10337), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3582)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10338), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3583)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10341), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3584)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10342), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3585)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10345), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3586)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10355), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3587)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10356), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3588)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10357), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3589)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10359), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3590)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10360), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3591)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10363), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3592)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10364), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3593)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10367), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3594)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10369), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3595)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10370), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3596)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10371), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3597)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10372), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3598)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10374), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3599)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10375), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3600)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10376), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3601)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10378), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3602)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10379), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3603)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10385), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3604)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10386), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3605)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10387), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3606)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10388), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3607)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10390), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3608)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10391), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3609)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10392), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3610)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10394), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3611)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10395), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3612)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10398), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3613)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10399), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3614)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10400), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3615)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10401), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3616)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10402), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3617)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10405), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3618)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10406), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3619)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10407), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3620)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10408), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3621)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10409), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3622)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10411), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3623)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(9639), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_type] = STATE(10412), + [sym_called_type] = STATE(9093), + [sym_function_type] = STATE(9093), + [sym_splat_type] = STATE(9093), + [sym_generic_type] = STATE(8287), + [sym_union_type] = STATE(9093), + [sym_intersection_type] = STATE(9093), + [sym__intersection_operand] = STATE(12294), + [sym_constrained_type] = STATE(9093), + [sym_member_type] = STATE(8165), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3624)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10888), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3625)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10891), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3626)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10900), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3627)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9643), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_type] = STATE(10904), + [sym_called_type] = STATE(9107), + [sym_function_type] = STATE(9107), + [sym_splat_type] = STATE(9107), + [sym_generic_type] = STATE(8220), + [sym_union_type] = STATE(9107), + [sym_intersection_type] = STATE(9107), + [sym__intersection_operand] = STATE(12322), + [sym_constrained_type] = STATE(9107), + [sym_member_type] = STATE(8084), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_def] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(4355), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3628)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9633), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_type] = STATE(10754), + [sym_called_type] = STATE(9301), + [sym_function_type] = STATE(9301), + [sym_splat_type] = STATE(9301), + [sym_generic_type] = STATE(8362), + [sym_union_type] = STATE(9301), + [sym_intersection_type] = STATE(9301), + [sym__intersection_operand] = STATE(12310), + [sym_constrained_type] = STATE(9301), + [sym_member_type] = STATE(8081), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(4847), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3629)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12013), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9108), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9773), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(12051), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12551), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3630)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12008), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9202), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(10065), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(12011), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12617), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3631)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12173), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9067), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9987), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(12174), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12534), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3632)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12242), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9060), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9995), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(12256), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12691), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3633)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12211), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9061), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9779), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(11812), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12656), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3634)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(11861), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9106), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9833), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(11884), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12485), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3635)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(11826), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9354), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9934), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(11828), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12490), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5081), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3636)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat] = STATE(12002), + [sym_dictionary_splat] = STATE(12281), + [sym_parenthesized_list_splat] = STATE(12002), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym_expression] = STATE(9273), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_yield] = STATE(12002), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_pair] = STATE(9996), + [sym_struct_literal] = STATE(7645), + [sym_struct_literal_field] = STATE(12081), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym__collection_elements] = STATE(12508), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_print] = ACTIONS(5043), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(5045), + [anon_sym_async] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(5043), + [anon_sym_type] = ACTIONS(5045), + [anon_sym_mut] = ACTIONS(5043), + [anon_sym_out] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5053), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5057), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3637)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12526), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3638)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12676), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9611), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12574), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3639)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12616), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3640)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12676), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3641)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12676), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9551), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12646), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3642)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12543), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3643)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12678), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3644)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12678), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9620), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12589), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3645)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12520), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3646)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12588), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3647)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9575), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12118), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12474), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3648)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3649)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12676), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9611), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12574), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3650)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9558), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12118), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3651)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12573), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9559), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12621), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3652)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12573), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3653)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12253), + [sym_parenthesized_list_splat] = STATE(12258), + [sym__patterns] = STATE(12616), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9564), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12001), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12571), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3654)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9575), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12118), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12474), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3655)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11859), + [sym_parenthesized_list_splat] = STATE(11908), + [sym__patterns] = STATE(12514), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9619), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12175), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12541), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3656)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12514), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3657)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3658)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym__patterns] = STATE(12676), + [sym_pattern] = STATE(11837), + [sym_tuple_pattern] = STATE(12341), + [sym_list_pattern] = STATE(12341), + [sym_list_splat_pattern] = STATE(7739), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7766), + [sym_subscript] = STATE(7767), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(5093), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(5095), + [anon_sym_async] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(5093), + [anon_sym_type] = ACTIONS(5095), + [anon_sym_mut] = ACTIONS(5093), + [anon_sym_out] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(5101), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3659)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym__patterns] = STATE(12470), + [sym_pattern] = STATE(11984), + [sym_tuple_pattern] = STATE(12392), + [sym_list_pattern] = STATE(12392), + [sym_list_splat_pattern] = STATE(7750), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9581), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12227), + [sym_attribute] = STATE(7756), + [sym_subscript] = STATE(7745), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12626), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5113), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5115), + [anon_sym_async] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5113), + [anon_sym_type] = ACTIONS(5115), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_out] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5125), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3660)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3661)] = { + [sym_pattern] = STATE(8035), + [sym_tuple_pattern] = STATE(8032), + [sym_list_pattern] = STATE(8032), + [sym_list_splat_pattern] = STATE(7729), + [sym_primary_expression] = STATE(7998), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7730), + [sym_subscript] = STATE(7731), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5177), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_print] = ACTIONS(5185), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_match] = ACTIONS(5187), + [anon_sym_async] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5185), + [anon_sym_type] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_mut] = ACTIONS(5185), + [anon_sym_out] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(5179), + [anon_sym_DASH_EQ] = ACTIONS(5179), + [anon_sym_STAR_EQ] = ACTIONS(5179), + [anon_sym_SLASH_EQ] = ACTIONS(5179), + [anon_sym_AT_EQ] = ACTIONS(5179), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5179), + [anon_sym_PERCENT_EQ] = ACTIONS(5179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5179), + [anon_sym_GT_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_LT_EQ] = ACTIONS(5179), + [anon_sym_AMP_EQ] = ACTIONS(5179), + [anon_sym_CARET_EQ] = ACTIONS(5179), + [anon_sym_PIPE_EQ] = ACTIONS(5179), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5191), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(5179), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3662)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5193), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3663)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3664)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5197), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3665)] = { + [sym_pattern] = STATE(8035), + [sym_tuple_pattern] = STATE(8032), + [sym_list_pattern] = STATE(8032), + [sym_list_splat_pattern] = STATE(7729), + [sym_primary_expression] = STATE(7998), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7730), + [sym_subscript] = STATE(7731), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5177), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_print] = ACTIONS(5185), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_match] = ACTIONS(5187), + [anon_sym_async] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5185), + [anon_sym_type] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_mut] = ACTIONS(5185), + [anon_sym_out] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_AT_EQ] = ACTIONS(5199), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5199), + [anon_sym_GT_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_LT_EQ] = ACTIONS(5199), + [anon_sym_AMP_EQ] = ACTIONS(5199), + [anon_sym_CARET_EQ] = ACTIONS(5199), + [anon_sym_PIPE_EQ] = ACTIONS(5199), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5191), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(5199), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3666)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5201), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3667)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12417), + [sym_dictionary_splat] = STATE(12417), + [sym_parenthesized_list_splat] = STATE(12419), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10415), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12417), + [sym_keyword_argument] = STATE(12417), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_print] = ACTIONS(5167), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(5169), + [anon_sym_async] = ACTIONS(5167), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_STAR_STAR] = ACTIONS(4899), + [anon_sym_exec] = ACTIONS(5167), + [anon_sym_type] = ACTIONS(5169), + [anon_sym_mut] = ACTIONS(5173), + [anon_sym_out] = ACTIONS(5173), + [anon_sym_inferred] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(5175), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3668)] = { + [sym_function_definition] = STATE(4675), + [sym_parameterized_alias_statement] = STATE(12651), + [sym_class_definition] = STATE(4675), + [sym_trait_definition] = STATE(4675), + [sym_decorator] = STATE(7563), + [sym_pattern] = STATE(11643), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7971), + [sym_primary_expression] = STATE(8009), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_assignment] = STATE(12651), + [sym_pattern_list] = STATE(12303), + [sym_attribute] = STATE(7972), + [sym_subscript] = STATE(7973), + [sym_call] = STATE(8048), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(7953), + [sym_await] = STATE(7218), + [aux_sym_decorated_definition_repeat1] = STATE(7563), + [sym_identifier] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_print] = ACTIONS(5209), + [anon_sym_comptime] = ACTIONS(5211), + [anon_sym_match] = ACTIONS(5213), + [anon_sym_async] = ACTIONS(5215), + [anon_sym_def] = ACTIONS(57), + [anon_sym_fn] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5209), + [anon_sym_type] = ACTIONS(5213), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_mut] = ACTIONS(5209), + [anon_sym_out] = ACTIONS(5209), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5219), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3669)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_expression_list] = STATE(10973), + [sym_pattern] = STATE(12317), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7663), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(9642), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_pattern_list] = STATE(10973), + [sym_yield] = STATE(10973), + [sym_attribute] = STATE(7677), + [sym_subscript] = STATE(7679), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym__f_expression] = STATE(10973), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_print] = ACTIONS(5227), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5229), + [anon_sym_async] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_exec] = ACTIONS(5227), + [anon_sym_type] = ACTIONS(5229), + [anon_sym_mut] = ACTIONS(5227), + [anon_sym_out] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5237), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3670)] = { + [sym_function_definition] = STATE(5043), + [sym_parameterized_alias_statement] = STATE(12628), + [sym_class_definition] = STATE(5043), + [sym_trait_definition] = STATE(5043), + [sym_decorator] = STATE(7563), + [sym_pattern] = STATE(11643), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7971), + [sym_primary_expression] = STATE(8009), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_assignment] = STATE(12628), + [sym_pattern_list] = STATE(12303), + [sym_attribute] = STATE(7972), + [sym_subscript] = STATE(7973), + [sym_call] = STATE(8048), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(7953), + [sym_await] = STATE(7218), + [aux_sym_decorated_definition_repeat1] = STATE(7563), + [sym_identifier] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_print] = ACTIONS(5209), + [anon_sym_comptime] = ACTIONS(5211), + [anon_sym_match] = ACTIONS(5213), + [anon_sym_async] = ACTIONS(5239), + [anon_sym_def] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5209), + [anon_sym_type] = ACTIONS(5213), + [anon_sym_class] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(121), + [anon_sym_mut] = ACTIONS(5209), + [anon_sym_out] = ACTIONS(5209), + [anon_sym_trait] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(81), + [anon_sym_var] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5219), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3671)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_expression_list] = STATE(11155), + [sym_pattern] = STATE(12317), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7663), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(9642), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_pattern_list] = STATE(11155), + [sym_yield] = STATE(11155), + [sym_attribute] = STATE(7677), + [sym_subscript] = STATE(7679), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym__f_expression] = STATE(11155), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_print] = ACTIONS(5227), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5229), + [anon_sym_async] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_exec] = ACTIONS(5227), + [anon_sym_type] = ACTIONS(5229), + [anon_sym_mut] = ACTIONS(5227), + [anon_sym_out] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5237), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3672)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3673)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12187), + [sym_dictionary_splat] = STATE(12187), + [sym_parenthesized_list_splat] = STATE(12188), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9587), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12187), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5249), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3674)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5265), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3675)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12031), + [sym_dictionary_splat] = STATE(12031), + [sym_parenthesized_list_splat] = STATE(12033), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9588), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12031), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3676)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3677)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5273), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3678)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3679)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5277), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3680)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3681)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3682)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3683)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5285), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3684)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12010), + [sym_dictionary_splat] = STATE(12010), + [sym_parenthesized_list_splat] = STATE(12015), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9594), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12010), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3685)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3686)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5293), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3687)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3688)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5297), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3689)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3690)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3691)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3692)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5305), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3693)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3694)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5309), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3695)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3696)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5313), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3697)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3698)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5317), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3699)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3700)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3701)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5323), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3702)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3703)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12003), + [sym_dictionary_splat] = STATE(12003), + [sym_parenthesized_list_splat] = STATE(12028), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9602), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12003), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_COMMA] = ACTIONS(5329), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3704)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5331), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3705)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5333), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3706)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11996), + [sym_dictionary_splat] = STATE(11996), + [sym_parenthesized_list_splat] = STATE(11998), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9565), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(11996), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3707)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12216), + [sym_dictionary_splat] = STATE(12216), + [sym_parenthesized_list_splat] = STATE(12263), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9862), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12216), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5343), + [anon_sym_COMMA] = ACTIONS(5345), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3708)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5357), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3709)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5359), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3710)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5361), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3711)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5363), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3712)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12216), + [sym_dictionary_splat] = STATE(12216), + [sym_parenthesized_list_splat] = STATE(12263), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9608), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12216), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5343), + [anon_sym_COMMA] = ACTIONS(5345), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3713)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5365), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3714)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_expression_list] = STATE(10956), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(9641), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_from] = ACTIONS(5369), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(5371), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(5371), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5371), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_EQ] = ACTIONS(5371), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(5371), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3715)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5379), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3716)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11856), + [sym_dictionary_splat] = STATE(11856), + [sym_parenthesized_list_splat] = STATE(11857), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9798), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11856), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5381), + [anon_sym_COMMA] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3717)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(10231), + [sym_dictionary_splat] = STATE(10231), + [sym_parenthesized_list_splat] = STATE(10233), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9632), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(10231), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5385), + [anon_sym_COMMA] = ACTIONS(5387), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3718)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5389), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3719)] = { + [sym_pattern] = STATE(8074), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7816), + [sym_primary_expression] = STATE(8003), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7818), + [sym_subscript] = STATE(7820), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5391), + [anon_sym_LPAREN] = ACTIONS(5393), + [anon_sym_STAR] = ACTIONS(5395), + [anon_sym_print] = ACTIONS(5397), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_match] = ACTIONS(5399), + [anon_sym_async] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5397), + [anon_sym_type] = ACTIONS(5399), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_mut] = ACTIONS(5397), + [anon_sym_out] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_AT_EQ] = ACTIONS(5199), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5199), + [anon_sym_GT_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_LT_EQ] = ACTIONS(5199), + [anon_sym_AMP_EQ] = ACTIONS(5199), + [anon_sym_CARET_EQ] = ACTIONS(5199), + [anon_sym_PIPE_EQ] = ACTIONS(5199), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5403), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3720)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5405), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3721)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5407), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3722)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5409), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3723)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5411), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3724)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5413), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3725)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12041), + [sym_dictionary_splat] = STATE(12041), + [sym_parenthesized_list_splat] = STATE(12042), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9578), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12041), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3726)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11996), + [sym_dictionary_splat] = STATE(11996), + [sym_parenthesized_list_splat] = STATE(11998), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10041), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11996), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3727)] = { + [sym_pattern] = STATE(8074), + [sym_tuple_pattern] = STATE(8101), + [sym_list_pattern] = STATE(8101), + [sym_list_splat_pattern] = STATE(7816), + [sym_primary_expression] = STATE(8003), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7818), + [sym_subscript] = STATE(7820), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(5391), + [anon_sym_LPAREN] = ACTIONS(5393), + [anon_sym_STAR] = ACTIONS(5395), + [anon_sym_print] = ACTIONS(5397), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_match] = ACTIONS(5399), + [anon_sym_async] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(5397), + [anon_sym_type] = ACTIONS(5399), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_mut] = ACTIONS(5397), + [anon_sym_out] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(5179), + [anon_sym_DASH_EQ] = ACTIONS(5179), + [anon_sym_STAR_EQ] = ACTIONS(5179), + [anon_sym_SLASH_EQ] = ACTIONS(5179), + [anon_sym_AT_EQ] = ACTIONS(5179), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5179), + [anon_sym_PERCENT_EQ] = ACTIONS(5179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5179), + [anon_sym_GT_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_LT_EQ] = ACTIONS(5179), + [anon_sym_AMP_EQ] = ACTIONS(5179), + [anon_sym_CARET_EQ] = ACTIONS(5179), + [anon_sym_PIPE_EQ] = ACTIONS(5179), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(5403), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3728)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12054), + [sym_dictionary_splat] = STATE(12054), + [sym_parenthesized_list_splat] = STATE(12057), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9589), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(12054), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3729)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3730)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3731)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5427), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3732)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3733)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5431), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3734)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3735)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5435), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3736)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3737)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5439), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3738)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_with_item] = STATE(12004), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9586), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3739)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5451), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3740)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5453), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3741)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5455), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3742)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11856), + [sym_dictionary_splat] = STATE(11856), + [sym_parenthesized_list_splat] = STATE(11857), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9595), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_keyword_argument] = STATE(11856), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5381), + [anon_sym_COMMA] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_print] = ACTIONS(5255), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5257), + [anon_sym_async] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5255), + [anon_sym_type] = ACTIONS(5257), + [anon_sym_mut] = ACTIONS(5261), + [anon_sym_out] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5263), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3743)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12187), + [sym_dictionary_splat] = STATE(12187), + [sym_parenthesized_list_splat] = STATE(12188), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10016), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12187), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5249), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3744)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5457), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3745)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5459), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3746)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5461), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3747)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5463), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3748)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5465), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3749)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5467), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3750)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9576), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12026), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12503), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5469), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3751)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5471), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3752)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5473), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3753)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5475), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3754)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3755)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5479), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3756)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9601), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11819), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12667), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5481), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3757)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9559), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12621), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5485), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3758)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11859), + [sym_parenthesized_list_splat] = STATE(11908), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9576), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12026), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12503), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5469), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3759)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5487), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3760)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5489), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3761)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3762)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9581), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12227), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12626), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3763)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9593), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12539), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3764)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9575), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12118), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12474), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3765)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9611), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12574), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5512), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3766)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11859), + [sym_parenthesized_list_splat] = STATE(11908), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9619), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12175), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12541), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3767)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3768)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5519), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3769)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5521), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3770)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5523), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3771)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3772)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3773)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3774)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3775)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3776)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3777)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3778)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3779)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3780)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3781)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5547), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3782)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5549), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3783)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5551), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3784)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9619), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12175), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12541), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3785)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9631), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12590), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5553), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3786)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3787)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5557), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3788)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10036), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_slice] = STATE(12377), + [sym_call] = STATE(7150), + [sym_function_type] = STATE(12377), + [sym_slice_keyword_argument] = STATE(12377), + [sym_keyword_argument] = STATE(12377), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4889), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4889), + [anon_sym_def] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4971), + [anon_sym_out] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4905), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3789)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5559), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3790)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5561), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3791)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12253), + [sym_parenthesized_list_splat] = STATE(12258), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9601), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11819), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12667), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5481), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3792)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5563), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3793)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5565), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3794)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9573), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12172), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12523), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3795)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9551), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12646), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5569), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3796)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3797)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5574), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3798)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3799)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9560), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(11822), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12714), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3800)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9613), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12643), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5578), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3801)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3802)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5582), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3803)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3804)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5586), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3805)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3806)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11904), + [sym_parenthesized_list_splat] = STATE(11904), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9564), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12001), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12571), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3807)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9620), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12589), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5593), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3808)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11841), + [sym_parenthesized_list_splat] = STATE(11842), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9581), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12227), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12626), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3809)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3810)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat] = STATE(12229), + [sym_parenthesized_list_splat] = STATE(12229), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym_expression] = STATE(9627), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_yield] = STATE(12229), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym__collection_elements] = STATE(12527), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5597), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3811)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(12253), + [sym_parenthesized_list_splat] = STATE(12258), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9564), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12001), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12571), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3812)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat] = STATE(11841), + [sym_parenthesized_list_splat] = STATE(11842), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym_expression] = STATE(9573), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_yield] = STATE(12172), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym__collection_elements] = STATE(12523), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5121), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3813)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5599), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3814)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5602), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3815)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3816)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3817)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3818)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10796), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_struct_literal_field] = STATE(12368), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5497), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5499), + [anon_sym_async] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5610), + [anon_sym_exec] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5499), + [anon_sym_mut] = ACTIONS(5497), + [anon_sym_out] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5504), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3819)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3820)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3821)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3822)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3823)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5623), + [anon_sym_for] = ACTIONS(5623), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5625), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3824)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12291), + [sym_parenthesized_list_splat] = STATE(12291), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10678), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_yield] = STATE(12291), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5629), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5633), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4247), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3825)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10382), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5631), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3826)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_type_conversion] = ACTIONS(1540), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3827)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10382), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5635), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3828)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12291), + [sym_parenthesized_list_splat] = STATE(12291), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10678), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_yield] = STATE(12291), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5629), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_RPAREN] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5633), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4247), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3829)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5637), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5641), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5641), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3830)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5641), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5641), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3831)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5659), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5659), + [anon_sym_for] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3832)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5663), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5663), + [anon_sym_for] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3833)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5641), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5641), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5637), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3834)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5665), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5665), + [anon_sym_for] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5667), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3835)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5671), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5671), + [anon_sym_for] = ACTIONS(5671), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3836)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5623), + [anon_sym_for] = ACTIONS(5623), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5625), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3837)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5665), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5665), + [anon_sym_for] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5667), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3838)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5671), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5671), + [anon_sym_for] = ACTIONS(5671), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5669), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3839)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5671), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5671), + [anon_sym_for] = ACTIONS(5671), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3840)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12370), + [sym_parenthesized_list_splat] = STATE(12370), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10289), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_yield] = STATE(12370), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5673), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(5675), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5631), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3841)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12336), + [sym_dictionary_splat] = STATE(12336), + [sym_parenthesized_list_splat] = STATE(12414), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10260), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(12336), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3842)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5659), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5659), + [anon_sym_for] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3843)] = { + [sym_named_expression] = STATE(9647), + [sym__named_expression_lhs] = STATE(12516), + [sym_list_splat_pattern] = STATE(7576), + [sym_as_pattern] = STATE(9647), + [sym__expression_within_for_in_clause] = STATE(11016), + [sym_expression] = STATE(9705), + [sym_primary_expression] = STATE(7306), + [sym_comptime_expression] = STATE(7645), + [sym_transfer_expression] = STATE(7645), + [sym_not_operator] = STATE(9647), + [sym_boolean_operator] = STATE(9647), + [sym_binary_operator] = STATE(7645), + [sym_unary_operator] = STATE(7645), + [sym_comparison_operator] = STATE(9647), + [sym_lambda] = STATE(9647), + [sym_lambda_within_for_in_clause] = STATE(11016), + [sym_attribute] = STATE(7645), + [sym_subscript] = STATE(7553), + [sym_call] = STATE(7557), + [sym_mlir_type] = STATE(7645), + [sym_list] = STATE(7645), + [sym_set] = STATE(7645), + [sym_tuple] = STATE(7645), + [sym_dictionary] = STATE(7645), + [sym_struct_literal] = STATE(7645), + [sym_list_comprehension] = STATE(7645), + [sym_dictionary_comprehension] = STATE(7645), + [sym_set_comprehension] = STATE(7645), + [sym_generator_expression] = STATE(7645), + [sym_parenthesized_expression] = STATE(7645), + [sym_conditional_expression] = STATE(9647), + [sym_concatenated_string] = STATE(7645), + [sym_string] = STATE(7398), + [sym_await] = STATE(7645), + [sym_identifier] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_print] = ACTIONS(5649), + [anon_sym_comptime] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(5663), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_async] = ACTIONS(5663), + [anon_sym_for] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(5661), + [anon_sym_exec] = ACTIONS(5649), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_out] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_not] = ACTIONS(5051), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_lambda] = ACTIONS(5653), + [sym_ellipsis] = ACTIONS(4603), + [anon_sym___mlir_type] = ACTIONS(4605), + [sym_integer] = ACTIONS(4583), + [sym_float] = ACTIONS(4603), + [anon_sym_await] = ACTIONS(5655), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4609), + }, + [STATE(3844)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5659), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5659), + [anon_sym_for] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3845)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(9655), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(5677), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(5677), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5677), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_EQ] = ACTIONS(5677), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(5677), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3846)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(11108), + [sym_dictionary_splat] = STATE(11108), + [sym_parenthesized_list_splat] = STATE(11109), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9662), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_keyword_argument] = STATE(11108), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5339), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5347), + [anon_sym_print] = ACTIONS(5349), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(5351), + [anon_sym_async] = ACTIONS(5349), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_STAR_STAR] = ACTIONS(5259), + [anon_sym_exec] = ACTIONS(5349), + [anon_sym_type] = ACTIONS(5351), + [anon_sym_mut] = ACTIONS(5353), + [anon_sym_out] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(5355), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3847)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5625), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5623), + [anon_sym_for] = ACTIONS(5623), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3848)] = { + [sym_named_expression] = STATE(9715), + [sym__named_expression_lhs] = STATE(12699), + [sym_list_splat_pattern] = STATE(7727), + [sym_as_pattern] = STATE(9715), + [sym__expression_within_for_in_clause] = STATE(10977), + [sym_expression] = STATE(9752), + [sym_primary_expression] = STATE(7339), + [sym_comptime_expression] = STATE(7743), + [sym_transfer_expression] = STATE(7743), + [sym_not_operator] = STATE(9715), + [sym_boolean_operator] = STATE(9715), + [sym_binary_operator] = STATE(7743), + [sym_unary_operator] = STATE(7743), + [sym_comparison_operator] = STATE(9715), + [sym_lambda] = STATE(9715), + [sym_lambda_within_for_in_clause] = STATE(10977), + [sym_attribute] = STATE(7743), + [sym_subscript] = STATE(7754), + [sym_call] = STATE(7724), + [sym_mlir_type] = STATE(7743), + [sym_list] = STATE(7743), + [sym_set] = STATE(7743), + [sym_tuple] = STATE(7743), + [sym_dictionary] = STATE(7743), + [sym_struct_literal] = STATE(7743), + [sym_list_comprehension] = STATE(7743), + [sym_dictionary_comprehension] = STATE(7743), + [sym_set_comprehension] = STATE(7743), + [sym_generator_expression] = STATE(7743), + [sym_parenthesized_expression] = STATE(7743), + [sym_conditional_expression] = STATE(9715), + [sym_concatenated_string] = STATE(7743), + [sym_string] = STATE(7457), + [sym_await] = STATE(7743), + [sym_identifier] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(5667), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_print] = ACTIONS(5445), + [anon_sym_comptime] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(5665), + [anon_sym_match] = ACTIONS(5447), + [anon_sym_async] = ACTIONS(5665), + [anon_sym_for] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_exec] = ACTIONS(5445), + [anon_sym_type] = ACTIONS(5447), + [anon_sym_mut] = ACTIONS(5445), + [anon_sym_out] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_not] = ACTIONS(5119), + [anon_sym_TILDE] = ACTIONS(4657), + [anon_sym_lambda] = ACTIONS(5643), + [sym_ellipsis] = ACTIONS(4659), + [anon_sym___mlir_type] = ACTIONS(4661), + [sym_integer] = ACTIONS(4639), + [sym_float] = ACTIONS(4659), + [anon_sym_await] = ACTIONS(5449), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4665), + }, + [STATE(3849)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(9655), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(5679), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(5679), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_EQ] = ACTIONS(5679), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_type_conversion] = ACTIONS(5679), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3850)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12370), + [sym_parenthesized_list_splat] = STATE(12370), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10289), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_yield] = STATE(12370), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5673), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(5675), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5635), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3851)] = { + [sym_named_expression] = STATE(9020), + [sym__named_expression_lhs] = STATE(12505), + [sym_list_splat_pattern] = STATE(7504), + [sym_as_pattern] = STATE(9020), + [sym__expression_within_for_in_clause] = STATE(10994), + [sym_expression] = STATE(9696), + [sym_primary_expression] = STATE(7072), + [sym_comptime_expression] = STATE(7474), + [sym_transfer_expression] = STATE(7474), + [sym_not_operator] = STATE(9020), + [sym_boolean_operator] = STATE(9020), + [sym_binary_operator] = STATE(7474), + [sym_unary_operator] = STATE(7474), + [sym_comparison_operator] = STATE(9020), + [sym_lambda] = STATE(9020), + [sym_lambda_within_for_in_clause] = STATE(10994), + [sym_attribute] = STATE(7474), + [sym_subscript] = STATE(7505), + [sym_call] = STATE(7470), + [sym_mlir_type] = STATE(7474), + [sym_list] = STATE(7474), + [sym_set] = STATE(7474), + [sym_tuple] = STATE(7474), + [sym_dictionary] = STATE(7474), + [sym_struct_literal] = STATE(7474), + [sym_list_comprehension] = STATE(7474), + [sym_dictionary_comprehension] = STATE(7474), + [sym_set_comprehension] = STATE(7474), + [sym_generator_expression] = STATE(7474), + [sym_parenthesized_expression] = STATE(7474), + [sym_conditional_expression] = STATE(9020), + [sym_concatenated_string] = STATE(7474), + [sym_string] = STATE(7338), + [sym_await] = STATE(7474), + [sym_identifier] = ACTIONS(5483), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_print] = ACTIONS(4307), + [anon_sym_comptime] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(5663), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(5663), + [anon_sym_for] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_exec] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_out] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_lambda] = ACTIONS(5627), + [sym_ellipsis] = ACTIONS(4339), + [anon_sym___mlir_type] = ACTIONS(4341), + [sym_integer] = ACTIONS(4343), + [sym_float] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4347), + }, + [STATE(3852)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5681), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3853)] = { + [sym_list_splat_pattern] = STATE(7249), + [sym_primary_expression] = STATE(7417), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(4132), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_async] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_out] = ACTIONS(4132), + [anon_sym_SLASH_SLASH] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(4145), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3854)] = { + [sym_else_clause] = STATE(4282), + [sym_finally_clause] = STATE(5596), + [sym_except_group_clause] = STATE(3913), + [aux_sym_try_statement_repeat2] = STATE(3913), + [ts_builtin_sym_end] = ACTIONS(5683), + [sym_identifier] = ACTIONS(5685), + [anon_sym_import] = ACTIONS(5685), + [anon_sym_from] = ACTIONS(5685), + [anon_sym_LPAREN] = ACTIONS(5683), + [anon_sym_STAR] = ACTIONS(5683), + [anon_sym_print] = ACTIONS(5685), + [anon_sym_comptime] = ACTIONS(5685), + [anon_sym_assert] = ACTIONS(5685), + [anon_sym___comptime_assert] = ACTIONS(5685), + [anon_sym_return] = ACTIONS(5685), + [anon_sym_del] = ACTIONS(5685), + [anon_sym_raise] = ACTIONS(5685), + [anon_sym_pass] = ACTIONS(5685), + [anon_sym_break] = ACTIONS(5685), + [anon_sym_continue] = ACTIONS(5685), + [anon_sym___extension] = ACTIONS(5685), + [anon_sym___mlir_region] = ACTIONS(5685), + [anon_sym_if] = ACTIONS(5685), + [anon_sym_else] = ACTIONS(5687), + [anon_sym_match] = ACTIONS(5685), + [anon_sym_async] = ACTIONS(5685), + [anon_sym_for] = ACTIONS(5685), + [anon_sym_while] = ACTIONS(5685), + [anon_sym_try] = ACTIONS(5685), + [anon_sym_finally] = ACTIONS(5689), + [anon_sym_with] = ACTIONS(5685), + [anon_sym_def] = ACTIONS(5685), + [anon_sym_fn] = ACTIONS(5685), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_global] = ACTIONS(5685), + [anon_sym_nonlocal] = ACTIONS(5685), + [anon_sym_exec] = ACTIONS(5685), + [anon_sym_type] = ACTIONS(5685), + [anon_sym_class] = ACTIONS(5685), + [anon_sym_struct] = ACTIONS(5685), + [anon_sym_mut] = ACTIONS(5685), + [anon_sym_out] = ACTIONS(5685), + [anon_sym_trait] = ACTIONS(5685), + [anon_sym_except_STAR] = ACTIONS(5691), + [anon_sym_AT] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5683), + [anon_sym_PLUS] = ACTIONS(5683), + [anon_sym_ref] = ACTIONS(5685), + [anon_sym_var] = ACTIONS(5685), + [anon_sym_not] = ACTIONS(5685), + [anon_sym_TILDE] = ACTIONS(5683), + [anon_sym_lambda] = ACTIONS(5685), + [anon_sym_yield] = ACTIONS(5685), + [sym_ellipsis] = ACTIONS(5683), + [anon_sym___mlir_type] = ACTIONS(5685), + [sym_integer] = ACTIONS(5685), + [sym_float] = ACTIONS(5683), + [anon_sym_await] = ACTIONS(5685), + [sym_true] = ACTIONS(5685), + [sym_false] = ACTIONS(5685), + [sym_none] = ACTIONS(5685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(5683), + }, + [STATE(3855)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_list_splat] = STATE(12370), + [sym_parenthesized_list_splat] = STATE(12370), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10289), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_yield] = STATE(12370), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5673), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(5675), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [anon_sym_yield] = ACTIONS(4337), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3856)] = { + [sym_else_clause] = STATE(4282), + [sym_except_clause] = STATE(3909), + [sym_finally_clause] = STATE(5596), + [aux_sym_try_statement_repeat1] = STATE(3909), + [ts_builtin_sym_end] = ACTIONS(5683), + [sym_identifier] = ACTIONS(5685), + [anon_sym_import] = ACTIONS(5685), + [anon_sym_from] = ACTIONS(5685), + [anon_sym_LPAREN] = ACTIONS(5683), + [anon_sym_STAR] = ACTIONS(5683), + [anon_sym_print] = ACTIONS(5685), + [anon_sym_comptime] = ACTIONS(5685), + [anon_sym_assert] = ACTIONS(5685), + [anon_sym___comptime_assert] = ACTIONS(5685), + [anon_sym_return] = ACTIONS(5685), + [anon_sym_del] = ACTIONS(5685), + [anon_sym_raise] = ACTIONS(5685), + [anon_sym_pass] = ACTIONS(5685), + [anon_sym_break] = ACTIONS(5685), + [anon_sym_continue] = ACTIONS(5685), + [anon_sym___extension] = ACTIONS(5685), + [anon_sym___mlir_region] = ACTIONS(5685), + [anon_sym_if] = ACTIONS(5685), + [anon_sym_else] = ACTIONS(5687), + [anon_sym_match] = ACTIONS(5685), + [anon_sym_async] = ACTIONS(5685), + [anon_sym_for] = ACTIONS(5685), + [anon_sym_while] = ACTIONS(5685), + [anon_sym_try] = ACTIONS(5685), + [anon_sym_except] = ACTIONS(5693), + [anon_sym_finally] = ACTIONS(5689), + [anon_sym_with] = ACTIONS(5685), + [anon_sym_def] = ACTIONS(5685), + [anon_sym_fn] = ACTIONS(5685), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_global] = ACTIONS(5685), + [anon_sym_nonlocal] = ACTIONS(5685), + [anon_sym_exec] = ACTIONS(5685), + [anon_sym_type] = ACTIONS(5685), + [anon_sym_class] = ACTIONS(5685), + [anon_sym_struct] = ACTIONS(5685), + [anon_sym_mut] = ACTIONS(5685), + [anon_sym_out] = ACTIONS(5685), + [anon_sym_trait] = ACTIONS(5685), + [anon_sym_AT] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5683), + [anon_sym_PLUS] = ACTIONS(5683), + [anon_sym_ref] = ACTIONS(5685), + [anon_sym_var] = ACTIONS(5685), + [anon_sym_not] = ACTIONS(5685), + [anon_sym_TILDE] = ACTIONS(5683), + [anon_sym_lambda] = ACTIONS(5685), + [anon_sym_yield] = ACTIONS(5685), + [sym_ellipsis] = ACTIONS(5683), + [anon_sym___mlir_type] = ACTIONS(5685), + [sym_integer] = ACTIONS(5685), + [sym_float] = ACTIONS(5683), + [anon_sym_await] = ACTIONS(5685), + [sym_true] = ACTIONS(5685), + [sym_false] = ACTIONS(5685), + [sym_none] = ACTIONS(5685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(5683), + }, + [STATE(3857)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5695), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3858)] = { + [sym_else_clause] = STATE(4306), + [sym_except_clause] = STATE(3920), + [sym_finally_clause] = STATE(4543), + [aux_sym_try_statement_repeat1] = STATE(3920), + [sym_identifier] = ACTIONS(5685), + [anon_sym_import] = ACTIONS(5685), + [anon_sym_from] = ACTIONS(5685), + [anon_sym_LPAREN] = ACTIONS(5683), + [anon_sym_STAR] = ACTIONS(5683), + [anon_sym_print] = ACTIONS(5685), + [anon_sym_comptime] = ACTIONS(5685), + [anon_sym_assert] = ACTIONS(5685), + [anon_sym___comptime_assert] = ACTIONS(5685), + [anon_sym_return] = ACTIONS(5685), + [anon_sym_del] = ACTIONS(5685), + [anon_sym_raise] = ACTIONS(5685), + [anon_sym_pass] = ACTIONS(5685), + [anon_sym_break] = ACTIONS(5685), + [anon_sym_continue] = ACTIONS(5685), + [anon_sym___extension] = ACTIONS(5685), + [anon_sym___mlir_region] = ACTIONS(5685), + [anon_sym_if] = ACTIONS(5685), + [anon_sym_else] = ACTIONS(5697), + [anon_sym_match] = ACTIONS(5685), + [anon_sym_async] = ACTIONS(5685), + [anon_sym_for] = ACTIONS(5685), + [anon_sym_while] = ACTIONS(5685), + [anon_sym_try] = ACTIONS(5685), + [anon_sym_except] = ACTIONS(5699), + [anon_sym_finally] = ACTIONS(5701), + [anon_sym_with] = ACTIONS(5685), + [anon_sym_def] = ACTIONS(5685), + [anon_sym_fn] = ACTIONS(5685), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_global] = ACTIONS(5685), + [anon_sym_nonlocal] = ACTIONS(5685), + [anon_sym_exec] = ACTIONS(5685), + [anon_sym_type] = ACTIONS(5685), + [anon_sym_class] = ACTIONS(5685), + [anon_sym_struct] = ACTIONS(5685), + [anon_sym_mut] = ACTIONS(5685), + [anon_sym_out] = ACTIONS(5685), + [anon_sym_trait] = ACTIONS(5685), + [anon_sym_AT] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5683), + [anon_sym_PLUS] = ACTIONS(5683), + [anon_sym_ref] = ACTIONS(5685), + [anon_sym_var] = ACTIONS(5685), + [anon_sym_not] = ACTIONS(5685), + [anon_sym_TILDE] = ACTIONS(5683), + [anon_sym_lambda] = ACTIONS(5685), + [anon_sym_yield] = ACTIONS(5685), + [sym_ellipsis] = ACTIONS(5683), + [anon_sym___mlir_type] = ACTIONS(5685), + [sym_integer] = ACTIONS(5685), + [sym_float] = ACTIONS(5683), + [anon_sym_await] = ACTIONS(5685), + [sym_true] = ACTIONS(5685), + [sym_false] = ACTIONS(5685), + [sym_none] = ACTIONS(5685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(5683), + [sym_string_start] = ACTIONS(5683), + }, + [STATE(3859)] = { + [sym_else_clause] = STATE(4306), + [sym_finally_clause] = STATE(4543), + [sym_except_group_clause] = STATE(3921), + [aux_sym_try_statement_repeat2] = STATE(3921), + [sym_identifier] = ACTIONS(5685), + [anon_sym_import] = ACTIONS(5685), + [anon_sym_from] = ACTIONS(5685), + [anon_sym_LPAREN] = ACTIONS(5683), + [anon_sym_STAR] = ACTIONS(5683), + [anon_sym_print] = ACTIONS(5685), + [anon_sym_comptime] = ACTIONS(5685), + [anon_sym_assert] = ACTIONS(5685), + [anon_sym___comptime_assert] = ACTIONS(5685), + [anon_sym_return] = ACTIONS(5685), + [anon_sym_del] = ACTIONS(5685), + [anon_sym_raise] = ACTIONS(5685), + [anon_sym_pass] = ACTIONS(5685), + [anon_sym_break] = ACTIONS(5685), + [anon_sym_continue] = ACTIONS(5685), + [anon_sym___extension] = ACTIONS(5685), + [anon_sym___mlir_region] = ACTIONS(5685), + [anon_sym_if] = ACTIONS(5685), + [anon_sym_else] = ACTIONS(5697), + [anon_sym_match] = ACTIONS(5685), + [anon_sym_async] = ACTIONS(5685), + [anon_sym_for] = ACTIONS(5685), + [anon_sym_while] = ACTIONS(5685), + [anon_sym_try] = ACTIONS(5685), + [anon_sym_finally] = ACTIONS(5701), + [anon_sym_with] = ACTIONS(5685), + [anon_sym_def] = ACTIONS(5685), + [anon_sym_fn] = ACTIONS(5685), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_global] = ACTIONS(5685), + [anon_sym_nonlocal] = ACTIONS(5685), + [anon_sym_exec] = ACTIONS(5685), + [anon_sym_type] = ACTIONS(5685), + [anon_sym_class] = ACTIONS(5685), + [anon_sym_struct] = ACTIONS(5685), + [anon_sym_mut] = ACTIONS(5685), + [anon_sym_out] = ACTIONS(5685), + [anon_sym_trait] = ACTIONS(5685), + [anon_sym_except_STAR] = ACTIONS(5703), + [anon_sym_AT] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5683), + [anon_sym_PLUS] = ACTIONS(5683), + [anon_sym_ref] = ACTIONS(5685), + [anon_sym_var] = ACTIONS(5685), + [anon_sym_not] = ACTIONS(5685), + [anon_sym_TILDE] = ACTIONS(5683), + [anon_sym_lambda] = ACTIONS(5685), + [anon_sym_yield] = ACTIONS(5685), + [sym_ellipsis] = ACTIONS(5683), + [anon_sym___mlir_type] = ACTIONS(5685), + [sym_integer] = ACTIONS(5685), + [sym_float] = ACTIONS(5683), + [anon_sym_await] = ACTIONS(5685), + [sym_true] = ACTIONS(5685), + [sym_false] = ACTIONS(5685), + [sym_none] = ACTIONS(5685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(5683), + [sym_string_start] = ACTIONS(5683), + }, + [STATE(3860)] = { + [sym_named_expression] = STATE(8056), + [sym__named_expression_lhs] = STATE(12708), + [sym_expression_list] = STATE(12365), + [sym_list_splat_pattern] = STATE(7302), + [sym_as_pattern] = STATE(8056), + [sym_expression] = STATE(10031), + [sym_primary_expression] = STATE(7317), + [sym_comptime_expression] = STATE(7149), + [sym_transfer_expression] = STATE(7149), + [sym_not_operator] = STATE(8056), + [sym_boolean_operator] = STATE(8056), + [sym_binary_operator] = STATE(7149), + [sym_unary_operator] = STATE(7149), + [sym_comparison_operator] = STATE(8056), + [sym_lambda] = STATE(8056), + [sym_attribute] = STATE(7149), + [sym_subscript] = STATE(7213), + [sym_call] = STATE(7150), + [sym_mlir_type] = STATE(7149), + [sym_list] = STATE(7149), + [sym_set] = STATE(7149), + [sym_tuple] = STATE(7149), + [sym_dictionary] = STATE(7149), + [sym_struct_literal] = STATE(7149), + [sym_list_comprehension] = STATE(7149), + [sym_dictionary_comprehension] = STATE(7149), + [sym_set_comprehension] = STATE(7149), + [sym_generator_expression] = STATE(7149), + [sym_parenthesized_expression] = STATE(7149), + [sym_conditional_expression] = STATE(8056), + [sym_concatenated_string] = STATE(7149), + [sym_string] = STATE(6959), + [sym_await] = STATE(7149), + [sym_identifier] = ACTIONS(5673), + [anon_sym_from] = ACTIONS(5705), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(5371), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_comptime] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(5371), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_out] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_not] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_lambda] = ACTIONS(4677), + [sym_ellipsis] = ACTIONS(4181), + [anon_sym___mlir_type] = ACTIONS(4183), + [sym_integer] = ACTIONS(4161), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4679), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4187), + }, + [STATE(3861)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_list_splat] = STATE(12291), + [sym_parenthesized_list_splat] = STATE(12291), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(10678), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_yield] = STATE(12291), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5629), + [anon_sym_LPAREN] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5633), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4247), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [anon_sym_yield] = ACTIONS(5123), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3862)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12359), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9694), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(5371), + [anon_sym_from] = ACTIONS(5707), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(5709), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(5371), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3863)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3864)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3865)] = { + [sym_else_clause] = STATE(4285), + [sym_except_clause] = STATE(3909), + [sym_finally_clause] = STATE(5745), + [aux_sym_try_statement_repeat1] = STATE(3909), + [ts_builtin_sym_end] = ACTIONS(5715), + [sym_identifier] = ACTIONS(5717), + [anon_sym_import] = ACTIONS(5717), + [anon_sym_from] = ACTIONS(5717), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_print] = ACTIONS(5717), + [anon_sym_comptime] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym___comptime_assert] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_del] = ACTIONS(5717), + [anon_sym_raise] = ACTIONS(5717), + [anon_sym_pass] = ACTIONS(5717), + [anon_sym_break] = ACTIONS(5717), + [anon_sym_continue] = ACTIONS(5717), + [anon_sym___extension] = ACTIONS(5717), + [anon_sym___mlir_region] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_else] = ACTIONS(5687), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_async] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_except] = ACTIONS(5693), + [anon_sym_finally] = ACTIONS(5689), + [anon_sym_with] = ACTIONS(5717), + [anon_sym_def] = ACTIONS(5717), + [anon_sym_fn] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_global] = ACTIONS(5717), + [anon_sym_nonlocal] = ACTIONS(5717), + [anon_sym_exec] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_class] = ACTIONS(5717), + [anon_sym_struct] = ACTIONS(5717), + [anon_sym_mut] = ACTIONS(5717), + [anon_sym_out] = ACTIONS(5717), + [anon_sym_trait] = ACTIONS(5717), + [anon_sym_AT] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(5717), + [anon_sym_var] = ACTIONS(5717), + [anon_sym_not] = ACTIONS(5717), + [anon_sym_TILDE] = ACTIONS(5715), + [anon_sym_lambda] = ACTIONS(5717), + [anon_sym_yield] = ACTIONS(5717), + [sym_ellipsis] = ACTIONS(5715), + [anon_sym___mlir_type] = ACTIONS(5717), + [sym_integer] = ACTIONS(5717), + [sym_float] = ACTIONS(5715), + [anon_sym_await] = ACTIONS(5717), + [sym_true] = ACTIONS(5717), + [sym_false] = ACTIONS(5717), + [sym_none] = ACTIONS(5717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(5715), + }, + [STATE(3866)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5719), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3867)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3868)] = { + [sym_else_clause] = STATE(4283), + [sym_finally_clause] = STATE(4491), + [sym_except_group_clause] = STATE(3921), + [aux_sym_try_statement_repeat2] = STATE(3921), + [sym_identifier] = ACTIONS(5717), + [anon_sym_import] = ACTIONS(5717), + [anon_sym_from] = ACTIONS(5717), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_print] = ACTIONS(5717), + [anon_sym_comptime] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym___comptime_assert] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_del] = ACTIONS(5717), + [anon_sym_raise] = ACTIONS(5717), + [anon_sym_pass] = ACTIONS(5717), + [anon_sym_break] = ACTIONS(5717), + [anon_sym_continue] = ACTIONS(5717), + [anon_sym___extension] = ACTIONS(5717), + [anon_sym___mlir_region] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_else] = ACTIONS(5697), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_async] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_finally] = ACTIONS(5701), + [anon_sym_with] = ACTIONS(5717), + [anon_sym_def] = ACTIONS(5717), + [anon_sym_fn] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_global] = ACTIONS(5717), + [anon_sym_nonlocal] = ACTIONS(5717), + [anon_sym_exec] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_class] = ACTIONS(5717), + [anon_sym_struct] = ACTIONS(5717), + [anon_sym_mut] = ACTIONS(5717), + [anon_sym_out] = ACTIONS(5717), + [anon_sym_trait] = ACTIONS(5717), + [anon_sym_except_STAR] = ACTIONS(5703), + [anon_sym_AT] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(5717), + [anon_sym_var] = ACTIONS(5717), + [anon_sym_not] = ACTIONS(5717), + [anon_sym_TILDE] = ACTIONS(5715), + [anon_sym_lambda] = ACTIONS(5717), + [anon_sym_yield] = ACTIONS(5717), + [sym_ellipsis] = ACTIONS(5715), + [anon_sym___mlir_type] = ACTIONS(5717), + [sym_integer] = ACTIONS(5717), + [sym_float] = ACTIONS(5715), + [anon_sym_await] = ACTIONS(5717), + [sym_true] = ACTIONS(5717), + [sym_false] = ACTIONS(5717), + [sym_none] = ACTIONS(5717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(5715), + [sym_string_start] = ACTIONS(5715), + }, + [STATE(3869)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3870)] = { + [sym_else_clause] = STATE(4285), + [sym_finally_clause] = STATE(5745), + [sym_except_group_clause] = STATE(3913), + [aux_sym_try_statement_repeat2] = STATE(3913), + [ts_builtin_sym_end] = ACTIONS(5715), + [sym_identifier] = ACTIONS(5717), + [anon_sym_import] = ACTIONS(5717), + [anon_sym_from] = ACTIONS(5717), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_print] = ACTIONS(5717), + [anon_sym_comptime] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym___comptime_assert] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_del] = ACTIONS(5717), + [anon_sym_raise] = ACTIONS(5717), + [anon_sym_pass] = ACTIONS(5717), + [anon_sym_break] = ACTIONS(5717), + [anon_sym_continue] = ACTIONS(5717), + [anon_sym___extension] = ACTIONS(5717), + [anon_sym___mlir_region] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_else] = ACTIONS(5687), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_async] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_finally] = ACTIONS(5689), + [anon_sym_with] = ACTIONS(5717), + [anon_sym_def] = ACTIONS(5717), + [anon_sym_fn] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_global] = ACTIONS(5717), + [anon_sym_nonlocal] = ACTIONS(5717), + [anon_sym_exec] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_class] = ACTIONS(5717), + [anon_sym_struct] = ACTIONS(5717), + [anon_sym_mut] = ACTIONS(5717), + [anon_sym_out] = ACTIONS(5717), + [anon_sym_trait] = ACTIONS(5717), + [anon_sym_except_STAR] = ACTIONS(5691), + [anon_sym_AT] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(5717), + [anon_sym_var] = ACTIONS(5717), + [anon_sym_not] = ACTIONS(5717), + [anon_sym_TILDE] = ACTIONS(5715), + [anon_sym_lambda] = ACTIONS(5717), + [anon_sym_yield] = ACTIONS(5717), + [sym_ellipsis] = ACTIONS(5715), + [anon_sym___mlir_type] = ACTIONS(5717), + [sym_integer] = ACTIONS(5717), + [sym_float] = ACTIONS(5715), + [anon_sym_await] = ACTIONS(5717), + [sym_true] = ACTIONS(5717), + [sym_false] = ACTIONS(5717), + [sym_none] = ACTIONS(5717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(5715), + }, + [STATE(3871)] = { + [sym_named_expression] = STATE(7969), + [sym__named_expression_lhs] = STATE(12752), + [sym_expression_list] = STATE(12007), + [sym_list_splat_pattern] = STATE(6966), + [sym_as_pattern] = STATE(7969), + [sym_expression] = STATE(9648), + [sym_primary_expression] = STATE(7107), + [sym_comptime_expression] = STATE(7017), + [sym_transfer_expression] = STATE(7017), + [sym_not_operator] = STATE(7969), + [sym_boolean_operator] = STATE(7969), + [sym_binary_operator] = STATE(7017), + [sym_unary_operator] = STATE(7017), + [sym_comparison_operator] = STATE(7969), + [sym_lambda] = STATE(7969), + [sym_attribute] = STATE(7017), + [sym_subscript] = STATE(7027), + [sym_call] = STATE(6965), + [sym_mlir_type] = STATE(7017), + [sym_list] = STATE(7017), + [sym_set] = STATE(7017), + [sym_tuple] = STATE(7017), + [sym_dictionary] = STATE(7017), + [sym_struct_literal] = STATE(7017), + [sym_list_comprehension] = STATE(7017), + [sym_dictionary_comprehension] = STATE(7017), + [sym_set_comprehension] = STATE(7017), + [sym_generator_expression] = STATE(7017), + [sym_parenthesized_expression] = STATE(7017), + [sym_conditional_expression] = STATE(7969), + [sym_concatenated_string] = STATE(7017), + [sym_string] = STATE(6936), + [sym_await] = STATE(7017), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym_from] = ACTIONS(5727), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(5709), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_comptime] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_out] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_not] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_lambda] = ACTIONS(85), + [sym_ellipsis] = ACTIONS(89), + [anon_sym___mlir_type] = ACTIONS(91), + [sym_integer] = ACTIONS(93), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1592), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_none] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(5725), + [sym_string_start] = ACTIONS(1594), + }, + [STATE(3872)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3873)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5731), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3874)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3875)] = { + [sym_named_expression] = STATE(9667), + [sym__named_expression_lhs] = STATE(12620), + [sym_list_splat] = STATE(12413), + [sym_parenthesized_list_splat] = STATE(12413), + [sym_list_splat_pattern] = STATE(7696), + [sym_as_pattern] = STATE(9667), + [sym_expression] = STATE(10382), + [sym_primary_expression] = STATE(7318), + [sym_comptime_expression] = STATE(7651), + [sym_transfer_expression] = STATE(7651), + [sym_not_operator] = STATE(9667), + [sym_boolean_operator] = STATE(9667), + [sym_binary_operator] = STATE(7651), + [sym_unary_operator] = STATE(7651), + [sym_comparison_operator] = STATE(9667), + [sym_lambda] = STATE(9667), + [sym_yield] = STATE(12413), + [sym_attribute] = STATE(7651), + [sym_subscript] = STATE(7556), + [sym_call] = STATE(7653), + [sym_mlir_type] = STATE(7651), + [sym_list] = STATE(7651), + [sym_set] = STATE(7651), + [sym_tuple] = STATE(7651), + [sym_dictionary] = STATE(7651), + [sym_struct_literal] = STATE(7651), + [sym_list_comprehension] = STATE(7651), + [sym_dictionary_comprehension] = STATE(7651), + [sym_set_comprehension] = STATE(7651), + [sym_generator_expression] = STATE(7651), + [sym_parenthesized_expression] = STATE(7651), + [sym_conditional_expression] = STATE(9667), + [sym_concatenated_string] = STATE(7651), + [sym_string] = STATE(7391), + [sym_await] = STATE(7651), + [sym_identifier] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5495), + [anon_sym_print] = ACTIONS(5373), + [anon_sym_comptime] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(5375), + [anon_sym_async] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_exec] = ACTIONS(5373), + [anon_sym_type] = ACTIONS(5375), + [anon_sym_mut] = ACTIONS(5373), + [anon_sym_out] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_lambda] = ACTIONS(5235), + [anon_sym_yield] = ACTIONS(5055), + [sym_ellipsis] = ACTIONS(4629), + [anon_sym___mlir_type] = ACTIONS(4631), + [sym_integer] = ACTIONS(4611), + [sym_float] = ACTIONS(4629), + [anon_sym_await] = ACTIONS(5377), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4635), + }, + [STATE(3876)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5735), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3877)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3878)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3879)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3880)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5743), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3881)] = { + [sym_named_expression] = STATE(8041), + [sym__named_expression_lhs] = STATE(12486), + [sym_dictionary_splat] = STATE(12411), + [sym_list_splat_pattern] = STATE(7249), + [sym_as_pattern] = STATE(8041), + [sym_expression] = STATE(11128), + [sym_primary_expression] = STATE(7325), + [sym_comptime_expression] = STATE(7218), + [sym_transfer_expression] = STATE(7218), + [sym_not_operator] = STATE(8041), + [sym_boolean_operator] = STATE(8041), + [sym_binary_operator] = STATE(7218), + [sym_unary_operator] = STATE(7218), + [sym_comparison_operator] = STATE(8041), + [sym_lambda] = STATE(8041), + [sym_attribute] = STATE(7218), + [sym_subscript] = STATE(7264), + [sym_call] = STATE(7295), + [sym_mlir_type] = STATE(7218), + [sym_list] = STATE(7218), + [sym_set] = STATE(7218), + [sym_tuple] = STATE(7218), + [sym_dictionary] = STATE(7218), + [sym_pair] = STATE(12411), + [sym_struct_literal] = STATE(7218), + [sym_list_comprehension] = STATE(7218), + [sym_dictionary_comprehension] = STATE(7218), + [sym_set_comprehension] = STATE(7218), + [sym_generator_expression] = STATE(7218), + [sym_parenthesized_expression] = STATE(7218), + [sym_conditional_expression] = STATE(8041), + [sym_concatenated_string] = STATE(7218), + [sym_string] = STATE(6954), + [sym_await] = STATE(7218), + [sym_identifier] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_print] = ACTIONS(1508), + [anon_sym_comptime] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_STAR_STAR] = ACTIONS(5049), + [anon_sym_exec] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_out] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_not] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_lambda] = ACTIONS(1538), + [sym_ellipsis] = ACTIONS(1542), + [anon_sym___mlir_type] = ACTIONS(1544), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_none] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1550), + }, + [STATE(3882)] = { + [sym_named_expression] = STATE(8047), + [sym__named_expression_lhs] = STATE(12475), + [sym_expression_list] = STATE(12398), + [sym_list_splat_pattern] = STATE(7278), + [sym_as_pattern] = STATE(8047), + [sym_expression] = STATE(9827), + [sym_primary_expression] = STATE(7315), + [sym_comptime_expression] = STATE(7294), + [sym_transfer_expression] = STATE(7294), + [sym_not_operator] = STATE(8047), + [sym_boolean_operator] = STATE(8047), + [sym_binary_operator] = STATE(7294), + [sym_unary_operator] = STATE(7294), + [sym_comparison_operator] = STATE(8047), + [sym_lambda] = STATE(8047), + [sym_attribute] = STATE(7294), + [sym_subscript] = STATE(7121), + [sym_call] = STATE(7297), + [sym_mlir_type] = STATE(7294), + [sym_list] = STATE(7294), + [sym_set] = STATE(7294), + [sym_tuple] = STATE(7294), + [sym_dictionary] = STATE(7294), + [sym_struct_literal] = STATE(7294), + [sym_list_comprehension] = STATE(7294), + [sym_dictionary_comprehension] = STATE(7294), + [sym_set_comprehension] = STATE(7294), + [sym_generator_expression] = STATE(7294), + [sym_parenthesized_expression] = STATE(7294), + [sym_conditional_expression] = STATE(8047), + [sym_concatenated_string] = STATE(7294), + [sym_string] = STATE(6956), + [sym_await] = STATE(7294), + [sym_identifier] = ACTIONS(5629), + [anon_sym_from] = ACTIONS(5747), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(5371), + [anon_sym_COMMA] = ACTIONS(5371), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_print] = ACTIONS(4243), + [anon_sym_comptime] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_async] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_exec] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4247), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_out] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_not] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_lambda] = ACTIONS(4367), + [sym_ellipsis] = ACTIONS(4264), + [anon_sym___mlir_type] = ACTIONS(4266), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4264), + [anon_sym_await] = ACTIONS(4369), + [sym_true] = ACTIONS(4268), + [sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(4272), + }, + [STATE(3883)] = { + [sym_else_clause] = STATE(4283), + [sym_except_clause] = STATE(3920), + [sym_finally_clause] = STATE(4491), + [aux_sym_try_statement_repeat1] = STATE(3920), + [sym_identifier] = ACTIONS(5717), + [anon_sym_import] = ACTIONS(5717), + [anon_sym_from] = ACTIONS(5717), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_print] = ACTIONS(5717), + [anon_sym_comptime] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym___comptime_assert] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_del] = ACTIONS(5717), + [anon_sym_raise] = ACTIONS(5717), + [anon_sym_pass] = ACTIONS(5717), + [anon_sym_break] = ACTIONS(5717), + [anon_sym_continue] = ACTIONS(5717), + [anon_sym___extension] = ACTIONS(5717), + [anon_sym___mlir_region] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_else] = ACTIONS(5697), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_async] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_except] = ACTIONS(5699), + [anon_sym_finally] = ACTIONS(5701), + [anon_sym_with] = ACTIONS(5717), + [anon_sym_def] = ACTIONS(5717), + [anon_sym_fn] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_global] = ACTIONS(5717), + [anon_sym_nonlocal] = ACTIONS(5717), + [anon_sym_exec] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_class] = ACTIONS(5717), + [anon_sym_struct] = ACTIONS(5717), + [anon_sym_mut] = ACTIONS(5717), + [anon_sym_out] = ACTIONS(5717), + [anon_sym_trait] = ACTIONS(5717), + [anon_sym_AT] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(5717), + [anon_sym_var] = ACTIONS(5717), + [anon_sym_not] = ACTIONS(5717), + [anon_sym_TILDE] = ACTIONS(5715), + [anon_sym_lambda] = ACTIONS(5717), + [anon_sym_yield] = ACTIONS(5717), + [sym_ellipsis] = ACTIONS(5715), + [anon_sym___mlir_type] = ACTIONS(5717), + [sym_integer] = ACTIONS(5717), + [sym_float] = ACTIONS(5715), + [anon_sym_await] = ACTIONS(5717), + [sym_true] = ACTIONS(5717), + [sym_false] = ACTIONS(5717), + [sym_none] = ACTIONS(5717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(5715), + [sym_string_start] = ACTIONS(5715), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 28, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5751), 1, + anon_sym_from, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9719), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5677), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [121] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5753), 1, + anon_sym_RBRACK, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [244] = 28, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9700), 1, + sym_expression, + STATE(12295), 1, + sym_expression_list, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5757), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [365] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4123), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [476] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5759), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [599] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5761), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [710] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5763), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [833] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5049), 1, + anon_sym_STAR_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11128), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + STATE(12411), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [954] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5765), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1077] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5767), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1200] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5769), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1323] = 28, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5771), 1, + anon_sym_from, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9719), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5679), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1444] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5775), 1, + anon_sym_COLON, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10039), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1565] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5777), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1688] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + ACTIONS(5779), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1811] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5783), 1, + anon_sym_COLON, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10042), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5781), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1932] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9705), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(10453), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2050] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5785), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2170] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5787), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2290] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11159), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12498), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2410] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5789), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2530] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6738), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7987), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8163), 1, + sym_call, + STATE(11892), 1, + sym_pattern, + STATE(12703), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2654] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2764] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5797), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2884] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5799), 1, + anon_sym_LPAREN, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(11974), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12677), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3004] = 5, + ACTIONS(5805), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3909), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(5801), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5803), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [3078] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9696), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10553), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3196] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9729), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(11066), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3314] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5808), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3434] = 5, + ACTIONS(5814), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3913), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(5810), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5812), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [3508] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9696), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10735), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3626] = 8, + ACTIONS(5697), 1, + anon_sym_else, + ACTIONS(5821), 1, + anon_sym_elif, + STATE(4008), 1, + aux_sym_if_statement_repeat1, + STATE(4294), 1, + sym_elif_clause, + STATE(4520), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [3706] = 8, + ACTIONS(5697), 1, + anon_sym_else, + ACTIONS(5821), 1, + anon_sym_elif, + STATE(3941), 1, + aux_sym_if_statement_repeat1, + STATE(4294), 1, + sym_elif_clause, + STATE(4522), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5825), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [3786] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9964), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5827), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3904] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9964), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5829), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4022] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5831), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4142] = 5, + ACTIONS(5833), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3920), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(5801), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5803), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [4216] = 5, + ACTIONS(5836), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3921), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(5810), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5812), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [4290] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9696), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10118), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4408] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9707), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10981), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4526] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5839), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4646] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9705), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(11016), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4764] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9714), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10975), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [4882] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5841), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(12292), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5002] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4123), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5112] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(5843), 1, + anon_sym_RPAREN, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10161), 1, + sym_expression, + STATE(12440), 1, + sym_with_item, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5232] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5342] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5845), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5462] = 27, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(5627), 1, + anon_sym_lambda, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9696), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + STATE(10994), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5580] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9719), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5847), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5698] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9698), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10965), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5816] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5677), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5934] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4130), 1, + anon_sym_STAR, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7417), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5761), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6044] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5679), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6162] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10404), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(5677), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6280] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10384), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5849), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6398] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10991), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12594), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6518] = 8, + ACTIONS(5697), 1, + anon_sym_else, + ACTIONS(5821), 1, + anon_sym_elif, + STATE(4008), 1, + aux_sym_if_statement_repeat1, + STATE(4294), 1, + sym_elif_clause, + STATE(4566), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5853), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5851), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [6598] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10404), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(5679), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6716] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9752), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10424), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6834] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9713), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10976), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [6952] = 8, + ACTIONS(5697), 1, + anon_sym_else, + ACTIONS(5821), 1, + anon_sym_elif, + STATE(3915), 1, + aux_sym_if_statement_repeat1, + STATE(4294), 1, + sym_elif_clause, + STATE(4474), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5857), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5855), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [7032] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6743), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7967), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8151), 1, + sym_call, + STATE(11853), 1, + sym_pattern, + STATE(12652), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7156] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9964), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5859), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7274] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9964), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5861), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7392] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6739), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7966), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8155), 1, + sym_call, + STATE(12186), 1, + sym_pattern, + STATE(12555), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7516] = 8, + ACTIONS(5687), 1, + anon_sym_else, + ACTIONS(5863), 1, + anon_sym_elif, + STATE(3980), 1, + aux_sym_if_statement_repeat1, + STATE(4281), 1, + sym_elif_clause, + STATE(5537), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5857), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5855), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [7596] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10752), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7714] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5867), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7834] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9752), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10977), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7952] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10033), 1, + sym_expression, + STATE(12043), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8072] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(5869), 1, + anon_sym_RPAREN, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10161), 1, + sym_expression, + STATE(12440), 1, + sym_with_item, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8192] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5871), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(12292), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8312] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5873), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8432] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5875), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8552] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9886), 1, + sym_expression, + STATE(11983), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8672] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5799), 1, + anon_sym_LPAREN, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(11974), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12609), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8792] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9719), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5877), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8910] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9746), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5879), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9028] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11093), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12634), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9148] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10074), 1, + sym_expression, + STATE(11916), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9268] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10059), 1, + sym_expression, + STATE(12400), 1, + sym_slice, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5881), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9390] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11134), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12606), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9510] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10280), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9628] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9835), 1, + sym_expression, + STATE(12132), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9748] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym__, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10718), 1, + sym_expression, + STATE(12456), 1, + sym_wildcard_origin, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9868] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11166), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12568), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [9988] = 29, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9815), 1, + sym_expression, + STATE(12385), 1, + sym_slice, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5883), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10110] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10970), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12654), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10230] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11060), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12496), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10350] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5799), 1, + anon_sym_LPAREN, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(11974), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12728), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10470] = 28, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5799), 1, + anon_sym_LPAREN, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(11974), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12540), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10590] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6741), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7979), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8093), 1, + sym_call, + STATE(11999), 1, + sym_pattern, + STATE(12564), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10714] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6742), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7980), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8097), 1, + sym_call, + STATE(12112), 1, + sym_pattern, + STATE(12757), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10838] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9752), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10511), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10956] = 27, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(5643), 1, + anon_sym_lambda, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9752), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + STATE(10772), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11074] = 8, + ACTIONS(5687), 1, + anon_sym_else, + ACTIONS(5863), 1, + anon_sym_elif, + STATE(4062), 1, + aux_sym_if_statement_repeat1, + STATE(4281), 1, + sym_elif_clause, + STATE(4797), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11154] = 8, + ACTIONS(5687), 1, + anon_sym_else, + ACTIONS(5863), 1, + anon_sym_elif, + STATE(3988), 1, + aux_sym_if_statement_repeat1, + STATE(4281), 1, + sym_elif_clause, + STATE(4463), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5825), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11234] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6730), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7968), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8061), 1, + sym_call, + STATE(12193), 1, + sym_pattern, + STATE(12601), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11358] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5885), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11478] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5887), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11598] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9705), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(10435), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11716] = 28, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5123), 1, + anon_sym_yield, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(11084), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + STATE(12663), 1, + sym_yield, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11836] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5889), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [11956] = 8, + ACTIONS(5687), 1, + anon_sym_else, + ACTIONS(5863), 1, + anon_sym_elif, + STATE(4062), 1, + aux_sym_if_statement_repeat1, + STATE(4281), 1, + sym_elif_clause, + STATE(4641), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5853), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5851), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12036] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5891), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12156] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9705), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(10490), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12274] = 27, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5653), 1, + anon_sym_lambda, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9738), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + STATE(11015), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12392] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6746), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7984), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8152), 1, + sym_call, + STATE(11959), 1, + sym_pattern, + STATE(12469), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12516] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6747), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7985), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8154), 1, + sym_call, + STATE(11962), 1, + sym_pattern, + STATE(12487), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12640] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6740), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7989), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8185), 1, + sym_call, + STATE(12255), 1, + sym_pattern, + STATE(12689), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12764] = 30, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5793), 1, + anon_sym_ref, + STATE(6745), 1, + sym_argument_convention, + STATE(7935), 1, + sym__ref_convention, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7990), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8187), 1, + sym_call, + STATE(12259), 1, + sym_pattern, + STATE(12696), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5791), 2, + anon_sym_mut, + anon_sym_out, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(5209), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5795), 6, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [12888] = 28, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + ACTIONS(5893), 1, + anon_sym_RBRACE, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13008] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5895), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13125] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5897), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13242] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5899), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13359] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5901), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13476] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5903), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13593] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5905), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13710] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5907), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [13827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5909), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13896] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5915), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13965] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5917), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14034] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5921), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14151] = 6, + ACTIONS(5927), 1, + anon_sym_elif, + STATE(4008), 1, + aux_sym_if_statement_repeat1, + STATE(4294), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5925), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5923), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14226] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10161), 1, + sym_expression, + STATE(12440), 1, + sym_with_item, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5915), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14412] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5930), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10797), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14529] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5932), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14598] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12314), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14717] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5938), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10175), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5942), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14903] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5944), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15020] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(10984), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15139] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5946), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10797), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15256] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9880), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12653), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15373] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5948), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15490] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12037), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15609] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5950), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10826), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15726] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5952), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15843] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(11977), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [15962] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(10531), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16081] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12426), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16200] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5954), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16317] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10537), 1, + sym_expression, + STATE(12292), 1, + sym_with_item, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16434] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12247), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16553] = 27, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5491), 1, + sym_identifier, + ACTIONS(5504), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10860), 1, + sym_expression, + STATE(12368), 1, + sym_struct_literal_field, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5499), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5497), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16670] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5909), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16739] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10694), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16856] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10072), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12633), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5932), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17042] = 27, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9704), 1, + sym_expression, + STATE(12337), 1, + sym_expression_list, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17159] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5956), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17276] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5679), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10694), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17393] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(11903), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17512] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(10709), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17631] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5958), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17748] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(11939), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17867] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12086), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17986] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(10799), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18105] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12148), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18224] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5960), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10797), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18341] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5962), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18458] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5964), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18575] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10018), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12612), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18692] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10050), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12528), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18809] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10078), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12513), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18926] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19043] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(12254), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19162] = 28, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9904), 1, + sym_expression, + STATE(10680), 1, + sym__type_parameter_default, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5936), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19281] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5968), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19398] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9908), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + STATE(12707), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19515] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5917), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [19584] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19701] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5972), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19818] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19935] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5976), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5942), 48, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20121] = 6, + ACTIONS(5978), 1, + anon_sym_elif, + STATE(4062), 1, + aux_sym_if_statement_repeat1, + STATE(4281), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5925), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5923), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20196] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5981), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20313] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5983), 1, + anon_sym_COLON, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10797), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20430] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + ACTIONS(5985), 1, + anon_sym_RBRACK, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20547] = 32, + ACTIONS(43), 1, + anon_sym_if, + ACTIONS(49), 1, + anon_sym_for, + ACTIONS(51), 1, + anon_sym_while, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5987), 1, + sym_identifier, + ACTIONS(5989), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_assert, + ACTIONS(5993), 1, + anon_sym_async, + STATE(7586), 1, + sym_parenthesized_expression, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(5942), 3, + sym_if_statement, + sym_for_statement, + sym_while_statement, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 16, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_concatenated_string, + sym_await, + [20673] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9968), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20787] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9570), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [20901] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9737), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21015] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9834), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21129] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5997), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5995), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6001), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5999), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5909), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21333] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10734), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21447] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9749), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21561] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9761), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21675] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9984), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21789] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9311), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [21903] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9716), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22017] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9579), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5917), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22199] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8096), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6005), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6003), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22381] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9276), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22495] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9673), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22609] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6013), 1, + anon_sym_await, + STATE(6956), 1, + sym_string, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(7787), 1, + sym_attribute, + STATE(7789), 1, + sym_subscript, + STATE(9864), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(6011), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(6009), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22725] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10726), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22839] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10736), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22953] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(10696), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23067] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8052), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23181] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9739), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23295] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9762), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23409] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8099), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23523] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10786), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5942), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23705] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11157), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23819] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9390), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23933] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8051), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24047] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9740), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24161] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10312), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24275] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9012), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24389] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9393), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24503] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(8060), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24617] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9395), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24731] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9398), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24845] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10762), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24959] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9666), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6017), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6015), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25141] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9644), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25255] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9684), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25369] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7970), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25483] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(6013), 1, + anon_sym_await, + ACTIONS(6019), 1, + sym_identifier, + STATE(6956), 1, + sym_string, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7410), 1, + sym_primary_expression, + STATE(7708), 1, + sym_attribute, + STATE(7755), 1, + sym_subscript, + STATE(9864), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(6023), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(6021), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25599] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10100), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25713] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10139), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6005), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6003), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25895] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9686), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26009] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9663), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26123] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11000), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6025), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6027), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26305] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9670), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26419] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11154), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26533] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10285), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26647] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10323), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6029), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26829] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9688), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5997), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5995), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27011] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6001), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5999), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27079] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6033), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6035), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27147] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9584), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27261] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9332), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27375] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9875), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(6037), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4243), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27491] = 27, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9918), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(6039), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4243), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27607] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10001), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27721] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11092), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27835] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10009), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27949] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9947), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28063] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9674), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28177] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9029), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28291] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10349), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28405] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5915), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28473] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9286), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28587] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10082), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28701] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11130), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28815] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9896), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [28929] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10352), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29043] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9679), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29157] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8089), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6043), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6041), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29339] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9989), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29453] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10964), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6029), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29635] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10006), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29749] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11165), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29863] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8060), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29977] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9861), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30091] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5942), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30159] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9950), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30273] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10945), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30387] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9809), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30501] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9683), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30615] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6047), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6045), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30683] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9792), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30797] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11051), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30911] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10116), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31025] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9646), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31139] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9651), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31253] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9849), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31367] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11127), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31481] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10944), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31595] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10958), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31709] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11149), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31823] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10966), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31937] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10968), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32051] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9744), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32165] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5932), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32233] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11074), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32347] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9753), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32461] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(11156), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32575] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9104), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32689] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11003), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32803] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11017), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32917] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9800), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33031] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9687), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33145] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9645), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33259] = 27, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(6049), 1, + sym_identifier, + ACTIONS(6055), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(7817), 1, + sym_attribute, + STATE(7819), 1, + sym_subscript, + STATE(10309), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(6053), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(6051), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33375] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5915), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [33443] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11046), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33557] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9412), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33671] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9964), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33785] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5909), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [33853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6033), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6035), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [33921] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8090), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34035] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8091), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34149] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9719), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34263] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11111), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34377] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10986), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34491] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6059), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6057), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34559] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10256), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6025), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6027), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34741] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11095), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34855] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(10552), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34969] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10797), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6047), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6045), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [35151] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10321), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35265] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10404), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35379] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8082), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35493] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8083), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35607] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8088), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35721] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8036), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35835] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8094), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35949] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8104), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36063] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, + anon_sym_not, + ACTIONS(4297), 1, + anon_sym_lambda, + ACTIONS(4299), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6934), 1, + sym_primary_expression, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8110), 1, + sym_expression, + STATE(12710), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36177] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8066), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36291] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8067), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36405] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8068), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36519] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8053), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36633] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8069), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36747] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8070), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36861] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(4262), 1, + anon_sym_lambda, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4270), 1, + anon_sym_await, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6938), 1, + sym_primary_expression, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(8071), 1, + sym_expression, + STATE(12631), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36975] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8014), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37089] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8015), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37203] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8016), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37317] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8020), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37431] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8017), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37545] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8012), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37659] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4206), 1, + anon_sym_not, + ACTIONS(4208), 1, + anon_sym_lambda, + ACTIONS(4210), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6913), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(8019), 1, + sym_expression, + STATE(12672), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5932), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37841] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9682), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37955] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5917), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [38023] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9617), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38137] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(8052), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38251] = 27, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(6055), 1, + anon_sym_await, + ACTIONS(6061), 1, + sym_identifier, + STATE(7391), 1, + sym_string, + STATE(7408), 1, + sym_primary_expression, + STATE(7653), 1, + sym_call, + STATE(7655), 1, + sym_attribute, + STATE(7658), 1, + sym_subscript, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10309), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(6065), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(6063), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38367] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9618), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38481] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10694), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38595] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9622), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38709] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10313), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38823] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(8053), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38937] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9626), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39051] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9625), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39165] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(9628), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39279] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9655), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39393] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9553), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39507] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9607), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39621] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(10783), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39735] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9616), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39849] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(10014), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39963] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(10071), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40077] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(8020), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40191] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(10283), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40305] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9721), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40419] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10491), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5883), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40535] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9599), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40649] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9592), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40763] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9624), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40877] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(7977), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40991] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7977), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41105] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(6067), 1, + sym_identifier, + ACTIONS(6069), 1, + anon_sym_await, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7355), 1, + sym_primary_expression, + STATE(7725), 1, + sym_attribute, + STATE(7728), 1, + sym_subscript, + STATE(10219), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4867), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4865), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41221] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9591), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41335] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9872), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41449] = 26, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5051), 1, + anon_sym_not, + ACTIONS(5053), 1, + anon_sym_lambda, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5655), 1, + anon_sym_await, + STATE(7306), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + STATE(9731), 1, + sym_expression, + STATE(12516), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(5651), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5649), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9647), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41563] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_not, + ACTIONS(4233), 1, + anon_sym_lambda, + ACTIONS(4235), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6933), 1, + sym_primary_expression, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(8092), 1, + sym_expression, + STATE(12535), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41677] = 26, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4331), 1, + anon_sym_not, + ACTIONS(4335), 1, + anon_sym_lambda, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4345), 1, + anon_sym_await, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7072), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + STATE(9028), 1, + sym_expression, + STATE(12505), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4311), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4307), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9020), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41791] = 32, + ACTIONS(105), 1, + anon_sym_if, + ACTIONS(111), 1, + anon_sym_for, + ACTIONS(113), 1, + anon_sym_while, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5987), 1, + sym_identifier, + ACTIONS(5989), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_assert, + ACTIONS(6071), 1, + anon_sym_async, + STATE(7586), 1, + sym_parenthesized_expression, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(4731), 3, + sym_if_statement, + sym_for_statement, + sym_while_statement, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 16, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_concatenated_string, + sym_await, + [41917] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(6069), 1, + anon_sym_await, + ACTIONS(6073), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(7785), 1, + sym_attribute, + STATE(7786), 1, + sym_subscript, + STATE(10219), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(6077), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(6075), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6059), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6057), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42101] = 26, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5119), 1, + anon_sym_not, + ACTIONS(5121), 1, + anon_sym_lambda, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_await, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7339), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + STATE(9722), 1, + sym_expression, + STATE(12699), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(5447), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5445), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9715), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42215] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(10719), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42329] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9597), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42443] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(9432), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6043), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6041), 47, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42625] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6017), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_except_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6015), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42693] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(9580), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42807] = 26, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(9890), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4197), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42921] = 26, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_not, + ACTIONS(4367), 1, + anon_sym_lambda, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7315), 1, + sym_primary_expression, + STATE(8051), 1, + sym_expression, + STATE(12475), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8047), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43035] = 26, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_not, + ACTIONS(85), 1, + anon_sym_lambda, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1592), 1, + anon_sym_await, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7107), 1, + sym_primary_expression, + STATE(7970), 1, + sym_expression, + STATE(12752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(1581), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1575), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7969), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43149] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(11120), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43263] = 27, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4675), 1, + anon_sym_not, + ACTIONS(4677), 1, + anon_sym_lambda, + ACTIONS(4679), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5673), 1, + sym_identifier, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7317), 1, + sym_primary_expression, + STATE(10485), 1, + sym_expression, + STATE(12708), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4199), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(5881), 2, + anon_sym_mut, + anon_sym_out, + ACTIONS(4197), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(8056), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43379] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(8036), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43493] = 26, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_not, + ACTIONS(5235), 1, + anon_sym_lambda, + ACTIONS(5367), 1, + sym_identifier, + ACTIONS(5377), 1, + anon_sym_await, + STATE(7318), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + STATE(9676), 1, + sym_expression, + STATE(12620), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(5375), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5373), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(9667), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43607] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1538), 1, + anon_sym_lambda, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1548), 1, + anon_sym_await, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4837), 1, + anon_sym_not, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7325), 1, + sym_primary_expression, + STATE(10963), 1, + sym_expression, + STATE(12486), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(8041), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43721] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6081), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [43788] = 5, + ACTIONS(5689), 1, + anon_sym_finally, + STATE(4800), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6083), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [43859] = 5, + ACTIONS(5701), 1, + anon_sym_finally, + STATE(4541), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6089), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [43930] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(4799), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6091), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6093), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44001] = 5, + ACTIONS(5689), 1, + anon_sym_finally, + STATE(5158), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6089), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44072] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(5243), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6095), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6099), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6101), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44210] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(5246), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44281] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(5800), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6107), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6113), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6111), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44419] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6099), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6101), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44486] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4688), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44557] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4576), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6117), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6115), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6081), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44695] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4487), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6121), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6119), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44766] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(5697), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6121), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6119), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6113), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6111), 46, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44904] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(4779), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6117), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6115), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44975] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4621), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6125), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6123), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45046] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4687), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6095), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45117] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4801), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6107), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45188] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4640), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6129), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6127), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45259] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(4959), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6125), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6123), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45330] = 5, + ACTIONS(5687), 1, + anon_sym_else, + STATE(5052), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6129), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6127), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45401] = 5, + ACTIONS(5697), 1, + anon_sym_else, + STATE(4536), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6091), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6093), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45472] = 5, + ACTIONS(5701), 1, + anon_sym_finally, + STATE(4582), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6083), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6131), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6133), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6135), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6137), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45675] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6131), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6133), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45741] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6135), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6137), 45, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6145), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6149), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6147), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6157), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6155), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6161), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6161), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6149), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6147), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6165), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6163), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6169), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6173), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6171), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6177), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6177), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6169), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6181), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6185), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6183), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6189), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6197), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6195), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6201), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6199), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6201), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6199), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6189), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6205), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6209), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6207), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6213), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6211), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6217), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6215), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48017] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6225), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6229), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6229), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6217), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6215), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48342] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6233), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6231), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6241), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6239), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6245), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6243), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6245), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6243), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6249), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6247), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6253), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6251), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6257), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6261), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6259), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6265), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6269), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6273), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6271), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6273), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6271), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6265), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6277), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6275), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6281), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6279), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6285), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49707] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6289), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6293), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6291), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6293), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6291), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6285), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6297), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6295), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6301), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6305), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6303), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6309), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6307), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6309), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6307), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6301), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6313), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6311), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6317), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6315), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6321), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6319), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6329), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6327), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6333), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6331), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6333), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6331), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6321), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6319), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6337), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6335), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6341), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6339), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6345), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6349), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6353), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6357), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6355), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6357), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6355), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6349), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6361), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6359), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6365), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6363), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6369), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6367), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6371), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6377), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6377), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6369), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6367), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6381), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6379), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6385), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6389), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6393), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6391), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6393), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6391), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6385), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6397), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6395), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6401), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6399), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6405), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52632] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6413), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6411), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6417), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52892] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6417), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6405), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53152] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6421), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6425), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6429), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6427), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6433), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6437), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6435), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6441), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6439), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6445), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6443), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6445), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6443), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6437), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6435), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6449), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6447), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6453), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6451), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6457), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6455), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6461), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6459), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6465), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6463), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6469), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6467), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6473), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6471), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6473), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6471), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6465), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6463), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6477), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6475), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54387] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6479), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6483), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6493), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6491), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6495), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6499), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6405), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6505), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6503), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6509), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6507), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55037] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6513), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6511), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6413), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6411), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6417), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6521), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6519), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6523), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6529), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6417), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6535), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6405), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6539), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6545), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6543), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6549), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6547), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6551), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6555), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6561), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6559), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6357), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6355), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6563), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6409), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6407), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6567), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6573), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6571), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6581), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6579), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6585), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6583), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6589), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6595), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6601), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6599), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6421), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6595), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6425), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6089), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6429), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6427), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6433), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57702] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5683), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6567), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6437), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6435), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6441), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6439), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6603), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6445), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6443), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6609), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6607), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6613), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6611), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6615), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6617), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6621), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6629), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6627), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6633), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6631), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6637), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6635), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6643), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6643), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6647), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6651), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6655), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6661), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6659), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6665), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6663), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6667), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6445), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6443), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6673), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6671), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6675), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6679), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6683), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6523), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6695), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6701), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6699), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6705), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6703), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6437), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6435), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6709), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6707), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6449), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6447), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6713), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6711), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6719), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6725), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6723), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6453), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6451), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6083), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6729), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6727), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61017] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6483), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6539), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61342] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6719), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6457), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6455), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6735), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6461), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6459), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6735), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6701), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6699), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6683), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6695), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [62187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6743), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6465), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6463), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6469), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6467), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6749), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6747), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6751), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6753), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6473), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6471), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6757), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6755), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6761), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6759), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62707] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6765), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6763), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6765), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6763), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [62902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [62967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6775), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6781), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6779), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6783), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6473), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6471), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6465), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6463), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6789), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6787), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6477), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6475), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6793), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6791), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6795), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6801), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6799), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6805), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6803), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6809), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6807), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6815), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [63942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6825), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6825), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6815), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6829), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6827), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6837), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6835), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6839), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6845), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6843), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6845), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6843), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6847), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6851), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [64982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6479), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6855), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6705), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6703), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6867), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6349), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65632] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6871), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6877), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6875), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6879), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65892] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6879), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [65957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6885), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6883), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6889), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6887), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6893), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6891), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66152] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6897), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6895), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6901), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6899), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6911), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6917), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6915), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6917), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6915), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6921), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6919), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6923), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6923), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [66997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6929), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6927), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6933), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6931), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6933), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6931), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6937), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6935), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6749), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6747), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6941), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6939), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67387] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6945), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6943), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6949), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6947), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6953), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6951), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6957), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6955), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6957), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6955), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6961), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6959), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6963), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6969), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6967), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6969), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6967), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [67972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6971), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68037] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6961), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6959), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6977), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6975), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6981), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6979), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6983), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6993), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6991), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6983), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6997), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6995), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7001), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6999), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7005), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7003), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [68947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6757), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6755), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7013), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7011), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7013), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7011), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7015), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6761), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6759), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7019), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7015), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7023), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7027), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7023), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6765), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6763), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [69987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7035), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6765), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6763), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7039), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7043), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7049), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7047), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7053), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7051), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7055), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7059), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7063), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7069), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7067), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7073), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7071), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70702] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7077), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7075), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7081), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7079), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7085), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7083), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7063), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [70962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7055), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7085), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7083), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7089), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7093), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7091), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7093), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7091), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7089), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7097), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7095), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7099), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7103), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7109), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7107), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [71937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7125), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7123), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7129), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7127), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7131), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7137), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7135), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7141), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7139), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7147), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7153), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7147), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6361), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6359), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [72977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7157), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7155), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7161), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7165), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7163), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7169), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7173), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7171), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7177), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7185), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7183), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7189), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7189), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [73952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74017] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7193), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7197), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7195), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7199), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7201), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7205), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7207), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74342] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7205), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6775), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7215), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7225), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7229), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7229), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7225), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [74992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7233), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7231), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7235), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7237), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7241), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7239), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7243), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7249), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7247), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7253), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7251), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7243), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7257), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7215), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7257), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75707] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7259), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7261), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7265), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7269), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [75967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7269), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7265), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6781), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6779), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7275), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7277), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7281), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7279), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7285), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [76942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7295), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7297), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6789), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6787), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6365), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6363), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6369), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6367), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6371), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6377), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6665), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6663), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6377), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6709), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6707), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6793), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6791), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7301), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6795), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7305), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7303), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7307), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7313), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7311), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [77982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7315), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7319), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7321), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7323), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7325), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7329), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7327), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6801), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6799), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7337), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7335), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6805), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6803), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78632] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7341), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7339), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7349), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78892] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [78957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7353), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6809), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6807), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7355), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7357), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79152] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7353), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7355), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7357), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7359), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7361), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7365), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7363), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7367), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7373), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7371), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7377), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7379), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [79997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7377), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7379), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7385), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6813), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6811), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7389), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7389), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80387] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6825), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6825), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6823), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7391), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7393), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7385), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7395), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7401), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7399), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7405), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7407), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7407), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [80972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7413), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7411), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81037] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6829), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6827), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7417), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6837), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6835), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7421), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7421), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7425), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7427), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7429), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6845), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6843), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7433), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6845), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6843), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7433), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7425), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7435), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7437), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7439), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [81947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7443), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7447), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7453), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7451), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7447), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7439), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7455), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7457), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7459), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7461), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7471), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7473), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7475), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7479), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7475), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [82987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7491), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7493), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7495), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7499), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83702] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7507), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7509), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7511), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7511), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7517), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7515), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [83962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7499), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7521), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7519), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7523), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7529), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7529), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7537), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7535), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7539), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7543), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7549), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7547), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7543), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [84937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7551), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7555), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7559), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7563), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7569), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7567), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7573), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7571), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7581), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7579), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6877), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6875), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7589), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7599), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [85977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7599), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7603), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7607), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7617), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7615), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7621), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7621), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7589), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [86952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7627), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7629), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87017] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7631), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7635), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87342] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7645), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7643), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7647), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7653), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7651), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7647), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6885), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6883), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [87992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7655), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7659), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7661), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7663), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6889), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6887), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7667), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6667), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88707] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6783), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6893), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6891), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6897), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6895), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [88967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6855), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7035), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7675), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6901), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6899), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7675), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7043), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7679), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7683), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6615), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6617), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [89942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6735), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6909), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6907), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6735), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6917), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6915), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7695), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7699), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7703), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7705), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7707), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6917), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6915), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7707), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7699), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [90982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7711), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7719), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7723), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6867), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7723), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7727), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7729), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7735), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91632] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6871), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7743), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91892] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7747), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [91957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7747), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6921), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6919), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7735), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92152] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [92282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7015), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7015), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7023), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6929), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6927), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7023), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7755), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7757), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7759), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [92997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7763), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6933), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6931), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7767), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7769), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6933), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6931), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93387] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7019), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7775), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7775), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7783), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7787), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [93972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6937), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6935), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94037] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7791), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7793), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7795), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7797), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7799), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7801), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7803), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7805), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6941), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6939), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6673), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6671), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6369), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6367), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6945), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6943), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [94947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6949), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6947), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7815), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6953), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6951), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7823), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7825), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6957), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6955), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7827), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7829), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6957), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6955), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6961), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6959), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7835), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6969), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6967), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [95987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7835), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6713), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6711), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6969), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6967), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6961), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6959), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7839), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6977), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6975), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7843), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7845), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6981), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6979), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7847), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7847), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6381), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6379), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96702] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6385), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7851), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7855), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7867), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6493), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6491), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7867), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7871), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7879), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7883), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6989), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6987), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7883), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7887), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7889), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7891), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7893), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7895), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6993), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6991), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7907), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7907), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7895), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6997), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6995), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7911), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7915), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7917), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7001), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6999), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7923), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7005), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7003), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7931), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7933), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7935), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7935), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7939), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7941), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7943), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7945), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [99952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7947), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100017] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7009), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7007), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7947), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7955), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7013), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7011), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100342] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7955), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7959), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7013), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7011), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7963), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7967), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7971), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7975), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6725), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6723), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7975), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7979), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7983), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6505), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6503), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7983), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7979), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7987), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7989), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7991), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7993), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7999), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101707] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8003), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8005), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8007), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7999), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [101967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6509), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6507), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8011), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8013), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8015), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8003), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8005), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6513), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6511), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8019), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8025), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8023), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8027), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8025), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8023), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8027), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6499), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8035), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6551), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [102942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8035), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8039), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6555), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8043), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6563), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6567), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8051), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8053), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [103982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6595), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8055), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8059), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6595), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8063), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6567), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104632] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6603), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104892] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [104957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105152] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8075), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8083), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8091), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8093), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8095), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6643), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8095), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6643), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8099), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8103), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [105997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8107), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8111), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8113), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6521), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6519), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106387] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7049), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7047), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8119), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8123), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7053), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7051), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8123), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6647), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6651), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [106972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8127), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107037] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7069), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7067), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8131), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6655), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8135), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8135), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7073), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7071), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7077), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7075), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8143), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6675), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8143), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8147), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7081), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7079), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [107947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8151), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8155), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7085), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7083), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8159), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8161), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6679), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8163), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7085), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7083), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8163), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8167), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7089), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8167), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8175), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8177), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7093), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7091), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8179), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [108987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7093), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7091), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7089), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7097), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7095), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8187), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8189), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7109), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7107), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109702] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8191), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8193), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8195), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109832] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1497), 11, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(8199), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [109968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8203), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8207), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8207), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6719), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8215), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8215), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6529), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8223), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8225), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7113), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7111), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [110943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6719), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7125), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7123), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8231), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8233), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7129), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7127), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7137), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7135), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8235), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8237), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8239), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8241), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8243), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7141), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7139), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [111983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6743), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6751), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6753), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8251), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8253), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8251), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8253), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6815), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8255), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8257), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [112958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8259), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8261), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6357), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6355), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8263), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8265), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8267), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8269), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7145), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8271), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8263), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8265), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8275), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8277), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8279), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8281), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8283), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8285), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8287), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8289), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8295), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8297), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [113998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8299), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8301), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8299), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8301), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6815), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8287), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8289), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8303), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8305), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6839), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6847), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8311), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8313), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [114973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8315), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6851), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8315), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8319), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8321), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8323), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8325), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8327), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8329), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7161), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8331), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8335), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8337), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [115948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [116143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8347), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8349), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8351), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8353), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6879), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8351), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8353), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6879), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [116728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8359), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8361), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6911), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8363), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8365), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6923), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [116988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7165), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7163), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7169), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8371), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8373), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6923), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8375), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8377), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6963), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8375), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8377), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8371), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8373), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8379), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8383), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8385), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8387), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8389), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8391), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8393), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7173), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7171), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [117963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6971), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7177), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8399), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8401), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8405), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6983), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8405), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6983), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8407), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7027), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [118938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8411), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8413), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7185), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7183), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8415), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8417), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7189), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8415), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8417), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7039), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8419), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8421), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7189), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8423), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8425), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7055), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8423), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8425), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8419), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8421), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8427), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8429), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8431), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8433), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8435), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8437), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [119978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7181), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7059), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8439), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7193), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8443), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8443), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7197), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7195), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8447), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7063), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8451), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8453), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7205), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8451), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8453), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8447), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8455), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8457), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8459), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8461), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [120953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7205), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7063), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7055), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7225), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7099), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8467), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8471), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8473), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8475), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8479), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8481), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7229), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8483), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [121993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7103), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8491), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8493), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8495), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7229), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8495), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7225), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8483), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7233), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7231), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8499), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [122968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7241), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7239), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7249), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7247), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8507), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8509), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8511), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8511), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7253), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7251), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8515), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8519), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8521), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8523), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7257), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8527), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8529), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [123943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8531), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6545), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6543), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7257), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6549), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6547), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7265), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8539), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8543), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8543), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7269), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7131), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7269), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8547), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8549), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [124983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7265), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8551), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7281), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7279), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8555), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7147), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8555), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7285), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8559), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6561), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6559), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8563), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8563), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8559), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8567), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8571), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8573), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [125958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7147), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8575), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8579), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8581), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8587), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8589), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6573), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6571), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7289), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7119), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [126998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7199), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7201), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8595), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6581), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6579), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8599), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8603), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6585), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6583), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8603), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7207), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8607), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7215), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [127973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8611), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7235), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7237), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7243), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7243), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7215), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8607), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7259), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7261), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7275), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7277), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [128948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7295), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7297), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6389), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6393), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6391), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6495), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6393), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6391), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6083), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6385), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6397), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6395), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6401), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6399), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6729), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6727), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8025), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8023), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8615), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8617), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6589), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8025), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8023), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7307), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [129988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8619), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8621), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7315), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7319), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7321), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7323), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7325), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7331), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7355), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7357), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7355), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7357), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7359), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7361), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7367), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7379), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7379), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [130963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7391), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7393), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7395), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8627), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8629), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7407), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7407), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8631), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7427), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7429), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7435), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7437), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7439), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7443), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7447), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7447), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7439), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7455), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7457), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7459), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7461), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [131938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8631), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8635), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7471), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7473), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7475), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8639), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8635), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8643), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7475), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8647), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [132978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7491), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7493), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7499), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8655), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7507), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7509), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7511), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7511), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7499), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [133953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7523), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7539), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8659), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8661), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7543), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8663), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8667), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7543), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7551), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7555), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [134993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7559), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8671), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7563), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8663), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7599), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7599), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8675), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8679), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7603), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6601), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6599), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [135968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7607), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7627), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7629), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8683), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7631), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7635), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8691), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8695), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [136943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8695), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8683), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8699), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8703), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8705), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8707), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8711), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7647), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7647), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8719), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [137983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7655), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7659), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7661), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7663), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7667), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7675), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8723), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7675), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7679), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7683), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [138958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8723), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6089), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6087), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8711), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7695), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7699), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7703), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7705), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7707), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7707), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7699), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7711), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7719), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7723), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7723), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [139998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7727), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7729), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7735), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8727), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8729), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7743), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7747), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7747), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7735), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [140973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8735), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5683), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(5685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8739), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7755), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7757), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7759), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7763), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7767), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7769), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7775), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [141948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7775), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7783), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7787), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7791), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7793), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7301), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8743), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8747), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8751), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8753), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8755), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8757), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7795), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7797), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [142988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7799), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7801), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7803), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7805), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7807), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7305), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7303), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7815), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7823), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7825), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7827), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7829), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [143963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7835), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7835), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7839), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7843), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7845), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7847), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7847), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7851), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7855), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7867), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7867), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7869), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [144938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7871), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7879), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7883), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8759), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7883), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7887), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7889), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7891), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7893), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7895), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7907), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7907), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7895), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [145978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7911), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7915), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7917), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7923), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7931), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7933), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7935), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7935), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7939), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7941), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [146953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7943), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7945), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7947), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7947), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7955), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7955), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7959), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7963), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7967), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7971), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7975), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7975), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7979), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7983), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7983), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [147993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7979), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7987), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7989), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7991), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7993), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7995), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8007), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8767), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8769), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8011), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8013), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8015), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8019), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8027), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [148968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8027), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8035), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8035), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8039), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8043), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8051), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8053), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8055), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8059), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8063), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [149943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8771), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6609), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6607), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8759), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8075), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8775), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8083), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6613), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6611), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [150983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8091), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8093), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8095), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8095), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8783), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8787), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8099), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8103), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8107), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8787), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7157), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7155), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [151958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8111), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8113), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7313), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7311), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7329), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7327), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8791), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8793), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8795), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8797), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8119), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8121), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8799), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8801), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8803), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8805), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8123), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8123), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8807), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7337), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7335), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7341), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7339), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [152998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8127), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8131), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8135), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8135), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8815), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8143), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8143), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [153973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8819), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8147), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8151), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8155), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8159), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8161), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8823), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8825), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7349), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8827), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8829), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8163), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8163), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8167), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7353), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [154948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8167), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8175), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8177), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8831), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8179), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7353), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8183), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8187), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8189), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8835), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8839), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8191), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8193), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [155988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8839), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8835), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8195), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8203), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8207), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8843), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8845), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8207), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8847), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8215), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8851), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8855), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8215), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [156963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8223), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8225), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8227), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8229), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8231), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8233), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8855), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8235), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8237), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8239), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8241), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8847), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8243), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8245), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8859), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8863), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [157938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8247), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8249), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7345), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8251), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8253), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8251), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8253), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8255), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8257), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8259), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8261), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8869), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8867), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8871), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8263), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8265), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8267), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8269), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8271), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8273), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8263), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8265), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [158978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8275), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8277), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8879), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8883), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7365), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7363), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8279), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8281), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8283), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8285), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8883), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8287), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8289), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8871), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7373), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7371), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8887), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8889), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [159953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8891), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8893), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8295), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8297), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8895), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8299), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8301), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8299), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8301), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8287), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8289), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7377), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8907), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8911), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8291), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8293), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8303), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8305), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [160993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8911), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7377), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7375), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8899), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8311), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8313), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8315), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8315), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8317), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8915), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8917), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7385), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6621), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [161968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7389), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8307), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8309), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8319), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8321), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8323), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8325), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8327), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8329), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8331), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8333), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6629), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6627), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8335), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8337), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8923), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7389), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7387), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [162943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7385), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7383), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8347), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8349), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8351), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8353), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7401), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7399), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8351), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8353), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8931), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8933), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8935), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8339), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8341), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8359), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8361), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8939), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8941), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8363), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8365), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8943), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8945), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [163983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8369), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6633), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6631), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8947), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8371), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8373), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8375), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8377), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8375), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8377), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8371), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8373), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8379), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8381), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8383), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8385), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7405), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7403), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8955), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8387), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8389), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8959), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [164958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7413), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7411), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8959), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8391), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8393), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8399), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8401), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8405), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8947), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8405), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8397), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8407), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8409), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8411), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8413), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8415), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8417), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [165998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8415), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8417), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8419), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8421), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8423), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8425), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8963), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8423), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8425), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8419), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8421), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7417), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7415), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8427), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8429), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6637), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6635), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8431), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8433), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8435), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8437), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8439), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8441), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8443), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7421), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [166973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8443), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8445), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8447), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8451), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8453), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8451), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8453), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8447), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8449), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8455), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8457), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8459), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8461), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8971), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8463), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8465), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8975), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7421), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7419), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [167948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8975), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8467), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8469), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8471), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8473), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8475), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8477), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7425), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8479), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8481), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8979), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8483), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8983), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8987), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8989), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7433), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8991), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8993), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [168988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8491), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8493), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7433), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7431), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7425), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7423), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8497), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7453), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7451), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9003), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9005), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8483), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8485), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9007), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8487), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8489), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9007), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [169963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7479), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8499), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8501), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8507), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8509), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9011), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9013), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8511), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9015), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8511), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8513), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8505), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [170938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8515), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8519), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8521), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9019), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8523), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8525), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8527), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8529), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9019), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8531), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8533), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9023), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8539), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8541), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9027), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9027), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8543), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9023), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [171978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9031), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9035), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8543), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8545), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8537), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9039), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8547), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8549), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8551), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8553), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9043), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8555), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7483), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8555), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8557), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8559), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8563), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [172953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8563), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8565), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9047), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8559), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8561), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8567), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8569), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9039), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9051), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9053), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9055), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8571), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8573), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9059), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9063), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8575), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8577), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8579), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8581), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9063), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8587), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8589), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [173993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9055), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8593), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9067), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9071), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8583), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8585), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8595), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8597), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8599), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8601), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8603), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8603), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8605), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8607), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8611), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8613), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [174968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8607), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8609), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8615), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8617), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8619), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8621), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7517), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7515), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8625), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8627), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8629), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8631), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8631), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8633), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9083), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8635), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8639), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8641), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8635), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8637), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [175943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8643), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8645), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9087), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8647), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8649), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9087), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8651), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8653), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7521), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7519), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8655), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8657), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8659), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8661), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8663), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [176983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9095), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8667), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8669), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9099), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9103), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9107), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8671), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8673), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9107), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9099), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8663), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8665), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8675), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8677), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9111), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9113), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9115), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8679), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8681), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [177958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8683), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9123), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7529), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9131), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9135), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8691), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8693), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8695), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9135), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8695), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8697), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7529), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7527), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9123), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [178998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8683), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8685), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8687), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8689), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9139), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8699), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8701), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9143), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9147), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8703), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8705), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8707), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8709), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8711), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9151), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8719), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8721), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [179973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8723), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8723), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8725), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8711), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8713), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9159), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9161), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9163), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8717), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9163), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8727), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8729), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9151), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [180948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8735), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8737), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9167), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8739), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8741), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8731), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8733), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8743), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8745), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7537), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7535), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8747), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8749), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8751), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8753), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8755), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8757), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8759), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [181988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8767), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8769), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9175), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9177), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8771), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8773), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9179), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8759), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8761), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9179), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8763), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8765), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8775), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8777), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8783), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8785), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [182963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8787), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8787), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8789), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8779), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8781), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8791), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8793), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8795), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8797), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8799), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8801), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8803), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8805), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8807), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8809), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9183), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9187), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9189), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8815), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8817), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [183938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9191), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9193), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9195), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8819), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8821), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8811), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8813), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9199), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9201), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8823), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8825), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8827), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8829), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8831), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8833), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8835), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9203), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8839), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8839), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8841), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7549), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7547), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [184978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9203), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9195), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9207), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9215), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9219), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9223), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9225), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6145), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6143), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8835), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8837), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8843), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8845), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8847), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8851), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8853), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8855), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [185953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8855), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8857), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8847), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8849), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8859), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8861), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8863), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8865), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8871), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8879), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8881), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8883), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8883), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8885), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8871), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8873), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8875), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8877), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8887), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8889), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8891), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8893), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8895), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8897), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [186993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8907), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8909), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8911), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8911), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8913), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8899), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8901), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8903), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8905), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8915), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8917), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8923), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8925), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8929), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [187968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8921), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8931), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8933), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8935), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8937), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8939), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8941), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8943), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8945), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8947), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6149), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6147), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8955), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8957), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8959), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8959), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8961), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8947), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8949), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [188943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8951), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8953), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8963), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8965), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8971), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8973), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8975), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6157), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6155), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6161), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8975), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8977), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6161), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6159), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8967), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8969), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8979), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8981), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8983), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8985), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [189983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6149), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6147), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8987), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8989), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6153), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6151), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6165), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6163), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8991), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8993), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8995), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8997), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6169), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6173), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6171), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6177), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6177), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6175), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9003), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9005), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9007), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [190958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9007), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9009), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6169), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6167), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9001), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6181), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6179), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6185), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6183), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9011), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9013), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9015), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9017), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9019), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6189), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9019), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9021), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9023), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7569), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7567), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6197), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6195), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [191998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9027), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9027), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9029), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9023), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9025), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9031), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9033), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192258] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6201), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6199), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7573), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7571), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9035), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9037), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9039), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9043), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9045), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6201), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6199), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9047), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9049), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7581), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7579), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6189), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6187), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [192973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9039), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9041), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9051), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9053), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6193), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6191), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6205), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6203), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6209), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6207), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193298] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6213), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6211), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9055), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9059), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9061), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9063), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7589), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6217), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6215), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9063), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9065), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193818] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [193948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9055), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9057), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6225), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6223), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194078] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6229), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9067), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9069), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9071), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9073), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6229), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6227), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194338] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6217), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6215), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7617), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7615), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194728] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6221), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6219), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6233), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6231), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7621), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [194988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9083), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9085), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9087), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9087), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9089), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9077), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7621), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7619), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9079), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9081), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9095), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9097), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6241), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6239), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6245), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6243), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9099), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7589), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7587), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6245), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6243), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [195963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9103), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9105), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9107), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9107), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9109), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9099), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9101), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9111), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9113), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9115), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9117), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6237), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6235), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9123), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7595), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6249), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6247), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6253), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6251), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [196938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6257), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6255), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197003] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6261), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6259), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9131), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9133), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9135), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197198] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9135), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9137), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9123), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9125), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6265), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9127), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9129), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9139), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9141), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197588] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6269), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6267), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9143), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9145), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197718] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9147), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9149), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6273), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6271), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7645), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7643), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6273), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6271), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [197978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9151), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9159), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9161), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6265), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6263), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9163), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9163), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9165), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9151), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9153), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6277), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6275), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9155), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9157), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6281), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6279), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6285), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6289), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6287), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9167), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9169), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [198953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9175), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9177), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9179), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6293), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6291), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9179), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9181), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9173), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9183), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9185), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9187), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9189), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9191), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9193), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9195), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6293), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6291), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199798] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6285), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6283), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6297), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6295), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6301), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [199993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6305), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6303), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6309), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6307), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6309), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6307), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6301), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6299), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6313), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6311), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6317), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6315), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6321), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6319), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6661), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6659), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6329), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6327), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6333), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6331), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200838] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6515), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6517), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6333), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6331), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [200968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9199), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9201), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9203), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9203), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9205), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9195), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9197), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9207), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9209), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201358] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9215), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9217), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6321), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6319), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7653), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(7651), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6325), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6323), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6337), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6335), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6341), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6339), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6345), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6343), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6349), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6347), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [201943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6353), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(6351), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9219), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9221), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9213), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9223), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(9225), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8869), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8867), 44, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_comptime, + anon_sym_assert, + anon_sym___comptime_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym___extension, + anon_sym___mlir_region, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_fn, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [202333] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9227), 1, + sym_identifier, + ACTIONS(9229), 1, + anon_sym_LPAREN, + ACTIONS(9231), 1, + anon_sym_STAR, + ACTIONS(9237), 1, + anon_sym_LBRACK, + ACTIONS(9239), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7954), 1, + sym_subscript, + STATE(7960), 1, + sym_list_splat_pattern, + STATE(7962), 1, + sym_attribute, + STATE(8008), 1, + sym_primary_expression, + STATE(11163), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9235), 2, + anon_sym_match, + anon_sym_type, + STATE(11172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5179), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9233), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [202441] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9227), 1, + sym_identifier, + ACTIONS(9229), 1, + anon_sym_LPAREN, + ACTIONS(9231), 1, + anon_sym_STAR, + ACTIONS(9237), 1, + anon_sym_LBRACK, + ACTIONS(9239), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7954), 1, + sym_subscript, + STATE(7960), 1, + sym_list_splat_pattern, + STATE(7962), 1, + sym_attribute, + STATE(8008), 1, + sym_primary_expression, + STATE(11163), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9235), 2, + anon_sym_match, + anon_sym_type, + STATE(11172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5199), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9233), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [202549] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(9241), 1, + anon_sym_in, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8074), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5199), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [202658] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(9243), 1, + anon_sym_in, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8074), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5179), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [202767] = 10, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9245), 1, + anon_sym_for, + ACTIONS(9247), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9249), 2, + anon_sym_def, + anon_sym_fn, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [202843] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + anon_sym_LPAREN, + ACTIONS(9255), 1, + anon_sym_RPAREN, + ACTIONS(9257), 1, + anon_sym_STAR, + ACTIONS(9263), 1, + anon_sym_LBRACK, + ACTIONS(9265), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8037), 1, + sym_list_splat_pattern, + STATE(8038), 1, + sym_attribute, + STATE(8039), 1, + sym_subscript, + STATE(11984), 1, + sym_pattern, + STATE(12514), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9261), 2, + anon_sym_match, + anon_sym_type, + STATE(12392), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9259), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [202951] = 27, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5987), 1, + sym_identifier, + ACTIONS(5989), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_assert, + STATE(7586), 1, + sym_parenthesized_expression, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 16, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_concatenated_string, + sym_await, + [203061] = 11, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(1514), 1, + anon_sym_COLON, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(9267), 1, + sym_identifier, + ACTIONS(9269), 1, + sym_string_start, + STATE(12113), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 23, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [203139] = 10, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9271), 1, + anon_sym_for, + ACTIONS(9273), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9275), 2, + anon_sym_def, + anon_sym_fn, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [203215] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + anon_sym_LPAREN, + ACTIONS(9257), 1, + anon_sym_STAR, + ACTIONS(9263), 1, + anon_sym_LBRACK, + ACTIONS(9265), 1, + anon_sym_await, + ACTIONS(9277), 1, + anon_sym_RPAREN, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8037), 1, + sym_list_splat_pattern, + STATE(8038), 1, + sym_attribute, + STATE(8039), 1, + sym_subscript, + STATE(11984), 1, + sym_pattern, + STATE(12470), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9261), 2, + anon_sym_match, + anon_sym_type, + STATE(12392), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9259), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [203323] = 8, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(9283), 1, + anon_sym_COLON, + ACTIONS(9286), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6937), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [203394] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7988), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8180), 1, + sym_call, + STATE(12110), 1, + sym_pattern, + STATE(12613), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [203499] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + anon_sym_LPAREN, + ACTIONS(9257), 1, + anon_sym_STAR, + ACTIONS(9263), 1, + anon_sym_LBRACK, + ACTIONS(9265), 1, + anon_sym_await, + ACTIONS(9290), 1, + anon_sym_RPAREN, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8037), 1, + sym_list_splat_pattern, + STATE(8038), 1, + sym_attribute, + STATE(8039), 1, + sym_subscript, + STATE(12381), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9261), 2, + anon_sym_match, + anon_sym_type, + STATE(12392), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9259), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [203604] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9292), 1, + sym_identifier, + ACTIONS(9294), 1, + anon_sym_LPAREN, + ACTIONS(9296), 1, + anon_sym_STAR, + ACTIONS(9302), 1, + anon_sym_LBRACK, + ACTIONS(9304), 1, + anon_sym_RBRACK, + ACTIONS(9306), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8007), 1, + sym_primary_expression, + STATE(8057), 1, + sym_list_splat_pattern, + STATE(8058), 1, + sym_attribute, + STATE(8059), 1, + sym_subscript, + STATE(12396), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9300), 2, + anon_sym_match, + anon_sym_type, + STATE(12341), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9298), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [203709] = 10, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9267), 1, + sym_identifier, + ACTIONS(9269), 1, + sym_string_start, + STATE(12113), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1495), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [203784] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5987), 1, + sym_identifier, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(8361), 1, + sym_parenthesized_expression, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 16, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_concatenated_string, + sym_await, + [203891] = 26, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + ACTIONS(5989), 1, + anon_sym_LPAREN, + STATE(7586), 1, + sym_parenthesized_expression, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 16, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_concatenated_string, + sym_await, + [203998] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9290), 1, + anon_sym_RBRACK, + ACTIONS(9292), 1, + sym_identifier, + ACTIONS(9294), 1, + anon_sym_LPAREN, + ACTIONS(9296), 1, + anon_sym_STAR, + ACTIONS(9302), 1, + anon_sym_LBRACK, + ACTIONS(9306), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8007), 1, + sym_primary_expression, + STATE(8057), 1, + sym_list_splat_pattern, + STATE(8058), 1, + sym_attribute, + STATE(8059), 1, + sym_subscript, + STATE(12396), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9300), 2, + anon_sym_match, + anon_sym_type, + STATE(12341), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9298), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204103] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + anon_sym_LPAREN, + ACTIONS(9257), 1, + anon_sym_STAR, + ACTIONS(9263), 1, + anon_sym_LBRACK, + ACTIONS(9265), 1, + anon_sym_await, + ACTIONS(9304), 1, + anon_sym_RPAREN, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8037), 1, + sym_list_splat_pattern, + STATE(8038), 1, + sym_attribute, + STATE(8039), 1, + sym_subscript, + STATE(12381), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9261), 2, + anon_sym_match, + anon_sym_type, + STATE(12392), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9259), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204208] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7967), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8151), 1, + sym_call, + STATE(11853), 1, + sym_pattern, + STATE(12652), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204313] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7968), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8061), 1, + sym_call, + STATE(12193), 1, + sym_pattern, + STATE(12601), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204418] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7990), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8187), 1, + sym_call, + STATE(12259), 1, + sym_pattern, + STATE(12696), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204523] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7980), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8097), 1, + sym_call, + STATE(12112), 1, + sym_pattern, + STATE(12757), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204628] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7981), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8100), 1, + sym_call, + STATE(11815), 1, + sym_pattern, + STATE(12515), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204733] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7976), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8080), 1, + sym_call, + STATE(11855), 1, + sym_pattern, + STATE(12681), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204838] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7959), 1, + sym_string, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8031), 1, + sym_call, + STATE(11252), 1, + sym_pattern, + STATE(12458), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [204943] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7975), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8189), 1, + sym_call, + STATE(12262), 1, + sym_pattern, + STATE(12701), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205048] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7985), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8154), 1, + sym_call, + STATE(11962), 1, + sym_pattern, + STATE(12487), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205153] = 25, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(7986), 1, + sym_string, + STATE(8009), 1, + sym_primary_expression, + STATE(8158), 1, + sym_call, + STATE(11966), 1, + sym_pattern, + STATE(12537), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205258] = 11, + ACTIONS(9308), 1, + anon_sym_COMMA, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9313), 1, + anon_sym_COLON, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(9320), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 14, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [205334] = 24, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5189), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7729), 1, + sym_list_splat_pattern, + STATE(7730), 1, + sym_attribute, + STATE(7731), 1, + sym_subscript, + STATE(7998), 1, + sym_primary_expression, + STATE(8035), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5187), 2, + anon_sym_match, + anon_sym_type, + STATE(8032), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5185), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205436] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4125), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_where, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [205506] = 8, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(9286), 1, + anon_sym_EQ, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6937), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [205576] = 24, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7971), 1, + sym_list_splat_pattern, + STATE(7972), 1, + sym_attribute, + STATE(7973), 1, + sym_subscript, + STATE(8009), 1, + sym_primary_expression, + STATE(8074), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5213), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5209), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205678] = 11, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(9341), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 2, + anon_sym_DOT, + anon_sym_where, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9331), 13, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9334), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [205754] = 24, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9227), 1, + sym_identifier, + ACTIONS(9229), 1, + anon_sym_LPAREN, + ACTIONS(9231), 1, + anon_sym_STAR, + ACTIONS(9237), 1, + anon_sym_LBRACK, + ACTIONS(9239), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7954), 1, + sym_subscript, + STATE(7960), 1, + sym_list_splat_pattern, + STATE(7962), 1, + sym_attribute, + STATE(8008), 1, + sym_primary_expression, + STATE(11163), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9235), 2, + anon_sym_match, + anon_sym_type, + STATE(11172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9233), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205856] = 24, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_await, + ACTIONS(9345), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(7816), 1, + sym_list_splat_pattern, + STATE(7818), 1, + sym_attribute, + STATE(7820), 1, + sym_subscript, + STATE(8003), 1, + sym_primary_expression, + STATE(8074), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(5399), 2, + anon_sym_match, + anon_sym_type, + STATE(8101), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(5397), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [205958] = 24, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9292), 1, + sym_identifier, + ACTIONS(9294), 1, + anon_sym_LPAREN, + ACTIONS(9296), 1, + anon_sym_STAR, + ACTIONS(9302), 1, + anon_sym_LBRACK, + ACTIONS(9306), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8007), 1, + sym_primary_expression, + STATE(8057), 1, + sym_list_splat_pattern, + STATE(8058), 1, + sym_attribute, + STATE(8059), 1, + sym_subscript, + STATE(12396), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9300), 2, + anon_sym_match, + anon_sym_type, + STATE(12341), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9298), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [206060] = 24, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + anon_sym_LPAREN, + ACTIONS(9257), 1, + anon_sym_STAR, + ACTIONS(9263), 1, + anon_sym_LBRACK, + ACTIONS(9265), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8037), 1, + sym_list_splat_pattern, + STATE(8038), 1, + sym_attribute, + STATE(8039), 1, + sym_subscript, + STATE(12381), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9261), 2, + anon_sym_match, + anon_sym_type, + STATE(12392), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9259), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [206162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 34, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [206221] = 8, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(1514), 1, + anon_sym_COLON, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [206290] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9351), 1, + sym_identifier, + ACTIONS(9357), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7993), 1, + sym_attribute, + STATE(7994), 1, + sym_subscript, + STATE(8001), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4853), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9355), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9353), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [206389] = 23, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9359), 1, + sym_identifier, + ACTIONS(9365), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8009), 1, + sym_primary_expression, + STATE(8049), 1, + sym_attribute, + STATE(8050), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4853), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9363), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9361), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [206488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 34, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [206547] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4142), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4125), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_where, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [206612] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4142), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4125), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_where, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [206677] = 8, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(1514), 1, + anon_sym_COLON, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [206746] = 6, + ACTIONS(9378), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9373), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9380), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9376), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [206810] = 21, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7382), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [206904] = 6, + ACTIONS(9286), 1, + anon_sym_EQ, + ACTIONS(9388), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9386), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [206968] = 7, + ACTIONS(9308), 1, + anon_sym_COMMA, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9318), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9323), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [207034] = 7, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [207100] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207158] = 21, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(7388), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [207252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207310] = 7, + ACTIONS(9337), 1, + anon_sym_PIPE, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_where, + ACTIONS(9331), 14, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9334), 14, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207376] = 7, + ACTIONS(9337), 1, + anon_sym_PIPE, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_where, + ACTIONS(9399), 14, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9402), 14, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207500] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207616] = 21, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7362), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [207710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207884] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [207942] = 21, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(7338), 1, + sym_string, + STATE(7350), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [208036] = 21, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7412), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [208130] = 7, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1540), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1497), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [208196] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208254] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208486] = 21, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(7398), 1, + sym_string, + STATE(7413), 1, + sym_primary_expression, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [208580] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [208696] = 6, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9443), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9323), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9446), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [208760] = 6, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9308), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9323), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [208824] = 6, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9450), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9323), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9453), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [208888] = 6, + ACTIONS(9462), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9457), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9464), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9460), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [208952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [209010] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [209068] = 21, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(7456), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209162] = 21, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6954), 1, + sym_string, + STATE(7021), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209256] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [209314] = 21, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6956), 1, + sym_string, + STATE(7046), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209408] = 21, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6949), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209502] = 21, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7030), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209596] = 21, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(9382), 1, + anon_sym_not, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7343), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209690] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [209748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [209806] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7329), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209897] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7336), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [209988] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7457), 1, + sym_string, + STATE(7459), 1, + sym_primary_expression, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210079] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7343), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210170] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7035), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210261] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7451), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210352] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7457), 1, + sym_string, + STATE(7473), 1, + sym_primary_expression, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210443] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9482), 1, + sym_identifier, + ACTIONS(9488), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + STATE(8010), 1, + sym_attribute, + STATE(8011), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9486), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9484), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210538] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9490), 1, + sym_identifier, + ACTIONS(9496), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7221), 1, + sym_attribute, + STATE(7224), 1, + sym_subscript, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8005), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9494), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9492), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210633] = 6, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(9443), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9446), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [210696] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7392), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210787] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7397), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210878] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7398), 1, + sym_string, + STATE(7413), 1, + sym_primary_expression, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [210969] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7385), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211060] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7361), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211151] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7380), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211242] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7398), 1, + sym_string, + STATE(7401), 1, + sym_primary_expression, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211333] = 20, + ACTIONS(4585), 1, + anon_sym_LPAREN, + ACTIONS(4591), 1, + anon_sym_comptime, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym___mlir_type, + ACTIONS(4607), 1, + anon_sym_await, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(5647), 1, + anon_sym_STAR, + STATE(7379), 1, + sym_primary_expression, + STATE(7398), 1, + sym_string, + STATE(7553), 1, + sym_subscript, + STATE(7557), 1, + sym_call, + STATE(7576), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4593), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4603), 2, + sym_ellipsis, + sym_float, + ACTIONS(4601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4583), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4589), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7645), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211424] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7028), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211515] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9498), 1, + sym_identifier, + ACTIONS(9504), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7689), 1, + sym_attribute, + STATE(7699), 1, + sym_subscript, + STATE(8004), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9502), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9500), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211610] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7341), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211701] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9496), 1, + anon_sym_await, + ACTIONS(9506), 1, + sym_identifier, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7736), 1, + sym_attribute, + STATE(7737), 1, + sym_subscript, + STATE(8001), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9510), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9508), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211796] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7365), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211887] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7349), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [211978] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7348), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212069] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7335), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212160] = 6, + ACTIONS(9308), 1, + anon_sym_COMMA, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9281), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [212223] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9512), 1, + sym_identifier, + ACTIONS(9518), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7272), 1, + sym_attribute, + STATE(7273), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8006), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9516), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9514), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212318] = 6, + ACTIONS(9318), 1, + anon_sym_EQ, + ACTIONS(9450), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9453), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [212381] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7386), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212472] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7387), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212563] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7388), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212654] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7389), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212745] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7390), 1, + sym_primary_expression, + STATE(7391), 1, + sym_string, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212836] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7391), 1, + sym_string, + STATE(7393), 1, + sym_primary_expression, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [212927] = 6, + ACTIONS(9286), 1, + anon_sym_EQ, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9386), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [212990] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7394), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213081] = 20, + ACTIONS(4613), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_comptime, + ACTIONS(4623), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym___mlir_type, + ACTIONS(4633), 1, + anon_sym_await, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(5225), 1, + anon_sym_STAR, + STATE(7391), 1, + sym_string, + STATE(7396), 1, + sym_primary_expression, + STATE(7556), 1, + sym_subscript, + STATE(7653), 1, + sym_call, + STATE(7696), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4629), 2, + sym_ellipsis, + sym_float, + ACTIONS(4627), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4611), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4617), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7651), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213172] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7350), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213263] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7345), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213354] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7342), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213445] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7338), 1, + sym_string, + STATE(7346), 1, + sym_primary_expression, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213536] = 20, + ACTIONS(4309), 1, + anon_sym_comptime, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4319), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + anon_sym___mlir_type, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + anon_sym_await, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(7331), 1, + sym_primary_expression, + STATE(7338), 1, + sym_string, + STATE(7470), 1, + sym_call, + STATE(7504), 1, + sym_list_splat_pattern, + STATE(7505), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 2, + sym_ellipsis, + sym_float, + ACTIONS(4579), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4329), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4343), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4577), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7474), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213627] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9518), 1, + anon_sym_await, + ACTIONS(9520), 1, + sym_identifier, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7506), 1, + sym_attribute, + STATE(7507), 1, + sym_subscript, + STATE(8007), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9524), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9522), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213722] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7372), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213813] = 6, + ACTIONS(9457), 1, + anon_sym_COMMA, + ACTIONS(9462), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9464), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9460), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [213876] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7400), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [213967] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7419), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214058] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7362), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214149] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7364), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214240] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7368), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214331] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7369), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214422] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9526), 1, + sym_identifier, + ACTIONS(9532), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8009), 1, + sym_primary_expression, + STATE(8027), 1, + sym_attribute, + STATE(8029), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9530), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9528), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214517] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + STATE(7377), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4359), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214608] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7029), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214699] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4125), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [214760] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4125), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [214821] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9534), 1, + sym_identifier, + ACTIONS(9540), 1, + anon_sym_await, + STATE(6870), 1, + sym_attribute, + STATE(6888), 1, + sym_subscript, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7998), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9538), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9536), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [214916] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9504), 1, + anon_sym_await, + ACTIONS(9542), 1, + sym_identifier, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7674), 1, + sym_attribute, + STATE(7675), 1, + sym_subscript, + STATE(8008), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9546), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9544), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215011] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7039), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215102] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9331), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9334), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [215163] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7333), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215254] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7406), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215345] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7359), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215436] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7332), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215527] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7412), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215618] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7415), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215709] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7407), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215800] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7395), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215891] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(4571), 1, + anon_sym_await, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + STATE(7384), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4569), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [215982] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9359), 1, + sym_identifier, + ACTIONS(9365), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8009), 1, + sym_primary_expression, + STATE(8049), 1, + sym_attribute, + STATE(8050), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9363), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9361), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216077] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7030), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216168] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7363), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216259] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7373), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216350] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7382), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216441] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7402), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216532] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7351), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216623] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7403), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216714] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9402), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [216775] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9548), 1, + sym_identifier, + ACTIONS(9554), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7814), 1, + sym_attribute, + STATE(7815), 1, + sym_subscript, + STATE(8003), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9552), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9550), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216870] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(6963), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [216961] = 6, + ACTIONS(9373), 1, + anon_sym_COMMA, + ACTIONS(9378), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9380), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(9376), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [217024] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7031), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217115] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7037), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217206] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7405), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217297] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7421), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217388] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7032), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217479] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7019), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217570] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7020), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217661] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7021), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217752] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7022), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217843] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7023), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [217934] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7024), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218025] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4216), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7026), 1, + sym_primary_expression, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4214), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218116] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4278), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7033), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4229), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218207] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7042), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218298] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7043), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218389] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7046), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218480] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7047), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218571] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7048), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218662] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7051), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218753] = 20, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4245), 1, + anon_sym_comptime, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym___mlir_type, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(4286), 1, + anon_sym_LBRACE, + ACTIONS(4288), 1, + anon_sym_await, + ACTIONS(5749), 1, + anon_sym_STAR, + STATE(6956), 1, + sym_string, + STATE(7054), 1, + sym_primary_expression, + STATE(7121), 1, + sym_subscript, + STATE(7278), 1, + sym_list_splat_pattern, + STATE(7297), 1, + sym_call, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 2, + sym_ellipsis, + sym_float, + ACTIONS(4284), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4258), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4268), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4282), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7294), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218844] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7454), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [218935] = 23, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9578), 1, + anon_sym_PIPE, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9582), 1, + anon_sym_CARET, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9586), 1, + anon_sym_AMP, + ACTIONS(9588), 1, + anon_sym_is, + STATE(7825), 1, + aux_sym_comparison_operator_repeat1, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9564), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9590), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6918), 2, + sym__not_in, + sym__is_not, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9566), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [219032] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6945), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219123] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9498), 1, + sym_identifier, + ACTIONS(9504), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7689), 1, + sym_attribute, + STATE(7699), 1, + sym_subscript, + STATE(8008), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9502), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9500), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219218] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9490), 1, + sym_identifier, + ACTIONS(9496), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7221), 1, + sym_attribute, + STATE(7224), 1, + sym_subscript, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8001), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9494), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9492), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219313] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6946), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219404] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6949), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219495] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6950), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219586] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6951), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219677] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6952), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219768] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6959), 1, + sym_string, + STATE(6960), 1, + sym_primary_expression, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219859] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9512), 1, + sym_identifier, + ACTIONS(9518), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7272), 1, + sym_attribute, + STATE(7273), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(8007), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9516), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9514), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [219954] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9592), 1, + sym_identifier, + ACTIONS(9598), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7119), 1, + sym_attribute, + STATE(7132), 1, + sym_subscript, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(8009), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9596), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9594), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220049] = 22, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(9600), 1, + sym_identifier, + ACTIONS(9606), 1, + anon_sym_await, + STATE(6954), 1, + sym_string, + STATE(7036), 1, + sym_attribute, + STATE(7038), 1, + sym_subscript, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7295), 1, + sym_call, + STATE(7997), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(9604), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(9602), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 17, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220144] = 20, + ACTIONS(1510), 1, + anon_sym_comptime, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1544), 1, + anon_sym___mlir_type, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(4128), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, + anon_sym_await, + ACTIONS(5207), 1, + anon_sym_STAR, + STATE(6954), 1, + sym_string, + STATE(7249), 1, + sym_list_splat_pattern, + STATE(7264), 1, + sym_subscript, + STATE(7295), 1, + sym_call, + STATE(7366), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + sym_ellipsis, + sym_float, + ACTIONS(4134), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1546), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7218), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220235] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7455), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220326] = 20, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym___mlir_type, + ACTIONS(1579), 1, + anon_sym_comptime, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4159), 1, + anon_sym_await, + ACTIONS(5709), 1, + anon_sym_STAR, + STATE(6936), 1, + sym_string, + STATE(6965), 1, + sym_call, + STATE(6966), 1, + sym_list_splat_pattern, + STATE(7027), 1, + sym_subscript, + STATE(7344), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(89), 2, + sym_ellipsis, + sym_float, + ACTIONS(4153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(79), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(93), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4151), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7017), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220417] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7456), 1, + sym_primary_expression, + STATE(7457), 1, + sym_string, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220508] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7457), 1, + sym_string, + STATE(7458), 1, + sym_primary_expression, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220599] = 20, + ACTIONS(4641), 1, + anon_sym_LPAREN, + ACTIONS(4647), 1, + anon_sym_comptime, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym___mlir_type, + ACTIONS(4663), 1, + anon_sym_await, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(5639), 1, + anon_sym_STAR, + STATE(7457), 1, + sym_string, + STATE(7462), 1, + sym_primary_expression, + STATE(7724), 1, + sym_call, + STATE(7727), 1, + sym_list_splat_pattern, + STATE(7754), 1, + sym_subscript, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4649), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4659), 2, + sym_ellipsis, + sym_float, + ACTIONS(4657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4639), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4645), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7743), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220690] = 20, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_comptime, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4175), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym___mlir_type, + ACTIONS(4185), 1, + anon_sym_await, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(5241), 1, + anon_sym_STAR, + STATE(6947), 1, + sym_primary_expression, + STATE(6959), 1, + sym_string, + STATE(7150), 1, + sym_call, + STATE(7213), 1, + sym_subscript, + STATE(7302), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4171), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(4181), 2, + sym_ellipsis, + sym_float, + ACTIONS(4179), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(4161), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(4167), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_mut, + anon_sym_out, + STATE(7149), 18, + sym_comptime_expression, + sym_transfer_expression, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_mlir_type, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_struct_literal, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [220781] = 23, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9626), 1, + anon_sym_PIPE, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9630), 1, + anon_sym_CARET, + ACTIONS(9632), 1, + anon_sym_AMP, + ACTIONS(9634), 1, + anon_sym_is, + STATE(7846), 1, + aux_sym_comparison_operator_repeat1, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9636), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6881), 2, + sym__not_in, + sym__is_not, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9616), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_and, + anon_sym_or, + [220877] = 23, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9656), 1, + anon_sym_PIPE, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9660), 1, + anon_sym_CARET, + ACTIONS(9662), 1, + anon_sym_AMP, + ACTIONS(9664), 1, + anon_sym_is, + STATE(7826), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9644), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9666), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6899), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9646), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [220973] = 5, + ACTIONS(9672), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6935), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221033] = 5, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6937), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221093] = 5, + ACTIONS(1594), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6935), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221153] = 23, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9697), 1, + anon_sym_PIPE, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9701), 1, + anon_sym_CARET, + ACTIONS(9703), 1, + anon_sym_AMP, + ACTIONS(9705), 1, + anon_sym_is, + STATE(7833), 1, + aux_sym_comparison_operator_repeat1, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9685), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9707), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6907), 2, + sym__not_in, + sym__is_not, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9687), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_and, + anon_sym_or, + [221249] = 5, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6941), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221307] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221363] = 5, + ACTIONS(9709), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6941), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221421] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 39, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 39, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221529] = 5, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6955), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221587] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9716), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 31, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221655] = 14, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9716), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221731] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9723), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 31, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221799] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9730), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 31, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221867] = 17, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9578), 1, + anon_sym_PIPE, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9582), 1, + anon_sym_CARET, + ACTIONS(9586), 1, + anon_sym_AMP, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9564), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9733), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [221949] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9716), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 31, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222017] = 12, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9716), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 28, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222089] = 16, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9582), 1, + anon_sym_CARET, + ACTIONS(9586), 1, + anon_sym_AMP, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9564), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222169] = 15, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9582), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9564), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222247] = 5, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222305] = 5, + ACTIONS(9737), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6955), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222363] = 5, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6944), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222421] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222477] = 5, + ACTIONS(9740), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6958), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222535] = 5, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6939), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222593] = 15, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_STAR_STAR, + ACTIONS(9576), 1, + anon_sym_DASH, + ACTIONS(9580), 1, + anon_sym_PLUS, + ACTIONS(9582), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9564), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9574), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222671] = 5, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6958), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222729] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222785] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9743), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 30, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222905] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [222958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223011] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223170] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223223] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223280] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223386] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223545] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223704] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 37, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223810] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223916] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [223973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224026] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224079] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224185] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224344] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224450] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224556] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224715] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224821] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224874] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [224980] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225086] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225139] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225245] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + STATE(8200), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225304] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225410] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225463] = 7, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9804), 1, + anon_sym_AMP, + STATE(8202), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225524] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225630] = 11, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9337), 1, + anon_sym_COLON, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225699] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225752] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9811), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225819] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9814), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225886] = 14, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9814), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 26, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [225961] = 17, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9656), 1, + anon_sym_PIPE, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9660), 1, + anon_sym_CARET, + ACTIONS(9662), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9644), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9733), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226042] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9814), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226109] = 12, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9814), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226180] = 16, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9660), 1, + anon_sym_CARET, + ACTIONS(9662), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9644), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226259] = 15, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9660), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9644), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226336] = 15, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9654), 1, + anon_sym_DASH, + ACTIONS(9658), 1, + anon_sym_PLUS, + ACTIONS(9660), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9644), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9652), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226466] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9817), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226533] = 14, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9817), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226608] = 17, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9626), 1, + anon_sym_PIPE, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9630), 1, + anon_sym_CARET, + ACTIONS(9632), 1, + anon_sym_AMP, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9733), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226689] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9817), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226756] = 12, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9817), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226827] = 16, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9630), 1, + anon_sym_CARET, + ACTIONS(9632), 1, + anon_sym_AMP, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226906] = 15, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9630), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [226983] = 15, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9624), 1, + anon_sym_DASH, + ACTIONS(9628), 1, + anon_sym_PLUS, + ACTIONS(9630), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9622), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227060] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227117] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9620), 1, + anon_sym_STAR_STAR, + ACTIONS(9820), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227184] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9402), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9399), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227241] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9823), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 30, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227308] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_STAR_STAR, + ACTIONS(9826), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 30, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227375] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227428] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9829), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227495] = 14, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9829), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 26, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227570] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227623] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227686] = 17, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9697), 1, + anon_sym_PIPE, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9701), 1, + anon_sym_CARET, + ACTIONS(9703), 1, + anon_sym_AMP, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9685), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9733), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227767] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9829), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 30, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227834] = 12, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9829), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227905] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [227958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228011] = 16, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9701), 1, + anon_sym_CARET, + ACTIONS(9703), 1, + anon_sym_AMP, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9685), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228090] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9836), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 30, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228157] = 15, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9701), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9685), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228234] = 15, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_STAR_STAR, + ACTIONS(9695), 1, + anon_sym_DASH, + ACTIONS(9699), 1, + anon_sym_PLUS, + ACTIONS(9701), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9685), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9693), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228470] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228523] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + STATE(8200), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228586] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8202), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228704] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228757] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9804), 1, + anon_sym_AMP, + STATE(8202), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9279), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228875] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [228981] = 7, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9804), 1, + anon_sym_AMP, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8504), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229041] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229099] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8610), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229161] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9804), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9279), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229225] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8613), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229289] = 22, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(9881), 1, + anon_sym_PIPE, + ACTIONS(9883), 1, + anon_sym_CARET, + ACTIONS(9885), 1, + anon_sym_AMP, + ACTIONS(9887), 1, + anon_sym_is, + STATE(7923), 1, + aux_sym_comparison_operator_repeat1, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9572), 2, + anon_sym_as, + anon_sym_EQ, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9869), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9889), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6848), 2, + sym__not_in, + sym__is_not, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9871), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 9, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [229379] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9804), 1, + anon_sym_AMP, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8613), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9279), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229443] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229505] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229563] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229617] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8595), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229675] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229727] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8610), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229785] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229889] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229941] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [229995] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230047] = 11, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9337), 1, + anon_sym_COLON, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230115] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230177] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230241] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230303] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230357] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230411] = 11, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9337), 1, + anon_sym_COLON, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230479] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230531] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230583] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230689] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230741] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230795] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 37, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230899] = 11, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9337), 1, + anon_sym_COLON, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [230967] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8595), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231029] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231081] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231133] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231187] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231241] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231299] = 22, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9903), 1, + anon_sym_PIPE, + ACTIONS(9905), 1, + anon_sym_CARET, + ACTIONS(9907), 1, + anon_sym_AMP, + ACTIONS(9909), 1, + anon_sym_is, + STATE(7921), 1, + aux_sym_comparison_operator_repeat1, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6813), 2, + sym__not_in, + sym__is_not, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9895), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [231389] = 7, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(9804), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 32, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231449] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9807), 1, + anon_sym_AMP, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8504), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231513] = 9, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9804), 1, + anon_sym_AMP, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8504), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9279), 21, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231577] = 7, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9804), 1, + anon_sym_AMP, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8613), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 32, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231637] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231691] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231746] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231899] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [231950] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232001] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232056] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232464] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232515] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232566] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232668] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9402), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9399), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232774] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232876] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [232978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233029] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233080] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233284] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233335] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233386] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233539] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233590] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233641] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233696] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233904] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9448), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [233959] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234010] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234061] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234214] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234316] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234469] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234520] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234571] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234673] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234724] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234775] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234877] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [234979] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235036] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 10, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235144] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235246] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235450] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235654] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235705] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235756] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235909] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [235960] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236011] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236164] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236215] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236266] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236419] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236470] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236674] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236725] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236776] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236929] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [236980] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237031] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237184] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237235] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237290] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237341] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237392] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9402), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9399), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237498] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237553] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237914] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [237965] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238169] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238220] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238373] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238424] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238679] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238730] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238781] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238934] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [238985] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239036] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239240] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239342] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239399] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239456] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239660] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239711] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239819] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239870] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239925] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9402), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(9399), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [239980] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240031] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240082] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240139] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240190] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240241] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240394] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9279), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240449] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240500] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240551] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240602] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240914] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4123), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(4142), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [240971] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241124] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241179] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241230] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241285] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241387] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241493] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241544] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 6, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241595] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241651] = 22, + ACTIONS(9572), 1, + anon_sym_as, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(9931), 1, + anon_sym_PIPE, + ACTIONS(9933), 1, + anon_sym_CARET, + ACTIONS(9935), 1, + anon_sym_AMP, + ACTIONS(9937), 1, + anon_sym_is, + STATE(7949), 1, + aux_sym_comparison_operator_repeat1, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9939), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6822), 2, + sym__not_in, + sym__is_not, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9921), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [241739] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241793] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241847] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241901] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [241955] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242011] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242065] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242119] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9279), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242173] = 22, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9953), 1, + anon_sym_PIPE, + ACTIONS(9955), 1, + anon_sym_CARET, + ACTIONS(9957), 1, + anon_sym_AMP, + ACTIONS(9959), 1, + anon_sym_is, + STATE(7941), 1, + aux_sym_comparison_operator_repeat1, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9961), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6858), 2, + sym__not_in, + sym__is_not, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9945), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [242261] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9448), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242315] = 22, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9975), 1, + anon_sym_PIPE, + ACTIONS(9977), 1, + anon_sym_CARET, + ACTIONS(9979), 1, + anon_sym_AMP, + ACTIONS(9981), 1, + anon_sym_is, + STATE(7945), 1, + aux_sym_comparison_operator_repeat1, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9983), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6875), 2, + sym__not_in, + sym__is_not, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9967), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [242403] = 22, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10003), 1, + anon_sym_PIPE, + ACTIONS(10005), 1, + anon_sym_CARET, + ACTIONS(10007), 1, + anon_sym_AMP, + ACTIONS(10009), 1, + anon_sym_is, + STATE(7950), 1, + aux_sym_comparison_operator_repeat1, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6841), 2, + sym__not_in, + sym__is_not, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9993), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [242491] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242547] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9279), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242601] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9448), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242655] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9279), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242709] = 5, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + ACTIONS(9448), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242763] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [242819] = 22, + ACTIONS(9572), 1, + anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10031), 1, + anon_sym_is, + STATE(7943), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [242907] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9903), 1, + anon_sym_PIPE, + ACTIONS(9905), 1, + anon_sym_CARET, + ACTIONS(9907), 1, + anon_sym_AMP, + ACTIONS(9909), 1, + anon_sym_is, + ACTIONS(10035), 1, + anon_sym_DOT, + ACTIONS(10037), 1, + anon_sym_LPAREN, + ACTIONS(10039), 1, + anon_sym_LBRACK, + STATE(7921), 1, + aux_sym_comparison_operator_repeat1, + STATE(11989), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6808), 2, + sym_argument_list, + sym_generator_expression, + STATE(6813), 2, + sym__not_in, + sym__is_not, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9895), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [242993] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9334), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243049] = 6, + ACTIONS(9339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(9402), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9327), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243105] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10041), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243168] = 10, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10044), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243231] = 14, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(9883), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9869), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 19, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243302] = 15, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9905), 1, + anon_sym_CARET, + ACTIONS(9907), 1, + anon_sym_AMP, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243375] = 12, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10041), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243442] = 5, + ACTIONS(10047), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7334), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243495] = 10, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10050), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243558] = 13, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10041), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243627] = 14, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(9883), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9869), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 19, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243698] = 5, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7347), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243751] = 22, + ACTIONS(9572), 1, + anon_sym_as, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10071), 1, + anon_sym_PIPE, + ACTIONS(10073), 1, + anon_sym_CARET, + ACTIONS(10075), 1, + anon_sym_AMP, + ACTIONS(10077), 1, + anon_sym_is, + STATE(7955), 1, + aux_sym_comparison_operator_repeat1, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10059), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6929), 2, + sym__not_in, + sym__is_not, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(10061), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [243838] = 14, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9905), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243909] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10081), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [243972] = 12, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10084), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244039] = 16, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9903), 1, + anon_sym_PIPE, + ACTIONS(9905), 1, + anon_sym_CARET, + ACTIONS(9907), 1, + anon_sym_AMP, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244114] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10041), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244177] = 10, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10084), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244240] = 15, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(9883), 1, + anon_sym_CARET, + ACTIONS(9885), 1, + anon_sym_AMP, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9869), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244313] = 5, + ACTIONS(4347), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7334), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244366] = 13, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10084), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9714), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244435] = 10, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(10084), 1, + anon_sym_CARET, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244498] = 16, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_STAR_STAR, + ACTIONS(9881), 1, + anon_sym_PIPE, + ACTIONS(9883), 1, + anon_sym_CARET, + ACTIONS(9885), 1, + anon_sym_AMP, + STATE(12181), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9869), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9879), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7472), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9877), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9735), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9733), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244573] = 14, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(9905), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9893), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9901), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9899), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244644] = 10, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9897), 1, + anon_sym_STAR_STAR, + ACTIONS(10087), 1, + anon_sym_CARET, + STATE(12021), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6982), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244707] = 9, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10090), 1, + anon_sym_COMMA, + ACTIONS(10092), 1, + anon_sym_COLON, + ACTIONS(10094), 1, + anon_sym_RBRACK, + ACTIONS(10096), 1, + anon_sym_EQ, + STATE(11902), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244767] = 7, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9804), 1, + anon_sym_AMP, + STATE(8202), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244823] = 21, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9975), 1, + anon_sym_PIPE, + ACTIONS(9977), 1, + anon_sym_CARET, + ACTIONS(9979), 1, + anon_sym_AMP, + ACTIONS(9981), 1, + anon_sym_is, + STATE(7945), 1, + aux_sym_comparison_operator_repeat1, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9983), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6875), 2, + sym__not_in, + sym__is_not, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9967), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(9560), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [244907] = 10, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_AMP, + STATE(8202), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9337), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9329), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 21, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [244969] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + STATE(8200), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 3, + anon_sym_async, + anon_sym_for, + anon_sym_where, + ACTIONS(4125), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245027] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + STATE(8200), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245081] = 13, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10098), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245148] = 5, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7367), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245199] = 12, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10101), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245264] = 16, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9953), 1, + anon_sym_PIPE, + ACTIONS(9955), 1, + anon_sym_CARET, + ACTIONS(9957), 1, + anon_sym_AMP, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245337] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10104), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245398] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10107), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245459] = 10, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10110), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [245520] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10113), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245581] = 5, + ACTIONS(10116), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7367), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245632] = 12, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10107), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245697] = 15, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9955), 1, + anon_sym_CARET, + ACTIONS(9957), 1, + anon_sym_AMP, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245768] = 5, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7399), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [245819] = 10, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10119), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [245880] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10122), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [245941] = 13, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10104), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 32, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246055] = 14, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9955), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246124] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10125), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246185] = 14, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9955), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246254] = 14, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(9933), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246323] = 10, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10128), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246384] = 15, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(9933), 1, + anon_sym_CARET, + ACTIONS(9935), 1, + anon_sym_AMP, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246455] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246504] = 16, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246577] = 7, + ACTIONS(1528), 1, + anon_sym_in, + ACTIONS(1540), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1495), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(8201), 9, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8199), 16, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [246632] = 14, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9977), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246701] = 10, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10101), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [246762] = 10, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10131), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [246823] = 13, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10131), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [246890] = 16, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10003), 1, + anon_sym_PIPE, + ACTIONS(10005), 1, + anon_sym_CARET, + ACTIONS(10007), 1, + anon_sym_AMP, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [246963] = 10, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10131), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247024] = 12, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10131), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247089] = 5, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7370), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247140] = 10, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10101), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247201] = 15, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10005), 1, + anon_sym_CARET, + ACTIONS(10007), 1, + anon_sym_AMP, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247272] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10134), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247333] = 15, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9977), 1, + anon_sym_CARET, + ACTIONS(9979), 1, + anon_sym_AMP, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247404] = 14, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10005), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247473] = 13, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10101), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247540] = 5, + ACTIONS(4609), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7360), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247591] = 5, + ACTIONS(10137), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7399), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [247642] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10107), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247703] = 14, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(9933), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247772] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10104), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247833] = 12, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10104), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247898] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [247947] = 15, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248018] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10098), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248079] = 12, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10098), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248144] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10003), 1, + anon_sym_PIPE, + ACTIONS(10005), 1, + anon_sym_CARET, + ACTIONS(10007), 1, + anon_sym_AMP, + ACTIONS(10009), 1, + anon_sym_is, + STATE(7950), 1, + aux_sym_comparison_operator_repeat1, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6841), 2, + sym__not_in, + sym__is_not, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(9993), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248227] = 10, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10140), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248288] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(9953), 1, + anon_sym_PIPE, + ACTIONS(9955), 1, + anon_sym_CARET, + ACTIONS(9957), 1, + anon_sym_AMP, + ACTIONS(9959), 1, + anon_sym_is, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10063), 1, + anon_sym_LBRACK, + STATE(7941), 1, + aux_sym_comparison_operator_repeat1, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9943), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9961), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6858), 2, + sym__not_in, + sym__is_not, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(9945), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248371] = 10, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(10143), 1, + anon_sym_CARET, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248432] = 16, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9975), 1, + anon_sym_PIPE, + ACTIONS(9977), 1, + anon_sym_CARET, + ACTIONS(9979), 1, + anon_sym_AMP, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248505] = 16, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_STAR_STAR, + ACTIONS(9931), 1, + anon_sym_PIPE, + ACTIONS(9933), 1, + anon_sym_CARET, + ACTIONS(9935), 1, + anon_sym_AMP, + STATE(12269), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9929), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7681), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9927), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248578] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 3, + anon_sym_async, + anon_sym_for, + anon_sym_where, + ACTIONS(4125), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248631] = 10, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(10098), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248692] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 7, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248741] = 10, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10146), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248802] = 14, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10027), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248871] = 13, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_STAR_STAR, + ACTIONS(10107), 1, + anon_sym_CARET, + STATE(11945), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9951), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9949), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 32, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [248985] = 14, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10027), 1, + anon_sym_CARET, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249054] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 3, + anon_sym_async, + anon_sym_for, + anon_sym_where, + ACTIONS(4125), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249107] = 14, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9969), 1, + anon_sym_STAR_STAR, + ACTIONS(9977), 1, + anon_sym_CARET, + STATE(12093), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9965), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9973), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7225), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9971), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249176] = 14, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_STAR_STAR, + ACTIONS(10005), 1, + anon_sym_CARET, + STATE(11911), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10001), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7573), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9999), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249245] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249429] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249705] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249889] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249935] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [249981] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [250027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [250073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [250119] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [250165] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [250211] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250349] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250395] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250441] = 15, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10073), 1, + anon_sym_CARET, + ACTIONS(10075), 1, + anon_sym_AMP, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10059), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250511] = 9, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10149), 1, + anon_sym_COMMA, + ACTIONS(10151), 1, + anon_sym_COLON, + ACTIONS(10153), 1, + anon_sym_RBRACK, + ACTIONS(10155), 1, + anon_sym_EQ, + STATE(11825), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250615] = 10, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10157), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250675] = 13, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10157), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250741] = 16, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10071), 1, + anon_sym_PIPE, + ACTIONS(10073), 1, + anon_sym_CARET, + ACTIONS(10075), 1, + anon_sym_AMP, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10059), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9735), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9733), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250813] = 5, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7480), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250863] = 10, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10157), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9712), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250923] = 12, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10157), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251079] = 10, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10160), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9721), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9719), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251139] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251185] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251231] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251277] = 10, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10163), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9728), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9726), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251429] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251521] = 21, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10031), 1, + anon_sym_is, + STATE(7943), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251649] = 14, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10073), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10059), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251763] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10031), 1, + anon_sym_is, + STATE(7943), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251845] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251937] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251987] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252037] = 5, + ACTIONS(4665), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7509), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9677), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9675), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252133] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10166), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252183] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10031), 1, + anon_sym_is, + ACTIONS(10035), 1, + anon_sym_DOT, + ACTIONS(10039), 1, + anon_sym_LBRACK, + STATE(7943), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252449] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252495] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252541] = 14, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10063), 1, + anon_sym_LBRACK, + ACTIONS(10065), 1, + anon_sym_STAR_STAR, + ACTIONS(10073), 1, + anon_sym_CARET, + STATE(12223), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10059), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10069), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7719), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(9714), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10067), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9712), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252655] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252885] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252931] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [252977] = 6, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9331), 23, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253029] = 6, + ACTIONS(9337), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9402), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9329), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + ACTIONS(9399), 23, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253081] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253219] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253311] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253361] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 4, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_where, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253411] = 9, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10090), 1, + anon_sym_COMMA, + ACTIONS(10092), 1, + anon_sym_COLON, + ACTIONS(10094), 1, + anon_sym_RBRACK, + ACTIONS(10096), 1, + anon_sym_EQ, + STATE(11902), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253469] = 5, + ACTIONS(10168), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7509), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9670), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9668), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253519] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253565] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253611] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253657] = 21, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10031), 1, + anon_sym_is, + STATE(7943), 1, + aux_sym_comparison_operator_repeat1, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + ACTIONS(9560), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253739] = 9, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10171), 1, + anon_sym_COMMA, + ACTIONS(10173), 1, + anon_sym_COLON, + ACTIONS(10175), 1, + anon_sym_RBRACK, + ACTIONS(10177), 1, + anon_sym_EQ, + STATE(11891), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253797] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4599), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253893] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4599), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [253989] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254035] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254081] = 9, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10179), 1, + anon_sym_COMMA, + ACTIONS(10181), 1, + anon_sym_COLON, + ACTIONS(10183), 1, + anon_sym_RBRACK, + ACTIONS(10185), 1, + anon_sym_EQ, + STATE(12065), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254139] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254186] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10187), 1, + anon_sym_COMMA, + ACTIONS(10189), 1, + anon_sym_RBRACK, + STATE(12257), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254241] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [254288] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [254335] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254384] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10191), 1, + anon_sym_COMMA, + ACTIONS(10193), 1, + anon_sym_RBRACK, + STATE(12185), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254484] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10195), 1, + anon_sym_COMMA, + ACTIONS(10197), 1, + anon_sym_RBRACK, + STATE(11883), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254539] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10199), 1, + anon_sym_COMMA, + ACTIONS(10201), 1, + anon_sym_RBRACK, + STATE(12009), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254594] = 5, + ACTIONS(9308), 1, + anon_sym_COMMA, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [254643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [254688] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254737] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254786] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_COMMA, + ACTIONS(10205), 1, + anon_sym_RBRACK, + STATE(12226), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254841] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10207), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254890] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4125), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254941] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(10211), 1, + anon_sym_RBRACK, + STATE(12149), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254996] = 6, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255047] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4125), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255098] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10213), 1, + anon_sym_COMMA, + ACTIONS(10215), 1, + anon_sym_RBRACK, + STATE(12090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255198] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10217), 1, + anon_sym_COMMA, + ACTIONS(10219), 1, + anon_sym_RBRACK, + STATE(12201), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255253] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255300] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10221), 1, + anon_sym_COMMA, + ACTIONS(10223), 1, + anon_sym_RBRACK, + STATE(12079), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255355] = 5, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255404] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255449] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255496] = 7, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(10227), 1, + anon_sym_COLON, + ACTIONS(10229), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10225), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255549] = 5, + ACTIONS(1502), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255598] = 8, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(10231), 1, + anon_sym_COMMA, + ACTIONS(10233), 1, + anon_sym_RBRACK, + STATE(12060), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255653] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255744] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255876] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [255920] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [255968] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256060] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256104] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256148] = 5, + ACTIONS(10239), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7563), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(10237), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10235), 22, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_fn, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [256196] = 4, + ACTIONS(9373), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256286] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256376] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256420] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256464] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256552] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256600] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256644] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [256732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256776] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256820] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256864] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256912] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [256958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9347), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257002] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257050] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [257094] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257186] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257230] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9369), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9367), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257366] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [257410] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7753), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7751), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [257454] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [257498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257586] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257630] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10242), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257678] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257810] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257854] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [257986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258030] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258074] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258118] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258250] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258294] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258338] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1502), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258386] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258430] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9466), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258474] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258562] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258610] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258654] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258786] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258830] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258874] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [258918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [258962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259006] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1502), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259054] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259098] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259186] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9409), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259230] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259274] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259318] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8345), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8343), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8357), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8355), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9429), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259496] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259540] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259584] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9433), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259628] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259676] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259724] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9391), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259856] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4667), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10244), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [259906] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259950] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [259994] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9413), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9417), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260126] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260170] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260214] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9308), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [260262] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [260308] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [260352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260396] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(9402), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [260442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9421), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260486] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [260530] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260574] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9425), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260618] = 4, + ACTIONS(9443), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260664] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260752] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260796] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6741), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260840] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6769), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6767), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260884] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9470), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [260972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261016] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9308), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261108] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261156] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261204] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9093), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9091), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261248] = 4, + ACTIONS(9308), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261294] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9119), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261338] = 4, + ACTIONS(9450), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261384] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261516] = 4, + ACTIONS(9457), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261606] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261650] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261694] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261782] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261830] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4125), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [261878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261922] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [261966] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [262010] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10207), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [262102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [262146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9437), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262190] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9395), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262234] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [262282] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262330] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262374] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4123), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4125), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262422] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4655), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262470] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9845), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9843), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262561] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9457), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9460), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262606] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9776), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9774), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262649] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262694] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262737] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(9339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262784] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9794), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9792), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9857), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9855), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262870] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9476), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9474), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262913] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9780), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9778), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262956] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9752), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9750), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [262999] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263044] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263089] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9798), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9796), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9480), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9478), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263175] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263218] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10246), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263265] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10248), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263312] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263355] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9384), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263398] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9334), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9764), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9762), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263486] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263529] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9402), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263574] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9441), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9446), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [263619] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9279), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9281), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [263664] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9448), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9453), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [263709] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9455), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9460), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9464), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [263754] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9457), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9460), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263799] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263846] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4138), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263893] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263940] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9339), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [263987] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9371), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9376), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9380), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [264032] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9443), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9446), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9768), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9766), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264120] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9784), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9782), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264163] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10250), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_where, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264210] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9772), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9770), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264296] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9450), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9453), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264341] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9788), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9786), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264384] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9832), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9800), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264470] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10246), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264517] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9443), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9446), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9441), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264562] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1497), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(1540), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [264607] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1497), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(1540), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [264652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9853), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9851), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264695] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264738] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(9402), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264783] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9308), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9758), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9756), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9754), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264914] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9373), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9376), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [264959] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4799), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265006] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9748), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9746), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265049] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4799), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265096] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4799), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265143] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10252), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265190] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9405), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265233] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9308), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9281), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265278] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9450), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9453), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9448), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265323] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9376), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9371), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265368] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4599), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265415] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4599), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265462] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265509] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265556] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9849), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9847), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265599] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9839), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265642] = 5, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(10166), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9279), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265689] = 5, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10248), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265736] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265781] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265824] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9861), 1, + anon_sym_LBRACK, + STATE(8610), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265872] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [265916] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10256), 11, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10254), 22, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_fn, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_struct, + anon_sym_mut, + anon_sym_out, + anon_sym_trait, + anon_sym_ref, + anon_sym_var, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [265958] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(8595), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266006] = 4, + ACTIONS(9311), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266050] = 5, + ACTIONS(10261), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10258), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9371), 22, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266096] = 4, + ACTIONS(9327), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266140] = 4, + ACTIONS(9327), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266184] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266226] = 6, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(9790), 1, + anon_sym_LBRACK, + STATE(8200), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266274] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266316] = 4, + ACTIONS(1512), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4125), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [266360] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9433), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266401] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9455), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9460), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9464), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266444] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1497), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(1540), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9439), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9437), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9468), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9466), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9409), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266610] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9431), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9429), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9435), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9433), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9393), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9391), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9415), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9413), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266774] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9419), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9417), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266815] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9421), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266856] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9425), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9423), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9421), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9425), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [266979] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9427), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9425), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9472), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9470), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267061] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9395), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9395), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9395), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267184] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4142), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4125), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267227] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9371), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9376), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9380), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267270] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1497), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(1540), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267313] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9331), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9334), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267356] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9399), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9402), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9327), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267399] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9441), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9446), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9334), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9331), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [267483] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9279), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9281), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9402), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9399), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [267567] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9448), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(9453), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(9323), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267610] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4142), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4125), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(4123), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [267653] = 20, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10269), 1, + anon_sym_COLON, + ACTIONS(10271), 1, + anon_sym_if, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11284), 1, + sym_case_pattern, + STATE(12717), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11748), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10277), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10849), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [267727] = 20, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10271), 1, + anon_sym_if, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10287), 1, + anon_sym_COLON, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11284), 1, + sym_case_pattern, + STATE(12605), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11748), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10277), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10849), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [267801] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10299), 1, + anon_sym_is, + STATE(7824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10302), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6918), 2, + sym__not_in, + sym__is_not, + ACTIONS(10291), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 17, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [267853] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9588), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9590), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6918), 2, + sym__not_in, + sym__is_not, + ACTIONS(9566), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 17, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [267905] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9664), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9666), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6899), 2, + sym__not_in, + sym__is_not, + ACTIONS(9646), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 16, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [267956] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10315), 1, + anon_sym_COLON, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12542), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268025] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10330), 1, + anon_sym_is, + STATE(7828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10333), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6899), 2, + sym__not_in, + sym__is_not, + ACTIONS(10327), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 16, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [268076] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10336), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12671), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268145] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10341), 1, + anon_sym_is, + STATE(7830), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10344), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6881), 2, + sym__not_in, + sym__is_not, + ACTIONS(10338), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [268196] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10347), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12533), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268265] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10349), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12669), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268334] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9705), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7835), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9707), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6907), 2, + sym__not_in, + sym__is_not, + ACTIONS(9687), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 16, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [268385] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10351), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12611), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268454] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10356), 1, + anon_sym_is, + STATE(7835), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10359), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6907), 2, + sym__not_in, + sym__is_not, + ACTIONS(10353), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 16, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [268505] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10362), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12740), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268574] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10364), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12736), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268643] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10366), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12661), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268712] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10368), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12599), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268781] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10370), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12536), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268850] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10372), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12629), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268919] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10374), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12480), 1, + sym_lambda_parameters, + STATE(12518), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [268988] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10376), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12697), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [269057] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10378), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12586), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [269126] = 18, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10380), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11882), 1, + sym_parameter, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12518), 1, + sym__parameters, + STATE(12569), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [269195] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9634), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7830), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9636), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6881), 2, + sym__not_in, + sym__is_not, + ACTIONS(9616), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [269246] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10386), 1, + anon_sym_RPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269314] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10404), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269382] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10414), 1, + anon_sym_RBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11666), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269450] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10428), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269518] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10430), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11525), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269586] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10432), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269654] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10434), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269722] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10436), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11526), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269790] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10438), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269858] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10440), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269926] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10442), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [269994] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10444), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270062] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10446), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270130] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10448), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270198] = 17, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10450), 1, + sym_identifier, + ACTIONS(10452), 1, + anon_sym_LPAREN, + ACTIONS(10454), 1, + anon_sym_RPAREN, + ACTIONS(10456), 1, + anon_sym_STAR, + ACTIONS(10458), 1, + anon_sym_STAR_STAR, + ACTIONS(10460), 1, + anon_sym_self, + ACTIONS(10462), 1, + anon_sym_SLASH, + STATE(10320), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(12121), 1, + sym_parameter, + STATE(12147), 1, + sym_tuple_pattern, + STATE(12748), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12192), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12285), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [270264] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10464), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11363), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270332] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10466), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270400] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10468), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270468] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10470), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11541), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270536] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10472), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11708), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270604] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10474), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270672] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10476), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11364), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270740] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10478), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11662), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270808] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10480), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270876] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10482), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [270944] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10484), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271012] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10486), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11699), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271080] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10488), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271148] = 17, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10450), 1, + sym_identifier, + ACTIONS(10452), 1, + anon_sym_LPAREN, + ACTIONS(10456), 1, + anon_sym_STAR, + ACTIONS(10458), 1, + anon_sym_STAR_STAR, + ACTIONS(10460), 1, + anon_sym_self, + ACTIONS(10462), 1, + anon_sym_SLASH, + ACTIONS(10490), 1, + anon_sym_RPAREN, + STATE(10320), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(12121), 1, + sym_parameter, + STATE(12147), 1, + sym_tuple_pattern, + STATE(12685), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12192), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12285), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [271214] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10492), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271282] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10494), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11700), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271350] = 4, + ACTIONS(10496), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 9, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8199), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [271390] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10498), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271458] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10500), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10504), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10502), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [271564] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8199), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [271602] = 18, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10506), 1, + anon_sym_RBRACK, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271670] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10510), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10508), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [271708] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10512), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11281), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271776] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10516), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10514), 19, + anon_sym_STAR, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym_not, + anon_sym_lambda, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [271814] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10518), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(11436), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271882] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10520), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [271950] = 18, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10522), 1, + anon_sym_RPAREN, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272018] = 17, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(10524), 1, + sym_identifier, + ACTIONS(10526), 1, + anon_sym_LPAREN, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10530), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10538), 1, + anon_sym_DASH, + ACTIONS(10540), 1, + sym_integer, + ACTIONS(10542), 1, + sym_float, + STATE(10012), 1, + sym_string, + STATE(11057), 1, + sym_dotted_name, + STATE(11833), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12074), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10534), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11058), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272083] = 17, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + STATE(11844), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12022), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10418), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10989), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272148] = 16, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10450), 1, + sym_identifier, + ACTIONS(10452), 1, + anon_sym_LPAREN, + ACTIONS(10456), 1, + anon_sym_STAR, + ACTIONS(10458), 1, + anon_sym_STAR_STAR, + ACTIONS(10460), 1, + anon_sym_self, + ACTIONS(10462), 1, + anon_sym_SLASH, + ACTIONS(10544), 1, + anon_sym_RPAREN, + STATE(10320), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(12147), 1, + sym_tuple_pattern, + STATE(12402), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12192), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12285), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [272211] = 17, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10382), 1, + sym_identifier, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + STATE(12235), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12237), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10394), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11077), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272276] = 17, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11284), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11748), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10277), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10849), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272341] = 17, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(10836), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11748), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(10277), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10849), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272406] = 16, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10544), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12429), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [272469] = 16, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10450), 1, + sym_identifier, + ACTIONS(10452), 1, + anon_sym_LPAREN, + ACTIONS(10456), 1, + anon_sym_STAR, + ACTIONS(10458), 1, + anon_sym_STAR_STAR, + ACTIONS(10460), 1, + anon_sym_self, + ACTIONS(10462), 1, + anon_sym_SLASH, + ACTIONS(10546), 1, + anon_sym_RPAREN, + STATE(10320), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(12147), 1, + sym_tuple_pattern, + STATE(12402), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12192), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12285), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [272532] = 16, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + ACTIONS(10546), 1, + anon_sym_COLON, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12429), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [272595] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10550), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11065), 1, + sym_splat_pattern, + STATE(12111), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272661] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10554), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272727] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10556), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272793] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10558), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272859] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10560), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [272925] = 15, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_STAR, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10323), 1, + anon_sym_self, + ACTIONS(10325), 1, + anon_sym_SLASH, + STATE(10653), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(11972), 1, + sym_tuple_pattern, + STATE(12429), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12333), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12321), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [272985] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10562), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273051] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10564), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273117] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10566), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273183] = 15, + ACTIONS(10321), 1, + anon_sym_ref, + ACTIONS(10450), 1, + sym_identifier, + ACTIONS(10452), 1, + anon_sym_LPAREN, + ACTIONS(10456), 1, + anon_sym_STAR, + ACTIONS(10458), 1, + anon_sym_STAR_STAR, + ACTIONS(10460), 1, + anon_sym_self, + ACTIONS(10462), 1, + anon_sym_SLASH, + STATE(10320), 1, + sym_argument_convention, + STATE(11576), 1, + sym__ref_convention, + STATE(12147), 1, + sym_tuple_pattern, + STATE(12402), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12192), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(12285), 6, + sym_self_parameter, + sym_typed_parameter, + sym_default_parameter, + sym_typed_default_parameter, + sym_positional_separator, + sym_keyword_separator, + ACTIONS(10319), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [273243] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10568), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273309] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10570), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273375] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10572), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11158), 1, + sym_splat_pattern, + STATE(12142), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273441] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10574), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273507] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10576), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273573] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10578), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273639] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10580), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273705] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10582), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11147), 1, + sym_splat_pattern, + STATE(12098), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273771] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10584), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11106), 1, + sym_splat_pattern, + STATE(11933), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273837] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10586), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273903] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10588), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [273969] = 18, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_RBRACE, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274035] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9909), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7924), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9911), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6813), 2, + sym__not_in, + sym__is_not, + ACTIONS(9895), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [274082] = 17, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10548), 1, + sym_identifier, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + STATE(11712), 1, + sym_splat_pattern, + STATE(12371), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10552), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(12097), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274145] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9887), 1, + anon_sym_is, + STATE(7925), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9889), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(10307), 2, + anon_sym_as, + anon_sym_EQ, + STATE(6848), 2, + sym__not_in, + sym__is_not, + ACTIONS(9871), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [274192] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10595), 1, + anon_sym_is, + STATE(7924), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10598), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6813), 2, + sym__not_in, + sym__is_not, + ACTIONS(10592), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [274239] = 9, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10604), 1, + anon_sym_is, + STATE(7925), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10294), 2, + anon_sym_as, + anon_sym_EQ, + ACTIONS(10607), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6848), 2, + sym__not_in, + sym__is_not, + ACTIONS(10601), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [274286] = 15, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10610), 1, + sym_identifier, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10612), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11019), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274344] = 15, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(10526), 1, + anon_sym_LPAREN, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10530), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10538), 1, + anon_sym_DASH, + ACTIONS(10540), 1, + sym_integer, + ACTIONS(10542), 1, + sym_float, + ACTIONS(10614), 1, + sym_identifier, + STATE(10012), 1, + sym_string, + STATE(11057), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10616), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11184), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10516), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10514), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274436] = 15, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10618), 1, + sym_identifier, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10620), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11079), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10510), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10508), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10624), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10622), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274562] = 15, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(10526), 1, + anon_sym_LPAREN, + ACTIONS(10528), 1, + anon_sym_STAR, + ACTIONS(10530), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10536), 1, + anon_sym_STAR_STAR, + ACTIONS(10538), 1, + anon_sym_DASH, + ACTIONS(10540), 1, + sym_integer, + ACTIONS(10542), 1, + sym_float, + ACTIONS(10614), 1, + sym_identifier, + STATE(10012), 1, + sym_string, + STATE(11057), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10626), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11185), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274620] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10630), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10628), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274654] = 4, + ACTIONS(10632), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 9, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8199), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274690] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(8199), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274724] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10504), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(10502), 15, + anon_sym_print, + anon_sym_comptime, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + anon_sym_mut, + anon_sym_out, + anon_sym___mlir_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [274758] = 15, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10548), 1, + sym_identifier, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10634), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10534), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274816] = 15, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10265), 1, + anon_sym_LPAREN, + ACTIONS(10267), 1, + anon_sym_STAR, + ACTIONS(10273), 1, + anon_sym_LBRACK, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10279), 1, + anon_sym_STAR_STAR, + ACTIONS(10281), 1, + anon_sym_DASH, + ACTIONS(10283), 1, + sym_integer, + ACTIONS(10285), 1, + sym_float, + ACTIONS(10548), 1, + sym_identifier, + STATE(9767), 1, + sym_string, + STATE(10835), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10636), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(10521), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274874] = 15, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(10408), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + anon_sym_STAR, + ACTIONS(10412), 1, + anon_sym_LBRACK, + ACTIONS(10416), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + anon_sym_STAR_STAR, + ACTIONS(10422), 1, + anon_sym_DASH, + ACTIONS(10424), 1, + sym_integer, + ACTIONS(10426), 1, + sym_float, + ACTIONS(10610), 1, + sym_identifier, + STATE(9794), 1, + sym_string, + STATE(10988), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10638), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11020), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274932] = 15, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(10384), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_STAR, + ACTIONS(10390), 1, + anon_sym_LBRACK, + ACTIONS(10392), 1, + anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_STAR_STAR, + ACTIONS(10398), 1, + anon_sym_DASH, + ACTIONS(10400), 1, + sym_integer, + ACTIONS(10402), 1, + sym_float, + ACTIONS(10618), 1, + sym_identifier, + STATE(9891), 1, + sym_string, + STATE(11076), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10640), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(11073), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [274990] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9959), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9961), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6858), 2, + sym__not_in, + sym__is_not, + ACTIONS(9945), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275035] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10645), 1, + anon_sym_is, + STATE(7942), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10648), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6875), 2, + sym__not_in, + sym__is_not, + ACTIONS(10642), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275080] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(10031), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7946), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + ACTIONS(10017), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275125] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10654), 1, + anon_sym_is, + STATE(7944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10657), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6858), 2, + sym__not_in, + sym__is_not, + ACTIONS(10651), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275170] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9981), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7942), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9983), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6875), 2, + sym__not_in, + sym__is_not, + ACTIONS(9967), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275215] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10663), 1, + anon_sym_is, + STATE(7946), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10666), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6884), 2, + sym__not_in, + sym__is_not, + ACTIONS(10660), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [275260] = 9, + ACTIONS(10294), 1, + anon_sym_as, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10672), 1, + anon_sym_is, + STATE(7947), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10675), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6822), 2, + sym__not_in, + sym__is_not, + ACTIONS(10669), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [275303] = 9, + ACTIONS(10294), 1, + anon_sym_EQ, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10681), 1, + anon_sym_is, + STATE(7948), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10684), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6841), 2, + sym__not_in, + sym__is_not, + ACTIONS(10678), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [275346] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(9937), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_as, + STATE(7947), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9939), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6822), 2, + sym__not_in, + sym__is_not, + ACTIONS(9921), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [275389] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(10009), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_EQ, + STATE(7948), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6841), 2, + sym__not_in, + sym__is_not, + ACTIONS(9993), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [275432] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9464), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9455), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275464] = 9, + ACTIONS(10294), 1, + anon_sym_as, + ACTIONS(10296), 1, + anon_sym_not, + ACTIONS(10690), 1, + anon_sym_is, + STATE(7952), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10693), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6929), 2, + sym__not_in, + sym__is_not, + ACTIONS(10687), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10289), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [275506] = 7, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275544] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275576] = 9, + ACTIONS(9584), 1, + anon_sym_not, + ACTIONS(10077), 1, + anon_sym_is, + ACTIONS(10307), 1, + anon_sym_as, + STATE(7952), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10079), 2, + anon_sym_LT, + anon_sym_GT, + STATE(6929), 2, + sym__not_in, + sym__is_not, + ACTIONS(10061), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(10305), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [275618] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9275), 2, + anon_sym_def, + anon_sym_fn, + ACTIONS(1540), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275652] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9249), 2, + anon_sym_def, + anon_sym_fn, + ACTIONS(1540), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275686] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275718] = 7, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10698), 1, + anon_sym_COLON, + ACTIONS(10700), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275756] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9441), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275788] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9380), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9371), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275820] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275852] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275884] = 5, + ACTIONS(9245), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275917] = 5, + ACTIONS(9271), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275950] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10702), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [275985] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10704), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276020] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10706), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276055] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [276082] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [276109] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9446), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(9441), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276140] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276171] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276202] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9464), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(9455), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276233] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10710), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276268] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10712), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276303] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [276330] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276361] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10716), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276396] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10718), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276431] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10720), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276466] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276497] = 6, + ACTIONS(10722), 1, + anon_sym_LBRACK, + STATE(12356), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9279), 13, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276532] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10725), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276567] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10727), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276602] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10729), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276637] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10731), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276672] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10733), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276707] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10735), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276742] = 6, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(10737), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276777] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9380), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + ACTIONS(9371), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276808] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276838] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9327), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276868] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9327), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276898] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [276928] = 4, + ACTIONS(10741), 1, + anon_sym_COMMA, + STATE(7996), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [276958] = 14, + ACTIONS(9608), 1, + anon_sym_DOT, + ACTIONS(9618), 1, + anon_sym_LBRACK, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277008] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10035), 1, + anon_sym_DOT, + ACTIONS(10039), 1, + anon_sym_LBRACK, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277058] = 4, + ACTIONS(10744), 1, + anon_sym_COMMA, + STATE(7996), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5179), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [277088] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5761), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277118] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10053), 1, + anon_sym_DOT, + ACTIONS(10063), 1, + anon_sym_LBRACK, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277168] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5761), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277198] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + ACTIONS(10746), 1, + anon_sym_DOT, + ACTIONS(10748), 1, + anon_sym_LBRACK, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277248] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9985), 1, + anon_sym_DOT, + ACTIONS(9995), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277298] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9689), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277348] = 14, + ACTIONS(9556), 1, + anon_sym_DOT, + ACTIONS(9568), 1, + anon_sym_LBRACK, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277398] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9863), 1, + anon_sym_DOT, + ACTIONS(9873), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277448] = 14, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9913), 1, + anon_sym_DOT, + ACTIONS(9923), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277498] = 14, + ACTIONS(9638), 1, + anon_sym_DOT, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_LBRACK, + ACTIONS(10019), 1, + anon_sym_STAR_STAR, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_CARET, + ACTIONS(10029), 1, + anon_sym_AMP, + STATE(11839), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10013), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10015), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(10023), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(7280), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(10021), 3, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_PERCENT, + [277548] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10750), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277578] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10750), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277608] = 6, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277641] = 6, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(10764), 1, + anon_sym_LPAREN, + STATE(8316), 1, + sym_type_parameter, + STATE(8677), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277674] = 6, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277707] = 5, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(10770), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 15, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277738] = 4, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 16, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277767] = 3, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 17, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [277794] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9380), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9371), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277823] = 6, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [277856] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [277881] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277910] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277939] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277968] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [277997] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5761), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278026] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5761), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278055] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10750), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278084] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9464), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9455), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278113] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10750), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278142] = 6, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [278175] = 5, + ACTIONS(10698), 1, + anon_sym_COLON, + ACTIONS(10700), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278206] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [278231] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10779), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [278256] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10781), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [278281] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [278306] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278331] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9446), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9441), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278360] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278389] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278418] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9460), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9464), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9455), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278447] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278472] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9376), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9380), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(9371), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278501] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278530] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10764), 1, + anon_sym_LPAREN, + STATE(8548), 1, + sym_argument_list, + STATE(12328), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [278563] = 7, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [278598] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [278633] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 18, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278658] = 5, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278689] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9327), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278718] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9327), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278747] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 18, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278772] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278797] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 18, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278822] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1495), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278851] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10764), 1, + anon_sym_LPAREN, + STATE(8548), 1, + sym_argument_list, + STATE(12328), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [278884] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [278909] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9446), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9441), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278938] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9279), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278967] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9448), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [278996] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 18, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [279021] = 4, + ACTIONS(10706), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [279049] = 10, + ACTIONS(10792), 1, + anon_sym_DASH_GT, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + STATE(9754), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279089] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10806), 1, + anon_sym_DASH_GT, + ACTIONS(10808), 1, + anon_sym_thin, + STATE(9757), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8065), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279129] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10812), 1, + anon_sym_DASH_GT, + STATE(9706), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279169] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10816), 1, + anon_sym_DASH_GT, + STATE(9735), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279209] = 6, + ACTIONS(10818), 1, + anon_sym_as, + ACTIONS(10820), 1, + anon_sym_if, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279241] = 5, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(10826), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 14, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279271] = 4, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 15, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279299] = 3, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 16, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [279325] = 6, + ACTIONS(10818), 1, + anon_sym_as, + ACTIONS(10820), 1, + anon_sym_if, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279357] = 6, + ACTIONS(10818), 1, + anon_sym_as, + ACTIONS(10820), 1, + anon_sym_if, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279389] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [279423] = 7, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [279457] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [279481] = 7, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [279515] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [279549] = 6, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(10845), 1, + anon_sym_LPAREN, + STATE(8542), 1, + sym_type_parameter, + STATE(9440), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279581] = 4, + ACTIONS(10847), 1, + anon_sym_COMMA, + STATE(8078), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [279609] = 5, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10850), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [279639] = 4, + ACTIONS(10712), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [279667] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10845), 1, + anon_sym_LPAREN, + STATE(8848), 1, + sym_argument_list, + STATE(12286), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279699] = 6, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279731] = 5, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(10852), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279761] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(8630), 1, + sym_argument_list, + STATE(12438), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279793] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(8630), 1, + sym_argument_list, + STATE(12438), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279825] = 6, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(10857), 1, + anon_sym_COMMA, + STATE(8102), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [279857] = 6, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279889] = 4, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 15, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [279917] = 6, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279949] = 5, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(10859), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [279979] = 4, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280007] = 3, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [280033] = 4, + ACTIONS(10716), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [280061] = 3, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 16, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [280087] = 6, + ACTIONS(9861), 1, + anon_sym_LBRACK, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(8500), 1, + sym_type_parameter, + STATE(9024), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280119] = 6, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280151] = 4, + ACTIONS(10718), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [280179] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10864), 1, + anon_sym_DASH_GT, + ACTIONS(10866), 1, + anon_sym_thin, + STATE(9690), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8105), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280219] = 6, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280251] = 4, + ACTIONS(10720), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [280279] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [280303] = 4, + ACTIONS(10868), 1, + anon_sym_COMMA, + STATE(8078), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5179), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [280331] = 6, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280363] = 6, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280395] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10872), 1, + anon_sym_DASH_GT, + STATE(9720), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280435] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10845), 1, + anon_sym_LPAREN, + STATE(8848), 1, + sym_argument_list, + STATE(12286), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280467] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10876), 1, + anon_sym_DASH_GT, + ACTIONS(10878), 1, + anon_sym_thin, + STATE(9730), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8112), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280507] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10882), 1, + anon_sym_DASH_GT, + ACTIONS(10884), 1, + anon_sym_thin, + STATE(9748), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8156), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280547] = 6, + ACTIONS(10818), 1, + anon_sym_as, + ACTIONS(10820), 1, + anon_sym_if, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [280579] = 6, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280611] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10888), 1, + anon_sym_DASH_GT, + ACTIONS(10890), 1, + anon_sym_thin, + STATE(9702), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8160), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280651] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10894), 1, + anon_sym_DASH_GT, + STATE(9708), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280691] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10898), 1, + anon_sym_DASH_GT, + ACTIONS(10900), 1, + anon_sym_thin, + STATE(9709), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8166), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280731] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10904), 1, + anon_sym_DASH_GT, + ACTIONS(10906), 1, + anon_sym_thin, + STATE(9710), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8169), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280771] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10908), 1, + anon_sym_DASH_GT, + ACTIONS(10910), 1, + anon_sym_thin, + STATE(8849), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8116), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280811] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10912), 1, + anon_sym_DASH_GT, + STATE(8850), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280851] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10914), 1, + anon_sym_DASH_GT, + ACTIONS(10916), 1, + anon_sym_thin, + STATE(8851), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8120), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280891] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10918), 1, + anon_sym_DASH_GT, + ACTIONS(10920), 1, + anon_sym_thin, + STATE(8852), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8123), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280931] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10922), 1, + anon_sym_DASH_GT, + ACTIONS(10924), 1, + anon_sym_thin, + STATE(8853), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8125), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [280971] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10926), 1, + anon_sym_DASH_GT, + STATE(8854), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281011] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10928), 1, + anon_sym_DASH_GT, + ACTIONS(10930), 1, + anon_sym_thin, + STATE(8855), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8128), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281051] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10932), 1, + anon_sym_DASH_GT, + ACTIONS(10934), 1, + anon_sym_thin, + STATE(8856), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8129), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281091] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10938), 1, + anon_sym_DASH_GT, + STATE(8857), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281131] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10942), 1, + anon_sym_DASH_GT, + ACTIONS(10944), 1, + anon_sym_thin, + STATE(8858), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8132), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281171] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10948), 1, + anon_sym_DASH_GT, + STATE(8859), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281211] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10952), 1, + anon_sym_DASH_GT, + ACTIONS(10954), 1, + anon_sym_thin, + STATE(8860), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8135), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281251] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10958), 1, + anon_sym_DASH_GT, + ACTIONS(10960), 1, + anon_sym_thin, + STATE(8861), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8136), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281291] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10964), 1, + anon_sym_DASH_GT, + STATE(8862), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281331] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10968), 1, + anon_sym_DASH_GT, + STATE(8863), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281371] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10972), 1, + anon_sym_DASH_GT, + ACTIONS(10974), 1, + anon_sym_thin, + STATE(8864), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8138), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281411] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10978), 1, + anon_sym_DASH_GT, + ACTIONS(10980), 1, + anon_sym_thin, + STATE(8865), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8139), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281451] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10984), 1, + anon_sym_DASH_GT, + STATE(8866), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281491] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10988), 1, + anon_sym_DASH_GT, + STATE(9750), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281531] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10992), 1, + anon_sym_DASH_GT, + ACTIONS(10994), 1, + anon_sym_thin, + STATE(8868), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8143), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281571] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10998), 1, + anon_sym_DASH_GT, + STATE(8869), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281611] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11002), 1, + anon_sym_DASH_GT, + STATE(8870), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281651] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11006), 1, + anon_sym_DASH_GT, + ACTIONS(11008), 1, + anon_sym_thin, + STATE(8871), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8145), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281691] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11012), 1, + anon_sym_DASH_GT, + STATE(8872), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281731] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11016), 1, + anon_sym_DASH_GT, + STATE(8873), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281771] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11020), 1, + anon_sym_DASH_GT, + ACTIONS(11022), 1, + anon_sym_thin, + STATE(8874), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8146), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281811] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11026), 1, + anon_sym_DASH_GT, + ACTIONS(11028), 1, + anon_sym_thin, + STATE(8875), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8147), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281851] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11032), 1, + anon_sym_DASH_GT, + STATE(8876), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281891] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11036), 1, + anon_sym_DASH_GT, + STATE(8877), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281931] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11040), 1, + anon_sym_DASH_GT, + ACTIONS(11042), 1, + anon_sym_thin, + STATE(8878), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8149), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [281971] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11046), 1, + anon_sym_DASH_GT, + STATE(8879), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282011] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11048), 1, + anon_sym_DASH_GT, + STATE(8880), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282051] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11050), 1, + anon_sym_DASH_GT, + STATE(8881), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282091] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11052), 1, + anon_sym_DASH_GT, + ACTIONS(11054), 1, + anon_sym_thin, + STATE(8882), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8150), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282131] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11056), 1, + anon_sym_DASH_GT, + STATE(8883), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282171] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11058), 1, + anon_sym_DASH_GT, + STATE(8884), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282211] = 4, + ACTIONS(10704), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282239] = 4, + ACTIONS(10725), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282267] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10779), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [282291] = 4, + ACTIONS(10727), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282319] = 4, + ACTIONS(10702), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282347] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11060), 1, + anon_sym_DASH_GT, + STATE(9717), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282387] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11062), 1, + anon_sym_DASH_GT, + ACTIONS(11064), 1, + anon_sym_thin, + STATE(9718), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8174), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282427] = 4, + ACTIONS(10729), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282455] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10781), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [282479] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11066), 1, + anon_sym_DASH_GT, + STATE(9732), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282519] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11068), 1, + anon_sym_DASH_GT, + ACTIONS(11070), 1, + anon_sym_thin, + STATE(9770), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8177), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282559] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11072), 1, + anon_sym_DASH_GT, + ACTIONS(11074), 1, + anon_sym_thin, + STATE(9743), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8178), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282599] = 4, + ACTIONS(10731), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [282627] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282659] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282691] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11076), 1, + anon_sym_DASH_GT, + STATE(9755), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282731] = 6, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(11078), 1, + anon_sym_COMMA, + STATE(7999), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [282763] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8538), 1, + sym_type_parameter, + STATE(9267), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282795] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11080), 1, + anon_sym_DASH_GT, + STATE(9695), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282835] = 5, + ACTIONS(10764), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8548), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282865] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11084), 1, + anon_sym_DASH_GT, + ACTIONS(11086), 1, + anon_sym_thin, + STATE(9697), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8181), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282905] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11088), 1, + anon_sym_DASH_GT, + ACTIONS(11090), 1, + anon_sym_thin, + STATE(9699), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8182), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [282945] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [282977] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11092), 1, + anon_sym_DASH_GT, + STATE(9701), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283017] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11096), 1, + anon_sym_DASH_GT, + ACTIONS(11098), 1, + anon_sym_thin, + STATE(9703), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8191), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283057] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11100), 1, + anon_sym_DASH_GT, + ACTIONS(11102), 1, + anon_sym_thin, + STATE(9725), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8192), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283097] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11104), 1, + anon_sym_DASH_GT, + STATE(9736), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283137] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11106), 1, + anon_sym_DASH_GT, + STATE(9741), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283177] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11108), 1, + anon_sym_DASH_GT, + ACTIONS(11110), 1, + anon_sym_thin, + STATE(9742), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8194), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283217] = 4, + ACTIONS(10733), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [283245] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11112), 1, + anon_sym_DASH_GT, + STATE(9751), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283285] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11114), 1, + anon_sym_DASH_GT, + STATE(9689), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283325] = 7, + ACTIONS(10818), 1, + anon_sym_as, + ACTIONS(10820), 1, + anon_sym_if, + ACTIONS(10822), 1, + anon_sym_and, + ACTIONS(10824), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [283359] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [283393] = 4, + ACTIONS(10735), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [283421] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11116), 1, + anon_sym_DASH_GT, + ACTIONS(11118), 1, + anon_sym_thin, + STATE(9759), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8133), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283461] = 4, + ACTIONS(10737), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [283489] = 5, + ACTIONS(10764), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8548), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283519] = 4, + ACTIONS(10710), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9384), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [283547] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11120), 1, + anon_sym_DASH_GT, + ACTIONS(11122), 1, + anon_sym_thin, + STATE(9760), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8062), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283587] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11124), 1, + anon_sym_DASH_GT, + STATE(9763), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283627] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11126), 1, + anon_sym_DASH_GT, + STATE(9764), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283667] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11128), 1, + anon_sym_DASH_GT, + ACTIONS(11130), 1, + anon_sym_thin, + STATE(9765), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8064), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283707] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10800), 1, + anon_sym_thin, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11132), 1, + anon_sym_DASH_GT, + STATE(9768), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283747] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10796), 1, + anon_sym_raises, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11134), 1, + anon_sym_DASH_GT, + ACTIONS(11136), 1, + anon_sym_thin, + STATE(8867), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8142), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [283787] = 10, + ACTIONS(11138), 1, + anon_sym_DASH_GT, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + STATE(9869), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [283826] = 14, + ACTIONS(11150), 1, + anon_sym_COLON, + ACTIONS(11152), 1, + anon_sym_DASH_GT, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11160), 1, + anon_sym_thin, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + STATE(8620), 1, + sym_unified_clause, + STATE(11162), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8619), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11728), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [283873] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11168), 1, + anon_sym_COLON, + ACTIONS(11170), 1, + anon_sym_DASH_GT, + ACTIONS(11172), 1, + anon_sym_thin, + STATE(8622), 1, + sym_unified_clause, + STATE(11176), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8621), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11797), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [283920] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11174), 1, + anon_sym_COLON, + ACTIONS(11176), 1, + anon_sym_DASH_GT, + ACTIONS(11178), 1, + anon_sym_thin, + STATE(8834), 1, + sym_unified_clause, + STATE(11117), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8833), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11566), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [283967] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11180), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [283990] = 10, + ACTIONS(11182), 1, + anon_sym_DASH_GT, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11190), 1, + anon_sym_thin, + ACTIONS(11192), 1, + anon_sym_abi, + STATE(10088), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8214), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284029] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11194), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [284052] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11196), 1, + anon_sym_DASH_GT, + ACTIONS(11198), 1, + anon_sym_thin, + STATE(9825), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284091] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11200), 1, + anon_sym_DASH_GT, + ACTIONS(11202), 1, + anon_sym_thin, + STATE(10093), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8218), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284130] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11204), 1, + anon_sym_DASH_GT, + ACTIONS(11206), 1, + anon_sym_thin, + STATE(9775), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8219), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284169] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11208), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [284192] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11210), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [284215] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11212), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [284238] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11214), 1, + anon_sym_DASH_GT, + STATE(9895), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284277] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11216), 1, + anon_sym_DASH_GT, + ACTIONS(11218), 1, + anon_sym_thin, + STATE(9922), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8223), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284316] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11220), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [284339] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11222), 1, + anon_sym_DASH_GT, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + STATE(9888), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [284378] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11228), 1, + anon_sym_DASH_GT, + ACTIONS(11230), 1, + anon_sym_thin, + STATE(9971), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8317), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284417] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11232), 1, + anon_sym_DASH_GT, + STATE(9797), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284456] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11234), 1, + anon_sym_DASH_GT, + ACTIONS(11236), 1, + anon_sym_thin, + STATE(9803), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8256), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284495] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11238), 1, + anon_sym_DASH_GT, + ACTIONS(11240), 1, + anon_sym_thin, + STATE(9945), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8263), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284534] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11242), 1, + anon_sym_COLON, + ACTIONS(11244), 1, + anon_sym_DASH_GT, + ACTIONS(11246), 1, + anon_sym_thin, + STATE(8843), 1, + sym_unified_clause, + STATE(11039), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8827), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11520), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [284581] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11248), 1, + anon_sym_DASH_GT, + STATE(9850), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284620] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11250), 1, + anon_sym_DASH_GT, + STATE(9909), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284659] = 5, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8630), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [284688] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11252), 1, + anon_sym_DASH_GT, + ACTIONS(11254), 1, + anon_sym_thin, + STATE(9931), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8275), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284727] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11256), 1, + anon_sym_DASH_GT, + ACTIONS(11258), 1, + anon_sym_thin, + STATE(10048), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8282), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284766] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11260), 1, + anon_sym_DASH_GT, + STATE(9846), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284805] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11262), 1, + anon_sym_DASH_GT, + ACTIONS(11264), 1, + anon_sym_thin, + STATE(9851), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8288), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284844] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11266), 1, + anon_sym_DASH_GT, + ACTIONS(11268), 1, + anon_sym_thin, + STATE(9901), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8290), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [284883] = 5, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8630), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [284912] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11270), 1, + anon_sym_DASH_GT, + ACTIONS(11272), 1, + anon_sym_thin, + STATE(9801), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8251), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [284951] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11274), 1, + anon_sym_DASH_GT, + STATE(10092), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [284990] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11276), 1, + anon_sym_DASH_GT, + STATE(10011), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285029] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11278), 1, + anon_sym_DASH_GT, + ACTIONS(11280), 1, + anon_sym_thin, + STATE(9897), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8364), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285068] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11282), 1, + anon_sym_DASH_GT, + ACTIONS(11284), 1, + anon_sym_thin, + STATE(9998), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8238), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [285107] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11286), 1, + anon_sym_DASH_GT, + STATE(9802), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285146] = 11, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12519), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285187] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10261), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [285210] = 7, + ACTIONS(10829), 1, + anon_sym_as, + ACTIONS(10831), 1, + anon_sym_if, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10835), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [285243] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [285276] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11300), 1, + anon_sym_COLON, + ACTIONS(11302), 1, + anon_sym_DASH_GT, + ACTIONS(11304), 1, + anon_sym_thin, + STATE(8637), 1, + sym_unified_clause, + STATE(10990), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8636), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11752), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285323] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11306), 1, + anon_sym_DASH_GT, + STATE(9848), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [285362] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11308), 1, + anon_sym_DASH_GT, + ACTIONS(11310), 1, + anon_sym_thin, + STATE(9893), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8258), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [285401] = 4, + ACTIONS(11312), 1, + anon_sym_LBRACK, + STATE(8647), 1, + sym_capture_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4193), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285428] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11314), 1, + anon_sym_DASH_GT, + ACTIONS(11316), 1, + anon_sym_thin, + STATE(9976), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8261), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [285467] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11318), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285490] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11320), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [285513] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11324), 1, + anon_sym_DASH_GT, + ACTIONS(11326), 1, + anon_sym_thin, + STATE(8643), 1, + sym_unified_clause, + STATE(11001), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8642), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11201), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285560] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11328), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [285583] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11330), 1, + anon_sym_COLON, + ACTIONS(11332), 1, + anon_sym_DASH_GT, + ACTIONS(11334), 1, + anon_sym_thin, + STATE(8646), 1, + sym_unified_clause, + STATE(11012), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8645), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11224), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285630] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11336), 1, + anon_sym_COLON, + ACTIONS(11338), 1, + anon_sym_DASH_GT, + ACTIONS(11340), 1, + anon_sym_thin, + STATE(8676), 1, + sym_unified_clause, + STATE(10939), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8666), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11716), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285677] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [285708] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11342), 1, + anon_sym_DASH_GT, + STATE(9868), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285747] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11344), 1, + anon_sym_COLON, + ACTIONS(11346), 1, + anon_sym_DASH_GT, + ACTIONS(11348), 1, + anon_sym_thin, + STATE(8650), 1, + sym_unified_clause, + STATE(11026), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8649), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11254), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285794] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11350), 1, + anon_sym_DASH_GT, + STATE(10002), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [285833] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11352), 1, + anon_sym_COLON, + ACTIONS(11354), 1, + anon_sym_DASH_GT, + ACTIONS(11356), 1, + anon_sym_thin, + STATE(8655), 1, + sym_unified_clause, + STATE(11062), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8654), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11359), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285880] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11358), 1, + anon_sym_COLON, + ACTIONS(11360), 1, + anon_sym_DASH_GT, + ACTIONS(11362), 1, + anon_sym_thin, + STATE(8659), 1, + sym_unified_clause, + STATE(11075), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8658), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11411), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285927] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11364), 1, + anon_sym_COLON, + ACTIONS(11366), 1, + anon_sym_DASH_GT, + ACTIONS(11368), 1, + anon_sym_thin, + STATE(8662), 1, + sym_unified_clause, + STATE(11086), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8661), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11451), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [285974] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11370), 1, + anon_sym_COLON, + ACTIONS(11372), 1, + anon_sym_DASH_GT, + ACTIONS(11374), 1, + anon_sym_thin, + STATE(8664), 1, + sym_unified_clause, + STATE(11088), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8663), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11462), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [286021] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11376), 1, + anon_sym_DASH_GT, + STATE(9810), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286060] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11378), 1, + anon_sym_DASH_GT, + ACTIONS(11380), 1, + anon_sym_thin, + STATE(9852), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8268), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286099] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11382), 1, + anon_sym_DASH_GT, + STATE(9920), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286138] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11384), 1, + anon_sym_DASH_GT, + ACTIONS(11386), 1, + anon_sym_thin, + STATE(9925), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8272), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286177] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11388), 1, + anon_sym_DASH_GT, + ACTIONS(11390), 1, + anon_sym_thin, + STATE(9936), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8273), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286216] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11392), 1, + anon_sym_DASH_GT, + STATE(9961), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286255] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11394), 1, + anon_sym_DASH_GT, + ACTIONS(11396), 1, + anon_sym_thin, + STATE(9966), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8277), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286294] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11398), 1, + anon_sym_DASH_GT, + STATE(9841), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286333] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11400), 1, + anon_sym_DASH_GT, + ACTIONS(11402), 1, + anon_sym_thin, + STATE(9843), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8311), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286372] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11404), 1, + anon_sym_COLON, + ACTIONS(11406), 1, + anon_sym_DASH_GT, + ACTIONS(11408), 1, + anon_sym_thin, + STATE(8669), 1, + sym_unified_clause, + STATE(11121), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8668), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11579), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [286419] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11410), 1, + anon_sym_COLON, + ACTIONS(11412), 1, + anon_sym_DASH_GT, + ACTIONS(11414), 1, + anon_sym_thin, + STATE(8671), 1, + sym_unified_clause, + STATE(11123), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8670), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11581), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [286466] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11416), 1, + anon_sym_COLON, + ACTIONS(11418), 1, + anon_sym_DASH_GT, + ACTIONS(11420), 1, + anon_sym_thin, + STATE(8675), 1, + sym_unified_clause, + STATE(11141), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8674), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11648), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [286513] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11422), 1, + anon_sym_DASH_GT, + STATE(10053), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286552] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11424), 1, + anon_sym_DASH_GT, + ACTIONS(11426), 1, + anon_sym_thin, + STATE(10061), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8281), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286591] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11428), 1, + anon_sym_DASH_GT, + ACTIONS(11430), 1, + anon_sym_thin, + STATE(10073), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8283), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286630] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11432), 1, + anon_sym_COLON, + ACTIONS(11434), 1, + anon_sym_DASH_GT, + ACTIONS(11436), 1, + anon_sym_thin, + STATE(8682), 1, + sym_unified_clause, + STATE(11177), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8681), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11762), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [286677] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11438), 1, + anon_sym_DASH_GT, + STATE(9814), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286716] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11440), 1, + anon_sym_DASH_GT, + STATE(9857), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286755] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11442), 1, + anon_sym_DASH_GT, + ACTIONS(11444), 1, + anon_sym_thin, + STATE(9885), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8289), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286794] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11446), 1, + anon_sym_DASH_GT, + STATE(9863), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286833] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11448), 1, + anon_sym_DASH_GT, + ACTIONS(11450), 1, + anon_sym_thin, + STATE(9938), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8196), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286872] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11452), 1, + anon_sym_DASH_GT, + STATE(10026), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286911] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11454), 1, + anon_sym_DASH_GT, + ACTIONS(11456), 1, + anon_sym_thin, + STATE(10028), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8295), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286950] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11458), 1, + anon_sym_DASH_GT, + ACTIONS(11460), 1, + anon_sym_thin, + STATE(10060), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8296), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [286989] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11462), 1, + anon_sym_DASH_GT, + ACTIONS(11464), 1, + anon_sym_thin, + STATE(10019), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8212), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [287028] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(9805), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287067] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11468), 1, + anon_sym_DASH_GT, + STATE(9873), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287106] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11470), 1, + anon_sym_DASH_GT, + STATE(9813), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287145] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11472), 1, + anon_sym_DASH_GT, + ACTIONS(11474), 1, + anon_sym_thin, + STATE(9817), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8298), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287184] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11476), 1, + anon_sym_DASH_GT, + ACTIONS(11478), 1, + anon_sym_thin, + STATE(9874), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8312), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287223] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11480), 1, + anon_sym_DASH_GT, + ACTIONS(11482), 1, + anon_sym_thin, + STATE(9879), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8313), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287262] = 5, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [287291] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11484), 1, + anon_sym_DASH_GT, + STATE(9905), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287330] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11486), 1, + anon_sym_DASH_GT, + STATE(9842), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287369] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11488), 1, + anon_sym_DASH_GT, + STATE(9912), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287408] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11490), 1, + anon_sym_DASH_GT, + ACTIONS(11492), 1, + anon_sym_thin, + STATE(9917), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8315), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287447] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [287478] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11494), 1, + anon_sym_DASH_GT, + ACTIONS(11496), 1, + anon_sym_thin, + STATE(9870), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8300), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287517] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11498), 1, + anon_sym_DASH_GT, + ACTIONS(11500), 1, + anon_sym_thin, + STATE(9884), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8301), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287556] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11502), 1, + anon_sym_DASH_GT, + STATE(9910), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287595] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11504), 1, + anon_sym_DASH_GT, + STATE(9928), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287634] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11506), 1, + anon_sym_DASH_GT, + ACTIONS(11508), 1, + anon_sym_thin, + STATE(9940), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8304), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287673] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11510), 1, + anon_sym_DASH_GT, + STATE(10032), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287712] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11512), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [287735] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11514), 1, + anon_sym_DASH_GT, + STATE(10055), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287774] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + STATE(10062), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287813] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(11520), 1, + anon_sym_thin, + STATE(10064), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8308), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287852] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11522), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [287875] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11524), 1, + anon_sym_DASH_GT, + STATE(10086), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [287914] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11526), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [287937] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11528), 1, + anon_sym_COLON, + ACTIONS(11530), 1, + anon_sym_DASH_GT, + ACTIONS(11532), 1, + anon_sym_thin, + STATE(8842), 1, + sym_unified_clause, + STATE(11069), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8829), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11485), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [287984] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288007] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11536), 1, + anon_sym_DASH_GT, + STATE(9856), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288046] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288069] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11538), 1, + anon_sym_DASH_GT, + STATE(9818), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288108] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11540), 1, + anon_sym_DASH_GT, + STATE(9772), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288147] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11542), 1, + anon_sym_DASH_GT, + STATE(9793), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288186] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11544), 1, + anon_sym_DASH_GT, + STATE(9795), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288225] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11546), 1, + anon_sym_DASH_GT, + ACTIONS(11548), 1, + anon_sym_thin, + STATE(9796), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8378), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288264] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11550), 1, + anon_sym_DASH_GT, + STATE(9840), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288303] = 4, + ACTIONS(10764), 1, + anon_sym_LPAREN, + STATE(8690), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288330] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11554), 1, + anon_sym_DASH_GT, + STATE(10027), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288369] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11556), 1, + anon_sym_DASH_GT, + ACTIONS(11558), 1, + anon_sym_thin, + STATE(10038), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8203), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288408] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11560), 1, + anon_sym_DASH_GT, + ACTIONS(11562), 1, + anon_sym_thin, + STATE(9820), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8487), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288447] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11564), 1, + anon_sym_DASH_GT, + STATE(9816), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288486] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11566), 1, + anon_sym_DASH_GT, + ACTIONS(11568), 1, + anon_sym_thin, + STATE(9967), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8348), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288525] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11570), 1, + anon_sym_DASH_GT, + ACTIONS(11572), 1, + anon_sym_thin, + STATE(10046), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8352), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288564] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11574), 1, + anon_sym_DASH_GT, + STATE(10037), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288603] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11576), 1, + anon_sym_DASH_GT, + ACTIONS(11578), 1, + anon_sym_thin, + STATE(9899), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8365), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288642] = 7, + ACTIONS(10754), 1, + anon_sym_as, + ACTIONS(10756), 1, + anon_sym_if, + ACTIONS(10758), 1, + anon_sym_and, + ACTIONS(10760), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [288675] = 7, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [288708] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(11582), 1, + anon_sym_thin, + STATE(10080), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8209), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [288747] = 5, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288776] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11584), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288799] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11586), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288822] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11588), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288845] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288868] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11592), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288891] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11594), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288914] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11596), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288937] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [288960] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11598), 1, + anon_sym_DASH_GT, + STATE(9876), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [288999] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11600), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289022] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11602), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289045] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11604), 1, + anon_sym_COLON, + ACTIONS(11606), 1, + anon_sym_DASH_GT, + ACTIONS(11608), 1, + anon_sym_thin, + STATE(8626), 1, + sym_unified_clause, + STATE(11102), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8624), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11505), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [289092] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11610), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289115] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11612), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289138] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11614), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289161] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11616), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [289184] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11618), 1, + anon_sym_DASH_GT, + ACTIONS(11620), 1, + anon_sym_thin, + STATE(9877), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8228), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289223] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11622), 1, + anon_sym_DASH_GT, + ACTIONS(11624), 1, + anon_sym_thin, + STATE(9892), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8229), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289262] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11626), 1, + anon_sym_DASH_GT, + STATE(9943), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289301] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11628), 1, + anon_sym_DASH_GT, + STATE(9979), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289340] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11630), 1, + anon_sym_DASH_GT, + STATE(9965), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289379] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11632), 1, + anon_sym_DASH_GT, + ACTIONS(11634), 1, + anon_sym_thin, + STATE(9970), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8232), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289418] = 7, + ACTIONS(11638), 1, + anon_sym_raises, + ACTIONS(11644), 1, + anon_sym_thin, + ACTIONS(11647), 1, + anon_sym_abi, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11641), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8351), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289451] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11650), 1, + anon_sym_DASH_GT, + STATE(9986), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289490] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11652), 1, + anon_sym_COLON, + ACTIONS(11654), 1, + anon_sym_DASH_GT, + ACTIONS(11656), 1, + anon_sym_thin, + STATE(8694), 1, + sym_unified_clause, + STATE(11013), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8693), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11225), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [289537] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11658), 1, + anon_sym_COLON, + ACTIONS(11660), 1, + anon_sym_DASH_GT, + ACTIONS(11662), 1, + anon_sym_thin, + STATE(8696), 1, + sym_unified_clause, + STATE(11018), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8695), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11243), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [289584] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11664), 1, + anon_sym_DASH_GT, + ACTIONS(11666), 1, + anon_sym_thin, + STATE(9988), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8310), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289623] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11668), 1, + anon_sym_DASH_GT, + STATE(9969), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289662] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11670), 1, + anon_sym_DASH_GT, + ACTIONS(11672), 1, + anon_sym_thin, + STATE(9980), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8320), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289701] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11674), 1, + anon_sym_DASH_GT, + ACTIONS(11676), 1, + anon_sym_thin, + STATE(10035), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8323), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289740] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11678), 1, + anon_sym_COLON, + ACTIONS(11680), 1, + anon_sym_DASH_GT, + ACTIONS(11682), 1, + anon_sym_thin, + STATE(8836), 1, + sym_unified_clause, + STATE(11105), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8835), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11615), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [289787] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11684), 1, + anon_sym_DASH_GT, + ACTIONS(11686), 1, + anon_sym_thin, + STATE(9785), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8356), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9834), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9832), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + [289851] = 5, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8848), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [289880] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11688), 1, + anon_sym_DASH_GT, + ACTIONS(11690), 1, + anon_sym_thin, + STATE(10089), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8337), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289919] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11692), 1, + anon_sym_DASH_GT, + STATE(9824), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289958] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11694), 1, + anon_sym_DASH_GT, + STATE(9957), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [289997] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11696), 1, + anon_sym_DASH_GT, + ACTIONS(11698), 1, + anon_sym_thin, + STATE(10030), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8347), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290036] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11700), 1, + anon_sym_DASH_GT, + ACTIONS(11702), 1, + anon_sym_thin, + STATE(9921), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8349), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290075] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11704), 1, + anon_sym_DASH_GT, + ACTIONS(11706), 1, + anon_sym_thin, + STATE(9279), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8369), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290114] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11708), 1, + anon_sym_DASH_GT, + STATE(9284), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290153] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11710), 1, + anon_sym_DASH_GT, + ACTIONS(11712), 1, + anon_sym_thin, + STATE(9285), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8373), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290192] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11714), 1, + anon_sym_DASH_GT, + ACTIONS(11716), 1, + anon_sym_thin, + STATE(9288), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8376), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290231] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11718), 1, + anon_sym_DASH_GT, + ACTIONS(11720), 1, + anon_sym_thin, + STATE(9289), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8379), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290270] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11722), 1, + anon_sym_DASH_GT, + STATE(9290), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290309] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11724), 1, + anon_sym_DASH_GT, + ACTIONS(11726), 1, + anon_sym_thin, + STATE(9291), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8382), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290348] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11728), 1, + anon_sym_DASH_GT, + ACTIONS(11730), 1, + anon_sym_thin, + STATE(9293), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8383), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290387] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11732), 1, + anon_sym_DASH_GT, + STATE(9296), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290426] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(11736), 1, + anon_sym_thin, + STATE(9297), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8386), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290465] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11738), 1, + anon_sym_DASH_GT, + STATE(9860), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [290504] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11740), 1, + anon_sym_DASH_GT, + STATE(9299), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290543] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11742), 1, + anon_sym_DASH_GT, + ACTIONS(11744), 1, + anon_sym_thin, + STATE(9300), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8389), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290582] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11746), 1, + anon_sym_DASH_GT, + ACTIONS(11748), 1, + anon_sym_thin, + STATE(9302), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8390), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290621] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11750), 1, + anon_sym_DASH_GT, + STATE(9303), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290660] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11752), 1, + anon_sym_DASH_GT, + STATE(9304), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290699] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11754), 1, + anon_sym_DASH_GT, + ACTIONS(11756), 1, + anon_sym_thin, + STATE(9305), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8392), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290738] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11758), 1, + anon_sym_DASH_GT, + ACTIONS(11760), 1, + anon_sym_thin, + STATE(9306), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8393), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290777] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11762), 1, + anon_sym_DASH_GT, + STATE(9308), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290816] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11764), 1, + anon_sym_DASH_GT, + ACTIONS(11766), 1, + anon_sym_thin, + STATE(9309), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8396), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290855] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11768), 1, + anon_sym_DASH_GT, + ACTIONS(11770), 1, + anon_sym_thin, + STATE(9310), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8397), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290894] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11772), 1, + anon_sym_DASH_GT, + STATE(9314), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290933] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11774), 1, + anon_sym_DASH_GT, + STATE(9315), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [290972] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11776), 1, + anon_sym_DASH_GT, + ACTIONS(11778), 1, + anon_sym_thin, + STATE(9316), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8399), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291011] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11780), 1, + anon_sym_DASH_GT, + STATE(9317), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291050] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11782), 1, + anon_sym_DASH_GT, + STATE(9318), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291089] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11784), 1, + anon_sym_DASH_GT, + ACTIONS(11786), 1, + anon_sym_thin, + STATE(9319), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8400), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291128] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11788), 1, + anon_sym_DASH_GT, + ACTIONS(11790), 1, + anon_sym_thin, + STATE(9320), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8401), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291167] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11792), 1, + anon_sym_DASH_GT, + STATE(9321), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291206] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11794), 1, + anon_sym_DASH_GT, + STATE(9322), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291245] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11796), 1, + anon_sym_DASH_GT, + ACTIONS(11798), 1, + anon_sym_thin, + STATE(9323), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8403), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291284] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11800), 1, + anon_sym_DASH_GT, + STATE(9326), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291323] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11802), 1, + anon_sym_DASH_GT, + STATE(9327), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291362] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11804), 1, + anon_sym_DASH_GT, + STATE(9328), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291401] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11806), 1, + anon_sym_DASH_GT, + ACTIONS(11808), 1, + anon_sym_thin, + STATE(9329), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8404), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291440] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11810), 1, + anon_sym_DASH_GT, + STATE(9331), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291479] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(11812), 1, + anon_sym_DASH_GT, + STATE(9335), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [291518] = 5, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8848), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [291547] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(11814), 1, + anon_sym_COLON, + ACTIONS(11816), 1, + anon_sym_DASH_GT, + ACTIONS(11818), 1, + anon_sym_thin, + STATE(8657), 1, + sym_unified_clause, + STATE(11142), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8656), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11654), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [291594] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11820), 1, + anon_sym_DASH_GT, + ACTIONS(11822), 1, + anon_sym_thin, + STATE(9336), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8408), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291633] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11824), 1, + anon_sym_DASH_GT, + STATE(9337), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291672] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11826), 1, + anon_sym_DASH_GT, + ACTIONS(11828), 1, + anon_sym_thin, + STATE(9339), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8412), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291711] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11830), 1, + anon_sym_DASH_GT, + ACTIONS(11832), 1, + anon_sym_thin, + STATE(9340), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8415), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291750] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11834), 1, + anon_sym_DASH_GT, + ACTIONS(11836), 1, + anon_sym_thin, + STATE(9341), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8417), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291789] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11838), 1, + anon_sym_DASH_GT, + STATE(9342), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291828] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11840), 1, + anon_sym_DASH_GT, + ACTIONS(11842), 1, + anon_sym_thin, + STATE(9343), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8420), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291867] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11844), 1, + anon_sym_DASH_GT, + ACTIONS(11846), 1, + anon_sym_thin, + STATE(9344), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8421), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291906] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11848), 1, + anon_sym_DASH_GT, + STATE(9345), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291945] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11850), 1, + anon_sym_DASH_GT, + ACTIONS(11852), 1, + anon_sym_thin, + STATE(9346), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8424), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [291984] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11854), 1, + anon_sym_DASH_GT, + STATE(9347), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292023] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11856), 1, + anon_sym_DASH_GT, + ACTIONS(11858), 1, + anon_sym_thin, + STATE(9348), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8427), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292062] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11860), 1, + anon_sym_DASH_GT, + ACTIONS(11862), 1, + anon_sym_thin, + STATE(9349), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8428), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292101] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11864), 1, + anon_sym_DASH_GT, + STATE(9350), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292140] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11866), 1, + anon_sym_DASH_GT, + STATE(9351), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292179] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11868), 1, + anon_sym_DASH_GT, + ACTIONS(11870), 1, + anon_sym_thin, + STATE(9352), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8430), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292218] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11872), 1, + anon_sym_DASH_GT, + ACTIONS(11874), 1, + anon_sym_thin, + STATE(9353), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8431), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292257] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11876), 1, + anon_sym_DASH_GT, + STATE(9355), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292296] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11878), 1, + anon_sym_DASH_GT, + ACTIONS(11880), 1, + anon_sym_thin, + STATE(9356), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8434), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292335] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11882), 1, + anon_sym_DASH_GT, + ACTIONS(11884), 1, + anon_sym_thin, + STATE(9357), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8435), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292374] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11886), 1, + anon_sym_DASH_GT, + STATE(9358), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292413] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11888), 1, + anon_sym_DASH_GT, + STATE(9359), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292452] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11890), 1, + anon_sym_DASH_GT, + ACTIONS(11892), 1, + anon_sym_thin, + STATE(9360), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8437), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292491] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11894), 1, + anon_sym_DASH_GT, + STATE(9361), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292530] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11896), 1, + anon_sym_DASH_GT, + STATE(9362), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292569] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11898), 1, + anon_sym_DASH_GT, + ACTIONS(11900), 1, + anon_sym_thin, + STATE(9363), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8438), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292608] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11902), 1, + anon_sym_DASH_GT, + ACTIONS(11904), 1, + anon_sym_thin, + STATE(9364), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8439), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292647] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11906), 1, + anon_sym_DASH_GT, + STATE(9366), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292686] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11908), 1, + anon_sym_DASH_GT, + STATE(9367), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292725] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11910), 1, + anon_sym_DASH_GT, + ACTIONS(11912), 1, + anon_sym_thin, + STATE(9368), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8441), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292764] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11914), 1, + anon_sym_DASH_GT, + STATE(9369), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292803] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11916), 1, + anon_sym_DASH_GT, + STATE(9370), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292842] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11918), 1, + anon_sym_DASH_GT, + STATE(9371), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292881] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11920), 1, + anon_sym_DASH_GT, + ACTIONS(11922), 1, + anon_sym_thin, + STATE(9372), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8442), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292920] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11924), 1, + anon_sym_DASH_GT, + STATE(9373), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292959] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11186), 1, + anon_sym_raises, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11198), 1, + anon_sym_thin, + ACTIONS(11926), 1, + anon_sym_DASH_GT, + STATE(9374), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [292998] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11928), 1, + anon_sym_DASH_GT, + ACTIONS(11930), 1, + anon_sym_thin, + STATE(9411), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8444), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10862), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293037] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11932), 1, + anon_sym_DASH_GT, + STATE(9413), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10870), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293076] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11934), 1, + anon_sym_DASH_GT, + ACTIONS(11936), 1, + anon_sym_thin, + STATE(9414), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8448), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10874), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293115] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11938), 1, + anon_sym_DASH_GT, + ACTIONS(11940), 1, + anon_sym_thin, + STATE(9415), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8451), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10880), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293154] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11942), 1, + anon_sym_DASH_GT, + ACTIONS(11944), 1, + anon_sym_thin, + STATE(9416), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8453), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10886), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293193] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11946), 1, + anon_sym_DASH_GT, + STATE(9417), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10892), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293232] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(11950), 1, + anon_sym_thin, + STATE(9418), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8456), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293271] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11952), 1, + anon_sym_DASH_GT, + ACTIONS(11954), 1, + anon_sym_thin, + STATE(9419), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8457), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10902), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293310] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11956), 1, + anon_sym_DASH_GT, + STATE(9420), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10936), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293349] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11958), 1, + anon_sym_DASH_GT, + ACTIONS(11960), 1, + anon_sym_thin, + STATE(9421), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8460), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10940), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293388] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11962), 1, + anon_sym_DASH_GT, + STATE(9422), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293427] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11964), 1, + anon_sym_DASH_GT, + ACTIONS(11966), 1, + anon_sym_thin, + STATE(9423), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8463), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293466] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11968), 1, + anon_sym_DASH_GT, + ACTIONS(11970), 1, + anon_sym_thin, + STATE(9424), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8464), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10956), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293505] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11972), 1, + anon_sym_DASH_GT, + STATE(9425), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10962), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293544] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11974), 1, + anon_sym_DASH_GT, + STATE(9426), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10966), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293583] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11976), 1, + anon_sym_DASH_GT, + ACTIONS(11978), 1, + anon_sym_thin, + STATE(9427), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8466), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293622] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11980), 1, + anon_sym_DASH_GT, + ACTIONS(11982), 1, + anon_sym_thin, + STATE(9428), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8467), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10976), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293661] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11984), 1, + anon_sym_DASH_GT, + STATE(9429), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10982), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293700] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11986), 1, + anon_sym_DASH_GT, + ACTIONS(11988), 1, + anon_sym_thin, + STATE(9430), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8470), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293739] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11990), 1, + anon_sym_DASH_GT, + ACTIONS(11992), 1, + anon_sym_thin, + STATE(9431), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8471), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10990), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293778] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11994), 1, + anon_sym_DASH_GT, + STATE(9433), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10996), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293817] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11996), 1, + anon_sym_DASH_GT, + STATE(9434), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11000), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293856] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(11998), 1, + anon_sym_DASH_GT, + ACTIONS(12000), 1, + anon_sym_thin, + STATE(9435), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8473), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293895] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12002), 1, + anon_sym_DASH_GT, + STATE(9436), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11010), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293934] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12004), 1, + anon_sym_DASH_GT, + STATE(9437), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11014), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [293973] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12006), 1, + anon_sym_DASH_GT, + ACTIONS(12008), 1, + anon_sym_thin, + STATE(9438), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8474), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294012] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12010), 1, + anon_sym_DASH_GT, + ACTIONS(12012), 1, + anon_sym_thin, + STATE(9439), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8475), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11024), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294051] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12014), 1, + anon_sym_DASH_GT, + STATE(8886), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11030), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294090] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12016), 1, + anon_sym_DASH_GT, + STATE(9441), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11034), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294129] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12018), 1, + anon_sym_DASH_GT, + ACTIONS(12020), 1, + anon_sym_thin, + STATE(9442), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8477), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294168] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12022), 1, + anon_sym_DASH_GT, + STATE(9443), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11044), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294207] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12024), 1, + anon_sym_DASH_GT, + STATE(9444), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10986), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294246] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12026), 1, + anon_sym_DASH_GT, + STATE(9445), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10790), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294285] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12028), 1, + anon_sym_DASH_GT, + ACTIONS(12030), 1, + anon_sym_thin, + STATE(9446), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8478), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294324] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12032), 1, + anon_sym_DASH_GT, + STATE(9447), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10810), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294363] = 10, + ACTIONS(11140), 1, + anon_sym_LBRACE, + ACTIONS(11142), 1, + anon_sym_raises, + ACTIONS(11146), 1, + anon_sym_thin, + ACTIONS(11148), 1, + anon_sym_abi, + ACTIONS(12034), 1, + anon_sym_DASH_GT, + STATE(9448), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11144), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10814), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [294402] = 14, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11164), 1, + anon_sym_unified, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12036), 1, + anon_sym_COLON, + ACTIONS(12038), 1, + anon_sym_DASH_GT, + ACTIONS(12040), 1, + anon_sym_thin, + STATE(8838), 1, + sym_unified_clause, + STATE(11160), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8837), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11770), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [294449] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [294480] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12042), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294503] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12044), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294526] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12046), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294549] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12048), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294572] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12050), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294595] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12052), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294618] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(11226), 1, + anon_sym_thin, + ACTIONS(12054), 1, + anon_sym_DASH_GT, + STATE(10084), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10946), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [294657] = 10, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11224), 1, + anon_sym_raises, + ACTIONS(12056), 1, + anon_sym_DASH_GT, + ACTIONS(12058), 1, + anon_sym_thin, + STATE(9777), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8249), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [294696] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12060), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294719] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12060), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [294741] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [294763] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11522), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294785] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11526), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294807] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294829] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11220), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [294851] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11318), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [294873] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10261), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [294895] = 4, + ACTIONS(12062), 1, + anon_sym_LBRACK, + STATE(9033), 1, + sym_capture_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4193), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [294921] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [294943] = 4, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(9092), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [294969] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11318), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [294991] = 4, + ACTIONS(12064), 1, + anon_sym_LBRACK, + STATE(9039), 1, + sym_capture_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4193), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [295017] = 7, + ACTIONS(12066), 1, + anon_sym_raises, + ACTIONS(12072), 1, + anon_sym_thin, + ACTIONS(12075), 1, + anon_sym_abi, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12069), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8503), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + [295049] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11194), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295071] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11600), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295093] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11602), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295115] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11220), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295137] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11208), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295159] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11210), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295181] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11212), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295203] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11320), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295225] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11320), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295247] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11584), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295269] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11586), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295291] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11588), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295313] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295335] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11592), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295357] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12060), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295379] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11328), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295401] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11594), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295423] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11584), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295445] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11596), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295467] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295489] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11318), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [295511] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11610), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295533] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11612), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295555] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11614), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295577] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11616), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295599] = 7, + ACTIONS(12078), 1, + anon_sym_raises, + ACTIONS(12084), 1, + anon_sym_thin, + ACTIONS(12087), 1, + anon_sym_abi, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12081), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8529), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [295631] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11586), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295653] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11588), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295675] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295697] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11592), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295719] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11594), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295741] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11596), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295763] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [295793] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295815] = 4, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(9283), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [295841] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11328), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295863] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10261), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [295885] = 6, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [295915] = 4, + ACTIONS(10845), 1, + anon_sym_LPAREN, + STATE(9059), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [295941] = 7, + ACTIONS(12090), 1, + anon_sym_raises, + ACTIONS(12096), 1, + anon_sym_thin, + ACTIONS(12099), 1, + anon_sym_abi, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12093), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8543), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 8, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + [295973] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11208), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [295995] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11320), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296017] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11584), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296039] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11586), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296061] = 4, + ACTIONS(12102), 1, + anon_sym_DOT, + STATE(8568), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12104), 13, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [296087] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11588), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296109] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11590), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296131] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11600), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296153] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11602), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296175] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11210), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296197] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11212), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296219] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11612), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296241] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11614), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296263] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11616), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296285] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11328), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296307] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11512), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296329] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11512), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296351] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11522), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296373] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11526), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296395] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296417] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296439] = 8, + ACTIONS(10783), 1, + anon_sym_COLON, + ACTIONS(10837), 1, + anon_sym_as, + ACTIONS(10839), 1, + anon_sym_if, + ACTIONS(10841), 1, + anon_sym_and, + ACTIONS(10843), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(10786), 8, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [296473] = 8, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(10783), 1, + anon_sym_COLON, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8839), 1, + sym_argument_list, + STATE(12296), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(10786), 8, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [296507] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11592), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296529] = 3, + STATE(8588), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [296553] = 4, + ACTIONS(12102), 1, + anon_sym_DOT, + STATE(8589), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 13, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [296579] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11594), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296601] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11596), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296623] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12042), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296645] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12044), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296667] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12046), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296689] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12048), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296711] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12050), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296733] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12052), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296755] = 4, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9288), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [296781] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11600), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296803] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11602), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296825] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12060), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296847] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11610), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296869] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11210), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296891] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11612), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296913] = 4, + ACTIONS(12108), 1, + anon_sym_LBRACK, + STATE(9268), 1, + sym_capture_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4193), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [296939] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11212), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [296961] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11614), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [296983] = 4, + ACTIONS(12110), 1, + anon_sym_DOT, + STATE(8588), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 13, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [297009] = 3, + STATE(8588), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12113), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [297033] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11616), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297055] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12042), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297077] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12044), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297099] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12046), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297121] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12048), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297143] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11180), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297165] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12050), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297187] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12052), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297209] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12042), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297231] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12044), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297253] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10261), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [297275] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12046), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297297] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12048), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297319] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12050), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297341] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12052), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297363] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11512), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297385] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11522), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297407] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11526), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297429] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297451] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11534), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297473] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11180), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297495] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11180), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [297517] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11194), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [297539] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11194), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297561] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11208), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297583] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11220), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_AMP, + [297605] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11610), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + [297627] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12115), 1, + anon_sym_COLON, + ACTIONS(12117), 1, + anon_sym_DASH_GT, + ACTIONS(12119), 1, + anon_sym_thin, + STATE(11094), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11484), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297668] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [297689] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12121), 1, + anon_sym_COLON, + ACTIONS(12123), 1, + anon_sym_DASH_GT, + STATE(11112), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11552), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297730] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12125), 1, + anon_sym_COLON, + ACTIONS(12127), 1, + anon_sym_DASH_GT, + ACTIONS(12129), 1, + anon_sym_thin, + STATE(11113), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8830), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11548), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297771] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12131), 1, + anon_sym_COLON, + ACTIONS(12133), 1, + anon_sym_DASH_GT, + STATE(11115), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11559), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297812] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12135), 1, + anon_sym_COLON, + ACTIONS(12137), 1, + anon_sym_DASH_GT, + ACTIONS(12139), 1, + anon_sym_thin, + STATE(11116), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8831), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11556), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297853] = 3, + STATE(8840), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [297876] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12141), 1, + anon_sym_COLON, + ACTIONS(12143), 1, + anon_sym_DASH_GT, + STATE(11151), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11683), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297917] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [297938] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12145), 1, + anon_sym_COLON, + ACTIONS(12147), 1, + anon_sym_DASH_GT, + ACTIONS(12149), 1, + anon_sym_thin, + STATE(11153), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8765), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11647), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [297979] = 4, + ACTIONS(12151), 1, + anon_sym_DOT, + STATE(8841), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 12, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298004] = 3, + STATE(8678), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298027] = 4, + ACTIONS(12153), 1, + anon_sym_DOT, + STATE(8685), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298052] = 4, + ACTIONS(12155), 1, + anon_sym_DOT, + STATE(8631), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12104), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298077] = 3, + STATE(8638), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298100] = 4, + ACTIONS(12155), 1, + anon_sym_DOT, + STATE(8641), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12106), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298125] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12157), 1, + anon_sym_COLON, + ACTIONS(12159), 1, + anon_sym_DASH_GT, + STATE(11047), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11344), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298166] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12161), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298187] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12163), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298208] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12165), 1, + anon_sym_COLON, + ACTIONS(12167), 1, + anon_sym_DASH_GT, + STATE(11007), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11214), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298249] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12169), 1, + anon_sym_COLON, + ACTIONS(12171), 1, + anon_sym_DASH_GT, + ACTIONS(12173), 1, + anon_sym_thin, + STATE(11010), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8644), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11207), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298290] = 4, + ACTIONS(12175), 1, + anon_sym_DOT, + STATE(8638), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298315] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12178), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298336] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12180), 1, + anon_sym_COLON, + ACTIONS(12182), 1, + anon_sym_DASH_GT, + STATE(10980), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11644), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298377] = 3, + STATE(8638), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12113), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [298400] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12184), 1, + anon_sym_COLON, + ACTIONS(12186), 1, + anon_sym_DASH_GT, + STATE(11024), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11247), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298441] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12188), 1, + anon_sym_COLON, + ACTIONS(12190), 1, + anon_sym_DASH_GT, + ACTIONS(12192), 1, + anon_sym_thin, + STATE(11025), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8648), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11245), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298482] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12194), 1, + anon_sym_COLON, + ACTIONS(12196), 1, + anon_sym_DASH_GT, + STATE(11031), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11267), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298523] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12198), 1, + anon_sym_COLON, + ACTIONS(12200), 1, + anon_sym_DASH_GT, + STATE(11033), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11272), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298564] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12202), 1, + anon_sym_COLON, + ACTIONS(12204), 1, + anon_sym_DASH_GT, + ACTIONS(12206), 1, + anon_sym_thin, + STATE(11035), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8651), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11270), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298605] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12208), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298626] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12210), 1, + anon_sym_COLON, + ACTIONS(12212), 1, + anon_sym_DASH_GT, + STATE(11043), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11299), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298667] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12214), 1, + anon_sym_COLON, + ACTIONS(12216), 1, + anon_sym_DASH_GT, + STATE(11044), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11302), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298708] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12218), 1, + anon_sym_COLON, + ACTIONS(12220), 1, + anon_sym_DASH_GT, + ACTIONS(12222), 1, + anon_sym_thin, + STATE(11045), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8652), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11300), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298749] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12224), 1, + anon_sym_COLON, + ACTIONS(12226), 1, + anon_sym_DASH_GT, + STATE(11053), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11327), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298790] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12228), 1, + anon_sym_COLON, + ACTIONS(12230), 1, + anon_sym_DASH_GT, + STATE(11061), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11356), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298831] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12232), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [298852] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12234), 1, + anon_sym_COLON, + ACTIONS(12236), 1, + anon_sym_DASH_GT, + STATE(11082), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11439), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298893] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12238), 1, + anon_sym_COLON, + ACTIONS(12240), 1, + anon_sym_DASH_GT, + ACTIONS(12242), 1, + anon_sym_thin, + STATE(11083), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8660), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11431), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298934] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12244), 1, + anon_sym_COLON, + ACTIONS(12246), 1, + anon_sym_DASH_GT, + STATE(10955), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11277), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [298975] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12248), 1, + anon_sym_COLON, + ACTIONS(12250), 1, + anon_sym_DASH_GT, + ACTIONS(12252), 1, + anon_sym_thin, + STATE(10961), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8633), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11629), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299016] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12254), 1, + anon_sym_COLON, + ACTIONS(12256), 1, + anon_sym_DASH_GT, + STATE(11118), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11569), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299057] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12258), 1, + anon_sym_COLON, + ACTIONS(12260), 1, + anon_sym_DASH_GT, + ACTIONS(12262), 1, + anon_sym_thin, + STATE(11119), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8667), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11565), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299098] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12264), 1, + anon_sym_COLON, + ACTIONS(12266), 1, + anon_sym_DASH_GT, + STATE(11131), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11614), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299139] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12268), 1, + anon_sym_COLON, + ACTIONS(12270), 1, + anon_sym_DASH_GT, + STATE(11133), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11619), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299180] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12272), 1, + anon_sym_COLON, + ACTIONS(12274), 1, + anon_sym_DASH_GT, + ACTIONS(12276), 1, + anon_sym_thin, + STATE(11135), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8672), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11616), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299221] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12278), 1, + anon_sym_COLON, + ACTIONS(12280), 1, + anon_sym_DASH_GT, + STATE(11137), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11634), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299262] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12282), 1, + anon_sym_COLON, + ACTIONS(12284), 1, + anon_sym_DASH_GT, + ACTIONS(12286), 1, + anon_sym_thin, + STATE(11140), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8673), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11628), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299303] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12288), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [299324] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12290), 1, + anon_sym_COLON, + ACTIONS(12292), 1, + anon_sym_DASH_GT, + STATE(11089), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11487), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299365] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12294), 1, + anon_sym_COLON, + ACTIONS(12296), 1, + anon_sym_DASH_GT, + STATE(11170), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11746), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299406] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12298), 1, + anon_sym_COLON, + ACTIONS(12300), 1, + anon_sym_DASH_GT, + STATE(11171), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11751), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299447] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12302), 1, + anon_sym_COLON, + ACTIONS(12304), 1, + anon_sym_DASH_GT, + ACTIONS(12306), 1, + anon_sym_thin, + STATE(11173), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8679), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11749), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299488] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12308), 1, + anon_sym_COLON, + ACTIONS(12310), 1, + anon_sym_DASH_GT, + STATE(11174), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11758), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299529] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12312), 1, + anon_sym_COLON, + ACTIONS(12314), 1, + anon_sym_DASH_GT, + ACTIONS(12316), 1, + anon_sym_thin, + STATE(11175), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8680), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11755), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299570] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12318), 1, + anon_sym_COLON, + ACTIONS(12320), 1, + anon_sym_DASH_GT, + STATE(11179), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11779), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299611] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12322), 1, + anon_sym_COLON, + ACTIONS(12324), 1, + anon_sym_DASH_GT, + STATE(11180), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11785), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299652] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12326), 1, + anon_sym_COLON, + ACTIONS(12328), 1, + anon_sym_DASH_GT, + STATE(11182), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11789), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299693] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12330), 1, + anon_sym_COLON, + ACTIONS(12332), 1, + anon_sym_DASH_GT, + ACTIONS(12334), 1, + anon_sym_thin, + STATE(11183), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8683), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11787), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299734] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12336), 1, + anon_sym_COLON, + ACTIONS(12338), 1, + anon_sym_DASH_GT, + ACTIONS(12340), 1, + anon_sym_thin, + STATE(11101), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8617), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11250), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299775] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [299796] = 4, + ACTIONS(12342), 1, + anon_sym_DOT, + STATE(8678), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [299821] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12345), 1, + anon_sym_COLON, + ACTIONS(12347), 1, + anon_sym_DASH_GT, + STATE(10946), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11761), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299862] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12349), 1, + anon_sym_COLON, + ACTIONS(12351), 1, + anon_sym_DASH_GT, + STATE(10948), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11301), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299903] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12353), 1, + anon_sym_COLON, + ACTIONS(12355), 1, + anon_sym_DASH_GT, + STATE(10949), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11343), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299944] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12357), 1, + anon_sym_COLON, + ACTIONS(12359), 1, + anon_sym_DASH_GT, + ACTIONS(12361), 1, + anon_sym_thin, + STATE(10950), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8684), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11324), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [299985] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12363), 1, + anon_sym_COLON, + ACTIONS(12365), 1, + anon_sym_DASH_GT, + STATE(10951), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11667), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300026] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12367), 1, + anon_sym_COLON, + ACTIONS(12369), 1, + anon_sym_DASH_GT, + STATE(10960), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11239), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300067] = 3, + STATE(8678), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12113), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [300090] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12371), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300111] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12373), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300132] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12375), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300153] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12377), 1, + anon_sym_COLON, + ACTIONS(12379), 1, + anon_sym_DASH_GT, + STATE(11071), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11563), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300194] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12381), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300215] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12383), 1, + anon_sym_COLON, + ACTIONS(12385), 1, + anon_sym_DASH_GT, + STATE(11104), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11522), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300256] = 7, + ACTIONS(10783), 1, + anon_sym_COLON, + ACTIONS(10788), 1, + anon_sym_LPAREN, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8839), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(10786), 8, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [300287] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12387), 1, + anon_sym_COLON, + ACTIONS(12389), 1, + anon_sym_DASH_GT, + STATE(10998), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11535), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300328] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12391), 1, + anon_sym_COLON, + ACTIONS(12393), 1, + anon_sym_DASH_GT, + ACTIONS(12395), 1, + anon_sym_thin, + STATE(10999), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8691), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11790), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300369] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12397), 1, + anon_sym_COLON, + ACTIONS(12399), 1, + anon_sym_DASH_GT, + STATE(11054), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11332), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300410] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12401), 1, + anon_sym_COLON, + ACTIONS(12403), 1, + anon_sym_DASH_GT, + ACTIONS(12405), 1, + anon_sym_thin, + STATE(11055), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8828), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11289), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [300451] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300478] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300505] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300532] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300559] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12421), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300580] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300607] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300634] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300661] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300688] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300715] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300742] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300769] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300796] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300823] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12439), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [300844] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300871] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300898] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300925] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300952] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [300979] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301006] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301033] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301060] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301087] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301114] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301141] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301168] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301195] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301222] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301249] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301276] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301303] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301330] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301357] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301384] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301411] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301438] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301465] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301492] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301519] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301546] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301573] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301600] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301627] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301654] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301681] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301708] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301735] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301762] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301789] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301816] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301843] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301870] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301897] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301924] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301951] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [301978] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302005] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302032] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302059] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302086] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302113] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302140] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302167] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302194] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302221] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302248] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302275] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12519), 1, + anon_sym_COLON, + ACTIONS(12521), 1, + anon_sym_DASH_GT, + STATE(11110), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11540), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [302316] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302343] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302370] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302397] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302424] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302451] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302478] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302505] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302532] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302559] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302586] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302613] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302640] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302667] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302694] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302721] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302748] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302775] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302802] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302829] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302856] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302883] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302910] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302937] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302964] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [302991] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303018] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303045] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303072] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303099] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303126] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303153] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303180] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303207] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303234] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303261] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303288] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303315] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303342] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303369] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303396] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303423] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303450] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303477] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303504] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303531] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303558] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303585] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303612] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303639] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303666] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303693] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303720] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303747] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303774] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303801] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303828] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303855] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303882] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303909] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [303936] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12605), 1, + anon_sym_COLON, + ACTIONS(12607), 1, + anon_sym_DASH_GT, + STATE(10987), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11698), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [303977] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12609), 1, + anon_sym_COLON, + ACTIONS(12611), 1, + anon_sym_DASH_GT, + STATE(11004), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11346), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304018] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12613), 1, + anon_sym_COLON, + ACTIONS(12615), 1, + anon_sym_DASH_GT, + STATE(11114), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11555), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304059] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12617), 1, + anon_sym_COLON, + ACTIONS(12619), 1, + anon_sym_DASH_GT, + STATE(11124), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11590), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304100] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12621), 1, + anon_sym_COLON, + ACTIONS(12623), 1, + anon_sym_DASH_GT, + STATE(10962), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11560), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304141] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12625), 1, + anon_sym_COLON, + ACTIONS(12627), 1, + anon_sym_DASH_GT, + STATE(10995), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11788), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304182] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12629), 1, + anon_sym_COLON, + ACTIONS(12631), 1, + anon_sym_DASH_GT, + STATE(11078), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11418), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304223] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12633), 1, + anon_sym_COLON, + ACTIONS(12635), 1, + anon_sym_DASH_GT, + STATE(11009), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11221), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304264] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12637), 1, + anon_sym_COLON, + ACTIONS(12639), 1, + anon_sym_DASH_GT, + ACTIONS(12641), 1, + anon_sym_thin, + STATE(11014), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8845), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11193), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304305] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12643), 1, + anon_sym_COLON, + ACTIONS(12645), 1, + anon_sym_DASH_GT, + STATE(11085), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11447), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304346] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12647), 1, + anon_sym_COLON, + ACTIONS(12649), 1, + anon_sym_DASH_GT, + ACTIONS(12651), 1, + anon_sym_thin, + STATE(11087), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8826), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11438), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304387] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12653), 1, + anon_sym_COLON, + ACTIONS(12655), 1, + anon_sym_DASH_GT, + STATE(10993), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11760), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304428] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12657), 1, + anon_sym_COLON, + ACTIONS(12659), 1, + anon_sym_DASH_GT, + ACTIONS(12661), 1, + anon_sym_thin, + STATE(10996), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8689), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11732), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304469] = 4, + ACTIONS(12151), 1, + anon_sym_DOT, + STATE(8623), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12104), 12, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304494] = 4, + ACTIONS(12663), 1, + anon_sym_DOT, + STATE(8840), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10762), 12, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304519] = 3, + STATE(8840), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12113), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304542] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12666), 1, + anon_sym_COLON, + ACTIONS(12668), 1, + anon_sym_DASH_GT, + ACTIONS(12670), 1, + anon_sym_thin, + STATE(11125), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8640), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11574), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304583] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12672), 1, + anon_sym_COLON, + ACTIONS(12674), 1, + anon_sym_DASH_GT, + ACTIONS(12676), 1, + anon_sym_thin, + STATE(11070), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(8832), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11357), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304624] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [304647] = 12, + ACTIONS(11154), 1, + anon_sym_LBRACE, + ACTIONS(11156), 1, + anon_sym_raises, + ACTIONS(11162), 1, + anon_sym_abi, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12119), 1, + anon_sym_thin, + ACTIONS(12678), 1, + anon_sym_COLON, + ACTIONS(12680), 1, + anon_sym_DASH_GT, + STATE(11136), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11158), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + STATE(11674), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [304688] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12682), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304709] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12684), 14, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304730] = 4, + ACTIONS(12153), 1, + anon_sym_DOT, + STATE(8628), 1, + aux_sym_called_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12104), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [304755] = 3, + ACTIONS(12688), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304778] = 3, + ACTIONS(12692), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304801] = 3, + ACTIONS(10928), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304824] = 3, + ACTIONS(12696), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304847] = 3, + ACTIONS(10952), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304870] = 3, + ACTIONS(12700), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304893] = 3, + ACTIONS(12704), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304916] = 3, + ACTIONS(12706), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304939] = 3, + ACTIONS(12710), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304962] = 3, + ACTIONS(11134), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [304985] = 3, + ACTIONS(12714), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305008] = 3, + ACTIONS(12718), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305031] = 3, + ACTIONS(12720), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305054] = 3, + ACTIONS(12724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305077] = 3, + ACTIONS(12728), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305100] = 3, + ACTIONS(12732), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305123] = 3, + ACTIONS(11020), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305146] = 3, + ACTIONS(12736), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305169] = 3, + ACTIONS(12740), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305192] = 3, + ACTIONS(12742), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305215] = 3, + ACTIONS(12746), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305238] = 3, + ACTIONS(12750), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305261] = 3, + ACTIONS(12754), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305284] = 3, + ACTIONS(12758), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305307] = 3, + ACTIONS(12762), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305330] = 3, + ACTIONS(12766), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305353] = 3, + ACTIONS(12768), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305376] = 3, + ACTIONS(12772), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305399] = 3, + ACTIONS(12776), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305422] = 3, + ACTIONS(12780), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305445] = 3, + ACTIONS(12784), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305468] = 3, + ACTIONS(12788), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305491] = 3, + ACTIONS(12792), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305514] = 3, + ACTIONS(12796), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305537] = 3, + ACTIONS(12800), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305560] = 3, + ACTIONS(12804), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [305583] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12411), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [305610] = 3, + ACTIONS(12808), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [305632] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305658] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12682), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [305678] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12684), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [305698] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305724] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305750] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305776] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305802] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305828] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305854] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305880] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305906] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305932] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305958] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [305984] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306010] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306036] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306062] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306088] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306114] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306140] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306166] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306192] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306218] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306244] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306270] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306296] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306322] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306348] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306374] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306400] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306426] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306452] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306478] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306504] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306530] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306556] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306582] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306608] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306634] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306660] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [306686] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12421), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [306706] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306732] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306758] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306784] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306810] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306836] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306862] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306888] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306914] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [306940] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306966] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [306992] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307018] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307044] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307070] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307096] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307122] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307148] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307174] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307200] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [307226] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307252] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307278] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307304] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307330] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307356] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307382] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307408] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307434] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307460] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307486] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307512] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307538] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307564] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307590] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307616] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307642] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307668] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [307694] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307720] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307746] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307772] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [307798] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307824] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307850] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307876] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307902] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307928] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307954] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [307980] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308006] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308032] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308058] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308084] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308110] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308136] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308162] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308188] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308214] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308240] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308266] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308292] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308318] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12439), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308338] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308364] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308390] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308416] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308442] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308468] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308494] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308520] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308546] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308572] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308598] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12682), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [308618] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308644] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308670] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [308696] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12684), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [308716] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308742] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308768] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12288), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308788] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308814] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308840] = 5, + ACTIONS(12822), 1, + anon_sym_as, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [308866] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308892] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [308918] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12178), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308938] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12161), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308958] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12682), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308978] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12684), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [308998] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309024] = 3, + ACTIONS(9572), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [309046] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309094] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309120] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309140] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309166] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12288), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309186] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12163), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309206] = 3, + ACTIONS(12829), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [309228] = 6, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309256] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12163), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309276] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12178), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309296] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12421), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309316] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12208), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309336] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309362] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309388] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309414] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12439), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309434] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309460] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12208), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309480] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309506] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309532] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309558] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309584] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309610] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309636] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309662] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309688] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12161), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [309708] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309734] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309760] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309786] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12371), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309806] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309832] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12373), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309852] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12375), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309872] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309898] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309924] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [309950] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12381), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [309970] = 14, + ACTIONS(12831), 1, + anon_sym_COMMA, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12843), 1, + anon_sym_RBRACE, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + STATE(9790), 1, + sym_for_in_clause, + STATE(12208), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12591), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [310014] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12850), 1, + anon_sym_COMMA, + ACTIONS(12852), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12006), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12538), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [310058] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12371), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310078] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310104] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12232), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310124] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12373), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310144] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12161), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310164] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12855), 1, + anon_sym_COMMA, + ACTIONS(12857), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12183), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12550), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [310208] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310234] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310260] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12163), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310280] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310306] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310332] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310358] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310384] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310410] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310436] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310462] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310488] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310514] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310540] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310566] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310592] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310618] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310644] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310670] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310696] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310722] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310748] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310774] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12375), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310794] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310820] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12381), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [310840] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [310860] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310886] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310912] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310938] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [310958] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [310984] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [311006] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311032] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311058] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311084] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311110] = 6, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [311138] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [311158] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12860), 1, + anon_sym_COMMA, + ACTIONS(12862), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11992), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12497), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [311202] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [311222] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12865), 1, + anon_sym_COMMA, + ACTIONS(12867), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12135), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12713), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [311266] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311292] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311318] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311344] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311370] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311396] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311422] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311448] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311474] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311500] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311526] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311552] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311578] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311604] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311630] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311656] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311682] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311708] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12421), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [311728] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311754] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12439), 13, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [311774] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311800] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311826] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311852] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311878] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311904] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311930] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311956] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [311982] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [312008] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312034] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312060] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312086] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312112] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312138] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312164] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312190] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312216] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312242] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312268] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312294] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312320] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312346] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312372] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312398] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312424] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312450] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312476] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312502] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312528] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312554] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312580] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312606] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312632] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312658] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312684] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312710] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312736] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312762] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312788] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312814] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312840] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312866] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312892] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312918] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312944] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312970] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [312996] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313022] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313048] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313074] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313100] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [313126] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313152] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313178] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313204] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313230] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313256] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313282] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313308] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313334] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313360] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313386] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313412] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313438] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313464] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313490] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313516] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313542] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313568] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313594] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [313620] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313646] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313672] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12876), 1, + anon_sym_COMMA, + ACTIONS(12878), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12027), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12684), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [313716] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313742] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313768] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313794] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313820] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313846] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313872] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313898] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313924] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313950] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [313976] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314002] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314028] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314054] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314080] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314106] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314132] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314158] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314184] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314210] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314236] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314262] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314288] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314314] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314340] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314366] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314392] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314418] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314444] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314470] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314496] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314522] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314548] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314574] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314600] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314626] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314652] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314678] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314704] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314730] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314756] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314782] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314808] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314834] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314860] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314886] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314912] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314938] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314964] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [314990] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315016] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315042] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315068] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315094] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315120] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315146] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315172] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315198] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315224] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315250] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315276] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315302] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315328] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315354] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [315380] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315400] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12208), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315420] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315446] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12371), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315466] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315492] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315518] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12881), 1, + anon_sym_COMMA, + ACTIONS(12883), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11873), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12622), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [315562] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12178), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315582] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315608] = 6, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315636] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315662] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315688] = 3, + ACTIONS(12886), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315710] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315736] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315762] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315788] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12381), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315808] = 3, + ACTIONS(12888), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315830] = 3, + ACTIONS(11724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315852] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315880] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [315906] = 3, + ACTIONS(12894), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315928] = 3, + ACTIONS(11742), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315950] = 3, + ACTIONS(12896), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315972] = 3, + ACTIONS(12898), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [315994] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316020] = 3, + ACTIONS(12900), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316042] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12232), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316062] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316088] = 3, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316110] = 3, + ACTIONS(11764), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316132] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316158] = 3, + ACTIONS(12904), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316180] = 3, + ACTIONS(12906), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316202] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [316222] = 3, + ACTIONS(12908), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316244] = 3, + ACTIONS(12910), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316266] = 3, + ACTIONS(12912), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316288] = 3, + ACTIONS(12914), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316310] = 3, + ACTIONS(11784), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316332] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316358] = 3, + ACTIONS(12916), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316380] = 3, + ACTIONS(12918), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316402] = 3, + ACTIONS(12920), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316424] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316452] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12373), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316472] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316498] = 3, + ACTIONS(12922), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316520] = 3, + ACTIONS(12924), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316542] = 3, + ACTIONS(12926), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316564] = 3, + ACTIONS(12928), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316586] = 3, + ACTIONS(12930), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316608] = 3, + ACTIONS(12932), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316630] = 3, + ACTIONS(12934), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316652] = 3, + ACTIONS(12936), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316674] = 3, + ACTIONS(12938), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316696] = 3, + ACTIONS(12940), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316718] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12375), 13, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316738] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316764] = 3, + ACTIONS(12942), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316786] = 3, + ACTIONS(12944), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316808] = 3, + ACTIONS(12946), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316830] = 3, + ACTIONS(12948), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316852] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9329), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [316872] = 3, + ACTIONS(12950), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316894] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316922] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316948] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [316974] = 3, + ACTIONS(12952), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [316996] = 3, + ACTIONS(12954), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317018] = 3, + ACTIONS(12956), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317040] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [317066] = 3, + ACTIONS(11840), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317088] = 3, + ACTIONS(12958), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317110] = 3, + ACTIONS(11856), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317132] = 3, + ACTIONS(12960), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317154] = 3, + ACTIONS(12962), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317176] = 3, + ACTIONS(12964), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317198] = 3, + ACTIONS(12966), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317220] = 3, + ACTIONS(11878), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317242] = 3, + ACTIONS(12968), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317264] = 3, + ACTIONS(12970), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317286] = 3, + ACTIONS(12972), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317308] = 3, + ACTIONS(12974), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317330] = 3, + ACTIONS(12976), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317352] = 3, + ACTIONS(12978), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317374] = 3, + ACTIONS(11898), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317396] = 14, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12835), 1, + anon_sym_COLON, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(12980), 1, + anon_sym_COMMA, + ACTIONS(12982), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11846), 1, + aux_sym_struct_literal_repeat1, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + STATE(12732), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [317440] = 3, + ACTIONS(12985), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317462] = 3, + ACTIONS(12987), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317484] = 3, + ACTIONS(12989), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317506] = 3, + ACTIONS(12991), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317528] = 3, + ACTIONS(12993), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317550] = 3, + ACTIONS(12995), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317572] = 3, + ACTIONS(12997), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317594] = 3, + ACTIONS(12999), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317616] = 3, + ACTIONS(13001), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317638] = 3, + ACTIONS(13003), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317660] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12288), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317680] = 3, + ACTIONS(13005), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317702] = 3, + ACTIONS(13007), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317724] = 3, + ACTIONS(13009), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317746] = 3, + ACTIONS(13011), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317768] = 3, + ACTIONS(13013), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317790] = 3, + ACTIONS(13015), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317812] = 3, + ACTIONS(13017), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317834] = 3, + ACTIONS(13019), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317856] = 3, + ACTIONS(13021), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317878] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12232), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [317898] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [317924] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [317950] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [317976] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318002] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318028] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318054] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318080] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318106] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318132] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318158] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318184] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318210] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318236] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12818), 1, + anon_sym_COLON, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_where, + [318262] = 5, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13023), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [318288] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318314] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318340] = 5, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13026), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [318366] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318392] = 3, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 12, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_and, + anon_sym_or, + [318414] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318440] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318466] = 4, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [318490] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318516] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318542] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318568] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318594] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318620] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318646] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318672] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318698] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318724] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318750] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318776] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [318802] = 3, + ACTIONS(13030), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318824] = 4, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [318848] = 3, + ACTIONS(13032), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318870] = 3, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318892] = 3, + ACTIONS(13034), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318914] = 3, + ACTIONS(11964), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318936] = 3, + ACTIONS(13036), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318958] = 3, + ACTIONS(13038), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [318980] = 3, + ACTIONS(13040), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319002] = 3, + ACTIONS(13042), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319024] = 3, + ACTIONS(11986), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319046] = 3, + ACTIONS(13044), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319068] = 3, + ACTIONS(13046), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319090] = 3, + ACTIONS(13048), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319112] = 3, + ACTIONS(13050), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319134] = 3, + ACTIONS(13052), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319156] = 3, + ACTIONS(13054), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319178] = 3, + ACTIONS(12006), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319200] = 3, + ACTIONS(13056), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319222] = 3, + ACTIONS(13058), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319244] = 3, + ACTIONS(13060), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319266] = 3, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [319288] = 3, + ACTIONS(13062), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319310] = 3, + ACTIONS(13064), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319332] = 3, + ACTIONS(13066), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319354] = 3, + ACTIONS(13068), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319376] = 3, + ACTIONS(13070), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319398] = 3, + ACTIONS(13072), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319420] = 3, + ACTIONS(13074), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319442] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11552), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319462] = 3, + ACTIONS(13076), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319484] = 3, + ACTIONS(13078), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319506] = 3, + ACTIONS(13080), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319528] = 3, + ACTIONS(13082), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319550] = 3, + ACTIONS(13084), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319572] = 3, + ACTIONS(13086), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319594] = 3, + ACTIONS(13088), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319616] = 3, + ACTIONS(13090), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 12, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + anon_sym_PIPE, + [319638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10783), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [319660] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12812), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [319686] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12872), 1, + anon_sym_COLON, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_EQ, + [319712] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10812), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9706), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10810), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319747] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11124), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9763), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11030), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319782] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10904), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13096), 1, + anon_sym_thin, + STATE(9710), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10902), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9477), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319817] = 4, + ACTIONS(13100), 1, + sym__mlir_backtick, + STATE(7181), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13098), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [319840] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10872), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9720), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10870), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319875] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10876), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13102), 1, + anon_sym_thin, + STATE(9730), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10874), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9503), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319910] = 4, + ACTIONS(13106), 1, + sym__mlir_backtick, + STATE(7697), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13104), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [319933] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11104), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9736), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10996), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [319968] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11060), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9717), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10936), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320003] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11106), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9741), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11000), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320038] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11108), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13108), 1, + anon_sym_thin, + STATE(9742), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11004), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9483), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320073] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10882), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13110), 1, + anon_sym_thin, + STATE(9748), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10880), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9460), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320108] = 6, + ACTIONS(13112), 1, + anon_sym_RBRACE, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320135] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11062), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13118), 1, + anon_sym_thin, + STATE(9718), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10940), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9485), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320170] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13120), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320197] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13122), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320224] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11066), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9732), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10946), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320259] = 4, + ACTIONS(13126), 1, + sym__mlir_backtick, + STATE(7229), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13124), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [320282] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11068), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13128), 1, + anon_sym_thin, + STATE(9770), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10950), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9459), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320317] = 4, + ACTIONS(13132), 1, + sym__mlir_backtick, + STATE(7426), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13130), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [320340] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11072), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13134), 1, + anon_sym_thin, + STATE(9743), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10956), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9461), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320375] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11126), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9764), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11034), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320410] = 4, + ACTIONS(13138), 1, + sym__mlir_backtick, + STATE(6791), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13136), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [320433] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11128), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13140), 1, + anon_sym_thin, + STATE(9765), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11038), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9452), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320468] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11076), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9755), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10962), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320503] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11080), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9695), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10966), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320538] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11084), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13142), 1, + anon_sym_thin, + STATE(9697), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10970), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9543), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320573] = 4, + ACTIONS(13146), 1, + sym__mlir_backtick, + STATE(7794), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13144), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [320596] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13148), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320623] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11088), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13150), 1, + anon_sym_thin, + STATE(9699), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10976), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9544), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320658] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13152), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320685] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11132), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9768), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11044), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320720] = 6, + ACTIONS(13154), 1, + anon_sym_RBRACE, + ACTIONS(13158), 1, + anon_sym_ref, + STATE(11576), 1, + sym__ref_convention, + STATE(12504), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13156), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320747] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11092), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9701), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10982), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320782] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13160), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320809] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11228), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13164), 1, + anon_sym_thin, + STATE(9971), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10862), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9497), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320844] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13166), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [320892] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13168), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [320919] = 4, + ACTIONS(13172), 1, + sym__mlir_backtick, + STATE(6986), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13170), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [320942] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10864), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13174), 1, + anon_sym_thin, + STATE(9690), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10862), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9456), 2, + aux_sym__function_effects, + sym_abi_specifier, + [320977] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11096), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13176), 1, + anon_sym_thin, + STATE(9703), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11094), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9453), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321012] = 6, + ACTIONS(13158), 1, + anon_sym_ref, + ACTIONS(13178), 1, + anon_sym_RBRACE, + STATE(11576), 1, + sym__ref_convention, + STATE(12504), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13156), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [321039] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13180), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [321066] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10816), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9735), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10814), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321101] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11554), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(10027), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10870), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321136] = 4, + ACTIONS(13186), 1, + sym__mlir_backtick, + STATE(7590), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13184), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [321159] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10888), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13188), 1, + anon_sym_thin, + STATE(9702), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10886), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9468), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321194] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11556), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13190), 1, + anon_sym_thin, + STATE(10038), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10874), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9509), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321229] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13192), 1, + anon_sym_thin, + STATE(10080), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10880), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9512), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321264] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11100), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13194), 1, + anon_sym_thin, + STATE(9725), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10990), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9473), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321299] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10894), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9708), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10892), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321334] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13196), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [321361] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(10786), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + [321382] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10898), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13198), 1, + anon_sym_thin, + STATE(9709), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10896), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9476), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321417] = 10, + ACTIONS(11182), 1, + anon_sym_DASH_GT, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13200), 1, + anon_sym_thin, + STATE(10088), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10886), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9514), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321452] = 4, + ACTIONS(13204), 1, + sym__mlir_backtick, + STATE(7291), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13202), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [321475] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11196), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9825), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10892), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321510] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11200), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13206), 1, + anon_sym_thin, + STATE(10093), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9517), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321545] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11204), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13208), 1, + anon_sym_thin, + STATE(9775), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10902), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9518), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321580] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11214), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9895), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10936), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321615] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11216), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13210), 1, + anon_sym_thin, + STATE(9922), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10940), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9521), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321650] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11232), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9797), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10946), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321685] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11234), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13212), 1, + anon_sym_thin, + STATE(9803), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9524), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321720] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11238), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13214), 1, + anon_sym_thin, + STATE(9945), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10956), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9525), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321755] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11248), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9850), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10962), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321790] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11250), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9909), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10966), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321825] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11252), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13216), 1, + anon_sym_thin, + STATE(9931), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9528), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321860] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11256), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13218), 1, + anon_sym_thin, + STATE(10048), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10976), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9529), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321895] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11260), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9846), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10982), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321930] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11262), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13220), 1, + anon_sym_thin, + STATE(9851), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9534), 2, + aux_sym__function_effects, + sym_abi_specifier, + [321965] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11266), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13222), 1, + anon_sym_thin, + STATE(9901), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10990), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9535), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322000] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11376), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9810), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10996), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322035] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11398), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9841), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11000), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322070] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11400), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13224), 1, + anon_sym_thin, + STATE(9843), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9537), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322105] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10988), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9750), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322140] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11446), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9863), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11010), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322175] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11468), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9873), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11014), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322210] = 10, + ACTIONS(10792), 1, + anon_sym_DASH_GT, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9754), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10790), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322245] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11476), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13226), 1, + anon_sym_thin, + STATE(9874), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9538), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322280] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(10806), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13228), 1, + anon_sym_thin, + STATE(9757), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(10804), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9496), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322315] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11480), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13230), 1, + anon_sym_thin, + STATE(9879), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11024), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9539), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322350] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11484), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9905), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11030), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322385] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11488), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9912), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11034), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322420] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11490), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13232), 1, + anon_sym_thin, + STATE(9917), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9541), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322455] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11540), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9772), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11044), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322490] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11542), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9793), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10986), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322525] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11544), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9795), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10790), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322560] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11546), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13234), 1, + anon_sym_thin, + STATE(9796), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9542), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322595] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11550), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9840), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10810), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322630] = 10, + ACTIONS(11184), 1, + anon_sym_LBRACE, + ACTIONS(11192), 1, + anon_sym_abi, + ACTIONS(11738), 1, + anon_sym_DASH_GT, + ACTIONS(13162), 1, + anon_sym_raises, + ACTIONS(13182), 1, + anon_sym_thin, + STATE(9860), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10814), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(11188), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322665] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11112), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9751), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322700] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11114), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13094), 1, + anon_sym_thin, + STATE(9689), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11014), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322735] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11116), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13236), 1, + anon_sym_thin, + STATE(9759), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11018), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9527), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322770] = 10, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10802), 1, + anon_sym_abi, + ACTIONS(11120), 1, + anon_sym_DASH_GT, + ACTIONS(13092), 1, + anon_sym_raises, + ACTIONS(13238), 1, + anon_sym_thin, + STATE(9760), 1, + sym_result_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10798), 2, + anon_sym_capturing, + anon_sym_escaping, + ACTIONS(11024), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(9530), 2, + aux_sym__function_effects, + sym_abi_specifier, + [322805] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13240), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [322832] = 6, + ACTIONS(13116), 1, + anon_sym_ref, + ACTIONS(13242), 1, + anon_sym_RBRACE, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [322859] = 4, + ACTIONS(13246), 1, + sym__mlir_backtick, + STATE(7477), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13244), 10, + anon_sym_comptime, + anon_sym_mut, + anon_sym_out, + anon_sym_ref, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + anon_sym_unified, + anon_sym_where, + sym_identifier, + [322882] = 5, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11642), 1, + sym_argument_convention, + STATE(11818), 1, + sym__ref_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [322906] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12734), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [322944] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13258), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9555), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [322974] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [323000] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13268), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9557), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323030] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13270), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323060] = 5, + ACTIONS(13158), 1, + anon_sym_ref, + STATE(11576), 1, + sym__ref_convention, + STATE(12504), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13156), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [323084] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13272), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323114] = 12, + ACTIONS(13274), 1, + anon_sym_RPAREN, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12709), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323152] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12657), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323190] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13290), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12709), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323228] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13292), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9568), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323258] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13294), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323288] = 5, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11818), 1, + sym__ref_convention, + STATE(12164), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [323312] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13296), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12666), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323350] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13298), 1, + anon_sym_RPAREN, + ACTIONS(13300), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12245), 1, + aux_sym_argument_list_repeat1, + STATE(12729), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323388] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13302), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323418] = 4, + ACTIONS(10783), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 2, + anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(10786), 8, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [323440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13304), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323470] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13306), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9574), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323500] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [323526] = 7, + ACTIONS(12075), 1, + anon_sym_abi, + ACTIONS(13316), 1, + anon_sym_raises, + ACTIONS(13319), 1, + anon_sym_thin, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12069), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9571), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [323554] = 5, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11261), 1, + sym_argument_convention, + STATE(11818), 1, + sym__ref_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [323578] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13322), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12545), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323616] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13324), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323646] = 12, + ACTIONS(13274), 1, + anon_sym_RPAREN, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12547), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323684] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13326), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12623), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323722] = 5, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11733), 1, + sym_argument_convention, + STATE(11818), 1, + sym__ref_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [323746] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13328), 1, + anon_sym_RPAREN, + ACTIONS(13330), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12058), 1, + aux_sym_argument_list_repeat1, + STATE(12547), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323784] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [323810] = 4, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [323832] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13332), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12618), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [323870] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13334), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9600), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13336), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9590), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [323930] = 3, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [323950] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [323976] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13290), 1, + anon_sym_RPAREN, + ACTIONS(13338), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12709), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324014] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13341), 1, + anon_sym_RPAREN, + ACTIONS(13343), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12198), 1, + aux_sym_argument_list_repeat1, + STATE(12666), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324052] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13345), 1, + anon_sym_RPAREN, + ACTIONS(13347), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12150), 1, + aux_sym_argument_list_repeat1, + STATE(12623), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324090] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13349), 1, + anon_sym_RPAREN, + ACTIONS(13351), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12129), 1, + aux_sym_argument_list_repeat1, + STATE(12618), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324128] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13353), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324158] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324184] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324210] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12481), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324248] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13355), 1, + anon_sym_RPAREN, + ACTIONS(13357), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(11991), 1, + aux_sym_argument_list_repeat1, + STATE(12603), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324286] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13359), 1, + anon_sym_RPAREN, + ACTIONS(13361), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(11879), 1, + aux_sym_argument_list_repeat1, + STATE(12709), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324324] = 7, + ACTIONS(12087), 1, + anon_sym_abi, + ACTIONS(13363), 1, + anon_sym_raises, + ACTIONS(13366), 1, + anon_sym_thin, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12081), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9596), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 4, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_where, + [324352] = 5, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13369), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324376] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13372), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9609), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324406] = 3, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [324426] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13374), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324456] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13376), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12603), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324494] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13378), 1, + anon_sym_RPAREN, + ACTIONS(13380), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(11895), 1, + aux_sym_argument_list_repeat1, + STATE(12545), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13382), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9604), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324562] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13384), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324592] = 11, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + ACTIONS(13390), 1, + anon_sym_LPAREN, + ACTIONS(13392), 1, + anon_sym_STAR, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11161), 1, + sym_dotted_name, + STATE(12324), 1, + sym_wildcard_import, + STATE(12446), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11531), 2, + sym_relative_import, + sym_aliased_import, + [324628] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13394), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9562), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324658] = 5, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13396), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324682] = 12, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13399), 1, + anon_sym_RPAREN, + ACTIONS(13401), 1, + anon_sym_COMMA, + STATE(9799), 1, + sym_for_in_clause, + STATE(12023), 1, + aux_sym_argument_list_repeat1, + STATE(12721), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324720] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13403), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324750] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13405), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9621), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324780] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12619), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13407), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9566), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [324848] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12519), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [324886] = 5, + ACTIONS(13116), 1, + anon_sym_ref, + STATE(11504), 1, + sym_argument_convention, + STATE(11818), 1, + sym__ref_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13114), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [324910] = 5, + ACTIONS(13158), 1, + anon_sym_ref, + STATE(11576), 1, + sym__ref_convention, + STATE(12462), 1, + sym_argument_convention, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13156), 8, + anon_sym_mut, + anon_sym_out, + anon_sym_borrowed, + anon_sym_inout, + anon_sym_owned, + anon_sym_read, + anon_sym_var, + anon_sym_deinit, + [324934] = 4, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324956] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 7, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [324982] = 5, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(13417), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 8, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325006] = 12, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13420), 1, + anon_sym_RPAREN, + STATE(9799), 1, + sym_for_in_clause, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + STATE(12729), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325044] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12670), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325082] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13252), 1, + anon_sym_LBRACE, + ACTIONS(13256), 1, + anon_sym_BSLASH, + ACTIONS(13422), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [325112] = 4, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325134] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13426), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13424), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(10777), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_where, + [325164] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325190] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 7, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325216] = 3, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + anon_sym_or, + [325236] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12546), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325274] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 7, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325300] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13428), 1, + anon_sym_LBRACE, + ACTIONS(13434), 1, + anon_sym_BSLASH, + ACTIONS(13437), 1, + sym_string_end, + STATE(9766), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13431), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(9629), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [325330] = 7, + ACTIONS(11647), 1, + anon_sym_abi, + ACTIONS(13439), 1, + anon_sym_raises, + ACTIONS(13442), 1, + anon_sym_thin, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11641), 2, + anon_sym_capturing, + anon_sym_escaping, + STATE(9630), 2, + aux_sym__function_effects, + sym_abi_specifier, + ACTIONS(11636), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [325358] = 12, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11290), 1, + anon_sym_if, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(9837), 1, + sym_for_in_clause, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + STATE(12724), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325396] = 10, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(13445), 1, + anon_sym_RPAREN, + ACTIONS(13447), 1, + anon_sym_COMMA, + ACTIONS(13449), 1, + anon_sym_where, + STATE(12049), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10165), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [325429] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [325454] = 10, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13451), 1, + anon_sym_COMMA, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13455), 1, + anon_sym_RBRACK, + ACTIONS(13457), 1, + anon_sym_EQ, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13461), 1, + anon_sym_where, + STATE(11896), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10702), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [325487] = 10, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(13463), 1, + anon_sym_COMMA, + ACTIONS(13465), 1, + anon_sym_RBRACK, + ACTIONS(13467), 1, + anon_sym_EQ, + STATE(11967), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10729), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [325520] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13469), 10, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_unified, + anon_sym_where, + [325537] = 10, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(13471), 1, + anon_sym_COMMA, + ACTIONS(13473), 1, + anon_sym_RBRACK, + ACTIONS(13475), 1, + anon_sym_EQ, + STATE(11831), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10495), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [325570] = 10, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(13477), 1, + anon_sym_COMMA, + ACTIONS(13479), 1, + anon_sym_RBRACK, + ACTIONS(13481), 1, + anon_sym_EQ, + STATE(12069), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10788), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [325603] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [325628] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13483), 10, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_unified, + anon_sym_where, + [325645] = 8, + ACTIONS(13485), 1, + anon_sym_COMMA, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + STATE(10224), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [325674] = 8, + ACTIONS(13485), 1, + anon_sym_COMMA, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + STATE(10224), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13497), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [325703] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10777), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [325728] = 5, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(13499), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [325750] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [325774] = 4, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [325794] = 3, + ACTIONS(9572), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [325812] = 9, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13504), 1, + anon_sym_from, + ACTIONS(13506), 1, + anon_sym_COMMA, + STATE(11050), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13502), 2, + sym__newline, + anon_sym_SEMI, + [325842] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13508), 1, + anon_sym_COMMA, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13512), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12238), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325874] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13514), 1, + anon_sym_COMMA, + ACTIONS(13516), 1, + anon_sym_RBRACK, + STATE(11885), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [325906] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [325922] = 5, + ACTIONS(13518), 1, + anon_sym_DOT, + ACTIONS(13522), 1, + anon_sym_EQ, + STATE(9672), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [325944] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13524), 9, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [325960] = 8, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11331), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13526), 2, + sym__newline, + anon_sym_SEMI, + STATE(12046), 2, + sym_relative_import, + sym_aliased_import, + [325988] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [326012] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13530), 9, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [326028] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13532), 1, + anon_sym_COMMA, + ACTIONS(13534), 1, + anon_sym_RBRACK, + STATE(12109), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326060] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13536), 9, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_raises, + anon_sym_capturing, + anon_sym_escaping, + anon_sym_thin, + anon_sym_abi, + anon_sym_where, + [326076] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(10777), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [326102] = 9, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + ACTIONS(13540), 1, + anon_sym_LPAREN, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11161), 1, + sym_dotted_name, + STATE(12421), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11531), 2, + sym_relative_import, + sym_aliased_import, + [326132] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13542), 1, + anon_sym_COMMA, + ACTIONS(13544), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12206), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326164] = 8, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10940), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [326192] = 4, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 7, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [326212] = 8, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11331), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13548), 2, + sym__newline, + anon_sym_SEMI, + STATE(12046), 2, + sym_relative_import, + sym_aliased_import, + [326240] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13550), 1, + anon_sym_COMMA, + ACTIONS(13552), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12202), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326272] = 6, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [326296] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [326312] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13554), 1, + anon_sym_COMMA, + ACTIONS(13556), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12159), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326344] = 8, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11331), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13548), 2, + sym__newline, + anon_sym_SEMI, + STATE(12046), 2, + sym_relative_import, + sym_aliased_import, + [326372] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13558), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [326396] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13562), 1, + anon_sym_RBRACK, + STATE(12061), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326428] = 4, + ACTIONS(13518), 1, + anon_sym_DOT, + STATE(9685), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13564), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [326448] = 3, + ACTIONS(12829), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [326466] = 6, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [326490] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13566), 1, + anon_sym_COMMA, + ACTIONS(13568), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12261), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [326538] = 4, + ACTIONS(13518), 1, + anon_sym_DOT, + STATE(9672), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [326558] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13570), 1, + anon_sym_COMMA, + ACTIONS(13572), 1, + anon_sym_RBRACK, + STATE(12019), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326590] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [326614] = 10, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(13574), 1, + anon_sym_COMMA, + ACTIONS(13576), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12189), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [326646] = 8, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(13580), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13578), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(11139), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [326674] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [326698] = 5, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(13582), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [326720] = 5, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(13026), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [326742] = 4, + ACTIONS(13587), 1, + anon_sym_DOT, + STATE(9685), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [326762] = 3, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [326780] = 3, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_or, + sym_type_conversion, + [326798] = 6, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [326822] = 3, + ACTIONS(13590), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [326839] = 3, + ACTIONS(13592), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [326856] = 7, + ACTIONS(5691), 1, + anon_sym_except_STAR, + ACTIONS(5693), 1, + anon_sym_except, + ACTIONS(13594), 1, + anon_sym_finally, + STATE(5779), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3854), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(3856), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [326881] = 5, + ACTIONS(13596), 1, + anon_sym_DOT, + ACTIONS(13598), 1, + anon_sym_EQ, + STATE(9911), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [326902] = 8, + ACTIONS(13548), 1, + anon_sym_RPAREN, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11575), 1, + sym_import_prefix, + STATE(12125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12335), 2, + sym_relative_import, + sym_aliased_import, + [326929] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13506), 1, + anon_sym_COMMA, + STATE(11050), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 2, + sym__newline, + anon_sym_SEMI, + [326956] = 3, + ACTIONS(13604), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [326973] = 5, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [326994] = 3, + ACTIONS(13608), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327011] = 5, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [327032] = 3, + ACTIONS(11116), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327049] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13506), 1, + anon_sym_COMMA, + STATE(11050), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13610), 2, + sym__newline, + anon_sym_SEMI, + [327076] = 3, + ACTIONS(13612), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327093] = 3, + ACTIONS(11068), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327110] = 3, + ACTIONS(13614), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327127] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13506), 1, + anon_sym_COMMA, + STATE(11050), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13616), 2, + sym__newline, + anon_sym_SEMI, + [327154] = 5, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [327175] = 3, + ACTIONS(13618), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327192] = 5, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [327213] = 3, + ACTIONS(13620), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327230] = 3, + ACTIONS(13622), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327247] = 3, + ACTIONS(13624), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327264] = 5, + ACTIONS(13626), 1, + anon_sym_DOT, + ACTIONS(13628), 1, + anon_sym_EQ, + STATE(9783), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [327285] = 7, + ACTIONS(5699), 1, + anon_sym_except, + ACTIONS(5703), 1, + anon_sym_except_STAR, + ACTIONS(13630), 1, + anon_sym_finally, + STATE(4455), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3868), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(3883), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [327310] = 5, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [327331] = 5, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [327352] = 3, + ACTIONS(9572), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9560), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [327369] = 6, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10775), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [327392] = 3, + ACTIONS(13632), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327409] = 3, + ACTIONS(11096), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327426] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [327449] = 3, + ACTIONS(13634), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327466] = 6, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10752), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [327489] = 3, + ACTIONS(12829), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10708), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [327506] = 8, + ACTIONS(13526), 1, + anon_sym_RPAREN, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11575), 1, + sym_import_prefix, + STATE(12125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12335), 2, + sym_relative_import, + sym_aliased_import, + [327533] = 7, + ACTIONS(5699), 1, + anon_sym_except, + ACTIONS(5703), 1, + anon_sym_except_STAR, + ACTIONS(13630), 1, + anon_sym_finally, + STATE(4494), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3858), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(3859), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [327558] = 3, + ACTIONS(13636), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327575] = 8, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11257), 1, + sym_dotted_name, + STATE(11575), 1, + sym_import_prefix, + STATE(12561), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12095), 2, + sym_relative_import, + sym_aliased_import, + [327602] = 8, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11161), 1, + sym_dotted_name, + STATE(12442), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11531), 2, + sym_relative_import, + sym_aliased_import, + [327629] = 8, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11257), 1, + sym_dotted_name, + STATE(11575), 1, + sym_import_prefix, + STATE(12687), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12095), 2, + sym_relative_import, + sym_aliased_import, + [327656] = 5, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [327677] = 3, + ACTIONS(10898), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327694] = 6, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12837), 1, + anon_sym_if, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13638), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [327717] = 3, + ACTIONS(13640), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327734] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [327749] = 5, + ACTIONS(13642), 1, + anon_sym_DOT, + ACTIONS(13644), 1, + anon_sym_EQ, + STATE(9942), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [327770] = 3, + ACTIONS(13646), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327787] = 3, + ACTIONS(13648), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327804] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11793), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13650), 2, + sym__newline, + anon_sym_SEMI, + [327831] = 5, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [327852] = 6, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13280), 1, + anon_sym_if, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10766), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [327875] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11568), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13654), 2, + sym__newline, + anon_sym_SEMI, + [327902] = 3, + ACTIONS(13656), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327919] = 3, + ACTIONS(13658), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327936] = 3, + ACTIONS(13660), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [327953] = 5, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(13662), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10768), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [327974] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13506), 1, + anon_sym_COMMA, + STATE(11050), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10850), 2, + sym__newline, + anon_sym_SEMI, + [328001] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13667), 1, + anon_sym_COMMA, + STATE(11291), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13665), 2, + sym__newline, + anon_sym_SEMI, + [328028] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13671), 1, + anon_sym_COMMA, + STATE(11268), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13669), 2, + sym__newline, + anon_sym_SEMI, + [328055] = 3, + ACTIONS(13673), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328072] = 5, + ACTIONS(13026), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [328093] = 3, + ACTIONS(13675), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328110] = 3, + ACTIONS(13677), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328127] = 5, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13606), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [328148] = 8, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11309), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13679), 2, + sym__newline, + anon_sym_SEMI, + [328175] = 3, + ACTIONS(13681), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328192] = 3, + ACTIONS(13683), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328209] = 8, + ACTIONS(13548), 1, + anon_sym_RPAREN, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11575), 1, + sym_import_prefix, + STATE(12125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12335), 2, + sym_relative_import, + sym_aliased_import, + [328236] = 3, + ACTIONS(13685), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328253] = 7, + ACTIONS(5691), 1, + anon_sym_except_STAR, + ACTIONS(5693), 1, + anon_sym_except, + ACTIONS(13594), 1, + anon_sym_finally, + STATE(5203), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3865), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(3870), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [328278] = 3, + ACTIONS(13687), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328295] = 3, + ACTIONS(13689), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328312] = 3, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [328329] = 4, + ACTIONS(13028), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10714), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [328348] = 3, + ACTIONS(13691), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328365] = 3, + ACTIONS(13693), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328382] = 3, + ACTIONS(13695), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13701), 1, + anon_sym_BSLASH, + ACTIONS(13697), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(9769), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13699), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [328422] = 4, + ACTIONS(1550), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(13703), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [328441] = 3, + ACTIONS(13705), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(13712), 1, + anon_sym_BSLASH, + ACTIONS(13707), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(9769), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(13709), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [328481] = 3, + ACTIONS(13715), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328498] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328518] = 3, + ACTIONS(13717), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [328534] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13719), 1, + anon_sym_COMMA, + ACTIONS(13721), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12105), 1, + aux_sym_dictionary_repeat1, + STATE(12749), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [328560] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328580] = 3, + ACTIONS(13723), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [328596] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328616] = 3, + ACTIONS(13725), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328632] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328652] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13727), 1, + anon_sym_COMMA, + ACTIONS(13729), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11981), 1, + aux_sym_dictionary_repeat1, + STATE(12600), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [328678] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328698] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328718] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328738] = 4, + ACTIONS(13626), 1, + anon_sym_DOT, + STATE(9919), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13564), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [328756] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328776] = 3, + ACTIONS(13731), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [328792] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328812] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328832] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328852] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328872] = 6, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13733), 1, + anon_sym_if, + ACTIONS(13735), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(9983), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [328894] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [328914] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13737), 1, + anon_sym_COMMA, + ACTIONS(13739), 1, + anon_sym_RBRACK, + STATE(12115), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [328940] = 3, + ACTIONS(13741), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [328956] = 4, + ACTIONS(4187), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6939), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [328974] = 3, + ACTIONS(13743), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [328990] = 3, + ACTIONS(13745), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329006] = 3, + ACTIONS(13747), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329022] = 8, + ACTIONS(13359), 1, + anon_sym_RPAREN, + ACTIONS(13361), 1, + anon_sym_COMMA, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + STATE(11879), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329048] = 6, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13735), 1, + anon_sym_RPAREN, + ACTIONS(13749), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(9948), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [329070] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13751), 1, + anon_sym_COMMA, + ACTIONS(13753), 1, + anon_sym_RBRACK, + STATE(12220), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329096] = 3, + ACTIONS(13755), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329112] = 3, + ACTIONS(13757), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329128] = 3, + ACTIONS(13759), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329144] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329164] = 3, + ACTIONS(13761), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329180] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329200] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329220] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329240] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13763), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_where, + [329262] = 3, + ACTIONS(13765), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329278] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329298] = 8, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13767), 1, + anon_sym_COMMA, + ACTIONS(13769), 1, + anon_sym_RBRACK, + ACTIONS(13771), 1, + anon_sym_EQ, + STATE(12137), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329324] = 3, + ACTIONS(13773), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329340] = 3, + ACTIONS(13775), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329356] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13777), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [329380] = 3, + ACTIONS(13779), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329396] = 3, + ACTIONS(13781), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329412] = 3, + ACTIONS(13783), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329428] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329448] = 3, + ACTIONS(12056), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329464] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329484] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329504] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329524] = 3, + ACTIONS(13785), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [329540] = 3, + ACTIONS(13787), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329556] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329576] = 8, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(13489), 1, + anon_sym_RPAREN, + ACTIONS(13789), 1, + anon_sym_COMMA, + STATE(12280), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329602] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329622] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329642] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329662] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329682] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329702] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13791), 1, + anon_sym_COMMA, + ACTIONS(13793), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11982), 1, + aux_sym_dictionary_repeat1, + STATE(12509), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329728] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13795), 1, + anon_sym_COMMA, + ACTIONS(13797), 1, + anon_sym_RBRACK, + STATE(11867), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329754] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13799), 1, + anon_sym_COMMA, + ACTIONS(13801), 1, + anon_sym_RBRACK, + STATE(12144), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [329780] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329800] = 6, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(13735), 1, + anon_sym_RBRACK, + ACTIONS(13803), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10079), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [329822] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329842] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329862] = 3, + ACTIONS(13805), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329878] = 3, + ACTIONS(13807), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329894] = 3, + ACTIONS(13809), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329910] = 3, + ACTIONS(13811), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329926] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [329946] = 4, + ACTIONS(13596), 1, + anon_sym_DOT, + STATE(9911), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [329964] = 3, + ACTIONS(13813), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [329980] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330000] = 3, + ACTIONS(13815), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330016] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13817), 1, + anon_sym_COMMA, + ACTIONS(13819), 1, + anon_sym_RBRACK, + STATE(12130), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330042] = 3, + ACTIONS(13821), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330058] = 3, + ACTIONS(13823), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330074] = 3, + ACTIONS(11424), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330090] = 8, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13825), 1, + anon_sym_COMMA, + ACTIONS(13827), 1, + anon_sym_RBRACK, + ACTIONS(13829), 1, + anon_sym_EQ, + STATE(12071), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330116] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330136] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330156] = 3, + ACTIONS(13831), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330172] = 3, + ACTIONS(13833), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330188] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330208] = 7, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(13835), 1, + anon_sym_DOT, + ACTIONS(13837), 1, + anon_sym___future__, + STATE(11271), 1, + aux_sym_import_prefix_repeat1, + STATE(12039), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12584), 2, + sym_relative_import, + sym_dotted_name, + [330232] = 3, + ACTIONS(13839), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12802), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330248] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13841), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [330270] = 8, + ACTIONS(13399), 1, + anon_sym_RPAREN, + ACTIONS(13401), 1, + anon_sym_COMMA, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + STATE(12023), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330296] = 3, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12756), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330312] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13538), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [330334] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330354] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13703), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [330370] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330390] = 3, + ACTIONS(13847), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12744), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330406] = 3, + ACTIONS(13849), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330422] = 3, + ACTIONS(13851), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330438] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330458] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13853), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [330480] = 3, + ACTIONS(13855), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330496] = 3, + ACTIONS(13857), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330512] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13859), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [330534] = 3, + ACTIONS(13861), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12760), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330550] = 3, + ACTIONS(13863), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12764), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330566] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13865), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [330582] = 3, + ACTIONS(13869), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330598] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(13873), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330624] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330644] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330664] = 7, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(13426), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13424), 2, + sym__newline, + anon_sym_SEMI, + [330688] = 3, + ACTIONS(13875), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330704] = 3, + ACTIONS(13877), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330720] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13879), 1, + anon_sym_COMMA, + ACTIONS(13881), 1, + anon_sym_RBRACK, + STATE(11900), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330746] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330766] = 3, + ACTIONS(13883), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330782] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330802] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13885), 1, + anon_sym_COMMA, + ACTIONS(13887), 1, + anon_sym_RBRACK, + STATE(12116), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330828] = 4, + ACTIONS(4272), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6944), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(13703), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [330846] = 3, + ACTIONS(13889), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10804), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330862] = 3, + ACTIONS(11384), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330878] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330898] = 3, + ACTIONS(13891), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [330914] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13893), 1, + anon_sym_COMMA, + ACTIONS(13895), 1, + anon_sym_RBRACK, + STATE(12072), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [330940] = 3, + ACTIONS(13897), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330956] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [330976] = 3, + ACTIONS(11696), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [330992] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331012] = 3, + ACTIONS(13899), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331028] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331048] = 8, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(13901), 1, + anon_sym_COMMA, + ACTIONS(13903), 1, + anon_sym_RBRACK, + ACTIONS(13905), 1, + anon_sym_EQ, + STATE(12094), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [331074] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13907), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_where, + [331096] = 3, + ACTIONS(13909), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331112] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331132] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331152] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(13911), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [331178] = 3, + ACTIONS(13913), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331194] = 3, + ACTIONS(13915), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331210] = 4, + ACTIONS(13596), 1, + anon_sym_DOT, + STATE(9991), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13564), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [331228] = 3, + ACTIONS(13917), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331244] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331264] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331284] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331304] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331324] = 3, + ACTIONS(13919), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331340] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13777), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [331362] = 4, + ACTIONS(13921), 1, + anon_sym_DOT, + STATE(9919), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [331380] = 3, + ACTIONS(13924), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12698), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331396] = 3, + ACTIONS(13926), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [331412] = 3, + ACTIONS(11262), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331428] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331448] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331468] = 3, + ACTIONS(13928), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331484] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331504] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331524] = 3, + ACTIONS(13930), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331540] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331560] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331580] = 3, + ACTIONS(13932), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331596] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331616] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331636] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13934), 1, + anon_sym_COMMA, + ACTIONS(13936), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11843), 1, + aux_sym_dictionary_repeat1, + STATE(12476), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [331662] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331682] = 3, + ACTIONS(13938), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331698] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331718] = 3, + ACTIONS(11494), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331734] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331754] = 3, + ACTIONS(13940), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331770] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331790] = 4, + ACTIONS(13642), 1, + anon_sym_DOT, + STATE(9977), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13564), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [331808] = 3, + ACTIONS(13942), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12770), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [331824] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331844] = 3, + ACTIONS(13944), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [331860] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331880] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13946), 1, + anon_sym_COMMA, + ACTIONS(13948), 1, + anon_sym_RBRACK, + STATE(11887), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [331906] = 6, + ACTIONS(13282), 1, + anon_sym_async, + ACTIONS(13284), 1, + anon_sym_for, + ACTIONS(13749), 1, + anon_sym_if, + ACTIONS(13950), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10008), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [331928] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331948] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13952), 1, + anon_sym_COMMA, + ACTIONS(13954), 1, + anon_sym_RBRACK, + STATE(12140), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [331974] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [331994] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332014] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332034] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332054] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332074] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332094] = 3, + ACTIONS(13956), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332110] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332130] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332150] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332170] = 3, + ACTIONS(13958), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [332186] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332206] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332226] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13960), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [332248] = 3, + ACTIONS(13962), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12774), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332264] = 3, + ACTIONS(11454), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11094), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [332280] = 3, + ACTIONS(13964), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332296] = 8, + ACTIONS(5193), 1, + anon_sym_RBRACK, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13966), 1, + anon_sym_COMMA, + STATE(11890), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332322] = 3, + ACTIONS(13968), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332338] = 3, + ACTIONS(13970), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12778), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332354] = 3, + ACTIONS(13972), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [332370] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332390] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332410] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332430] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332450] = 3, + ACTIONS(13974), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [332466] = 4, + ACTIONS(13976), 1, + anon_sym_DOT, + STATE(9977), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [332484] = 7, + ACTIONS(13600), 1, + sym_identifier, + ACTIONS(13602), 1, + anon_sym_DOT, + STATE(11122), 1, + aux_sym_import_prefix_repeat1, + STATE(11575), 1, + sym_import_prefix, + STATE(12125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12335), 2, + sym_relative_import, + sym_aliased_import, + [332508] = 3, + ACTIONS(13979), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12722), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332524] = 3, + ACTIONS(11566), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332540] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13981), 1, + anon_sym_COMMA, + ACTIONS(13983), 1, + anon_sym_COLON, + STATE(11854), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332566] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332586] = 6, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13733), 1, + anon_sym_if, + ACTIONS(13950), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10017), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [332608] = 5, + ACTIONS(13278), 1, + anon_sym_as, + ACTIONS(13286), 1, + anon_sym_and, + ACTIONS(13288), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13985), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [332628] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332648] = 3, + ACTIONS(13987), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12726), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332664] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(13989), 1, + anon_sym_COMMA, + ACTIONS(13991), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12182), 1, + aux_sym_dictionary_repeat1, + STATE(12552), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332690] = 3, + ACTIONS(13993), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12730), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332706] = 5, + ACTIONS(11288), 1, + anon_sym_as, + ACTIONS(11296), 1, + anon_sym_and, + ACTIONS(11298), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13985), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [332726] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332746] = 4, + ACTIONS(13995), 1, + anon_sym_DOT, + STATE(9991), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [332764] = 6, + ACTIONS(13998), 1, + anon_sym_if, + ACTIONS(14001), 1, + anon_sym_async, + ACTIONS(14004), 1, + anon_sym_for, + ACTIONS(14007), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(9992), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [332786] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332806] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332826] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(14009), 1, + anon_sym_COMMA, + ACTIONS(14011), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12178), 1, + aux_sym_dictionary_repeat1, + STATE(12644), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332852] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(14013), 1, + anon_sym_COMMA, + ACTIONS(14015), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(11869), 1, + aux_sym_dictionary_repeat1, + STATE(12578), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332878] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332898] = 3, + ACTIONS(14017), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12686), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [332914] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332934] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [332954] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14019), 1, + anon_sym_COMMA, + ACTIONS(14021), 1, + anon_sym_RBRACK, + STATE(11875), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [332980] = 3, + ACTIONS(14023), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12748), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [332996] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333016] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333036] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333056] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14025), 1, + anon_sym_COMMA, + ACTIONS(14027), 1, + anon_sym_RBRACK, + STATE(12196), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333082] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333102] = 6, + ACTIONS(14007), 1, + anon_sym_RPAREN, + ACTIONS(14029), 1, + anon_sym_if, + ACTIONS(14032), 1, + anon_sym_async, + ACTIONS(14035), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10008), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [333124] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14038), 1, + anon_sym_COMMA, + ACTIONS(14040), 1, + anon_sym_RBRACK, + STATE(11897), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333150] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333170] = 3, + ACTIONS(14042), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333186] = 4, + ACTIONS(4635), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7370), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [333204] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14044), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [333228] = 5, + ACTIONS(12833), 1, + anon_sym_as, + ACTIONS(12846), 1, + anon_sym_and, + ACTIONS(12848), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13985), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [333248] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333268] = 8, + ACTIONS(13341), 1, + anon_sym_RPAREN, + ACTIONS(13343), 1, + anon_sym_COMMA, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + STATE(12198), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333294] = 6, + ACTIONS(14007), 1, + anon_sym_RBRACE, + ACTIONS(14047), 1, + anon_sym_if, + ACTIONS(14050), 1, + anon_sym_async, + ACTIONS(14053), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10017), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [333316] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(14056), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333342] = 3, + ACTIONS(14058), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12752), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333358] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333378] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333398] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333418] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333438] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333458] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333478] = 3, + ACTIONS(14060), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12734), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333494] = 3, + ACTIONS(14062), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12690), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333510] = 3, + ACTIONS(14064), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333526] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333546] = 3, + ACTIONS(14066), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12738), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333562] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13489), 1, + anon_sym_RBRACK, + ACTIONS(14068), 1, + anon_sym_COMMA, + STATE(12203), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333588] = 3, + ACTIONS(14070), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12782), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333604] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14072), 1, + anon_sym_COMMA, + ACTIONS(14074), 1, + anon_sym_RBRACK, + STATE(12171), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333630] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333650] = 3, + ACTIONS(14076), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333666] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14078), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [333690] = 3, + ACTIONS(14080), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12708), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333706] = 3, + ACTIONS(11200), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10896), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333722] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14082), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [333746] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333766] = 8, + ACTIONS(13298), 1, + anon_sym_RPAREN, + ACTIONS(13300), 1, + anon_sym_COMMA, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + STATE(12245), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333792] = 7, + ACTIONS(5775), 1, + anon_sym_COLON, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [333816] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333836] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333856] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333876] = 3, + ACTIONS(14084), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10970), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [333892] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333912] = 3, + ACTIONS(11476), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [333928] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333948] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(14086), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [333974] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [333994] = 4, + ACTIONS(13642), 1, + anon_sym_DOT, + STATE(9942), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [334012] = 3, + ACTIONS(14088), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334028] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334048] = 3, + ACTIONS(14090), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334064] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334084] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334104] = 8, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(14092), 1, + anon_sym_COMMA, + ACTIONS(14094), 1, + anon_sym_RBRACK, + ACTIONS(14096), 1, + anon_sym_EQ, + STATE(11926), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334130] = 7, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(13510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13859), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [334154] = 3, + ACTIONS(14098), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11038), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334170] = 3, + ACTIONS(14100), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12716), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334186] = 3, + ACTIONS(14102), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12790), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334202] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334222] = 3, + ACTIONS(14104), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12794), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334238] = 8, + ACTIONS(12839), 1, + anon_sym_async, + ACTIONS(12841), 1, + anon_sym_for, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14108), 1, + anon_sym_RBRACE, + STATE(9790), 1, + sym_for_in_clause, + STATE(12025), 1, + aux_sym_dictionary_repeat1, + STATE(12690), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334264] = 7, + ACTIONS(13386), 1, + sym_identifier, + ACTIONS(13388), 1, + anon_sym_DOT, + STATE(10837), 1, + aux_sym_import_prefix_repeat1, + STATE(11030), 1, + sym_import_prefix, + STATE(11331), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12046), 2, + sym_relative_import, + sym_aliased_import, + [334288] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334308] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334328] = 4, + ACTIONS(13626), 1, + anon_sym_DOT, + STATE(9783), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [334346] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334366] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13763), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [334388] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(14110), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334414] = 3, + ACTIONS(14112), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11004), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334430] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14114), 1, + anon_sym_COMMA, + ACTIONS(14116), 1, + anon_sym_RBRACK, + STATE(11935), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334456] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334476] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334496] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(14118), 1, + anon_sym_COMMA, + ACTIONS(14120), 1, + anon_sym_COLON, + STATE(12180), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334522] = 8, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13871), 1, + anon_sym_COMMA, + ACTIONS(14122), 1, + anon_sym_COLON, + STATE(11830), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334548] = 6, + ACTIONS(11292), 1, + anon_sym_async, + ACTIONS(11294), 1, + anon_sym_for, + ACTIONS(13803), 1, + anon_sym_if, + ACTIONS(13950), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(9992), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [334570] = 3, + ACTIONS(14124), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12694), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334586] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334606] = 8, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(14126), 1, + anon_sym_COMMA, + ACTIONS(14128), 1, + anon_sym_RBRACK, + STATE(12055), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334632] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334652] = 3, + ACTIONS(14130), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12712), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [334668] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334688] = 3, + ACTIONS(14132), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12798), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334704] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334724] = 3, + ACTIONS(11234), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10950), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334740] = 3, + ACTIONS(11618), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11018), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [334756] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334776] = 5, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_where, + [334796] = 3, + ACTIONS(14134), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12786), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_where, + [334812] = 3, + ACTIONS(14136), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12702), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [334828] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [334847] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [334866] = 4, + ACTIONS(14148), 1, + anon_sym_COMMA, + STATE(10425), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14146), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [334883] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14150), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11795), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [334904] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [334923] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [334942] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13763), 2, + anon_sym_COLON, + anon_sym_where, + [334963] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14152), 1, + anon_sym_RPAREN, + ACTIONS(14154), 1, + anon_sym_COMMA, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + STATE(11851), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [334986] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [335005] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14160), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11679), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335026] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [335045] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14162), 1, + anon_sym_RPAREN, + ACTIONS(14164), 1, + anon_sym_COMMA, + STATE(12200), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335068] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335087] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14166), 1, + anon_sym_RPAREN, + ACTIONS(14168), 1, + anon_sym_COMMA, + STATE(11986), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335110] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [335129] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14170), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11656), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335150] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14172), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11729), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335171] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [335190] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14174), 1, + anon_sym_RPAREN, + ACTIONS(14176), 1, + anon_sym_COMMA, + STATE(12076), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335213] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14178), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11456), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335234] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14180), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11791), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335255] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335274] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14182), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [335295] = 4, + ACTIONS(14184), 1, + anon_sym_COMMA, + STATE(10119), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14186), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [335312] = 4, + ACTIONS(14188), 1, + anon_sym_COMMA, + STATE(10423), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14190), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [335329] = 4, + ACTIONS(14192), 1, + anon_sym_COMMA, + STATE(10119), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [335346] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14197), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11754), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335367] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14199), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11626), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335388] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14201), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11330), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335409] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335428] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14203), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11290), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335449] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335468] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335487] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335506] = 4, + ACTIONS(14205), 1, + anon_sym_COMMA, + STATE(10128), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [335523] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14208), 1, + anon_sym_RPAREN, + ACTIONS(14210), 1, + anon_sym_COMMA, + STATE(11840), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335546] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335565] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14212), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11692), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335586] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14214), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11673), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335607] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335626] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14216), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11676), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335647] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14218), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11652), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335668] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335687] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [335700] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14220), 1, + anon_sym_RPAREN, + ACTIONS(14222), 1, + anon_sym_COMMA, + STATE(11858), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335723] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [335744] = 6, + ACTIONS(341), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9030), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [335765] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14228), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11678), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335786] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14230), 1, + anon_sym_RPAREN, + ACTIONS(14232), 1, + anon_sym_COMMA, + STATE(11917), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [335809] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14234), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11285), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335830] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [335849] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335868] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14236), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11684), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [335889] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [335908] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335927] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335946] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335965] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [335984] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14238), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11314), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336005] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336024] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336043] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336062] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336081] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336100] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336119] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336138] = 6, + ACTIONS(341), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9294), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [336159] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14240), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [336180] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336199] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336218] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336237] = 6, + ACTIONS(5526), 1, + anon_sym_RPAREN, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(14242), 1, + anon_sym_COMMA, + STATE(11957), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10978), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336258] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336277] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14244), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11319), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336298] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336317] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336336] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336355] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336374] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336393] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336412] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14246), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11690), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336433] = 7, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(14248), 1, + anon_sym_COMMA, + ACTIONS(14250), 1, + anon_sym_as, + ACTIONS(14252), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [336456] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14254), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11258), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336477] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [336496] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [336515] = 4, + ACTIONS(14256), 1, + anon_sym_COMMA, + STATE(10128), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5179), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [336532] = 6, + ACTIONS(5528), 1, + anon_sym_RPAREN, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(14258), 1, + anon_sym_COMMA, + STATE(11971), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10978), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336553] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [336572] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14260), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11362), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336593] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14262), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11292), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336614] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14264), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11306), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336635] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14266), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11308), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336656] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14268), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11320), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336677] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [336696] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14270), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11693), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336717] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [336736] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11345), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336757] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14274), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11347), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336778] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14276), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11351), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336799] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14278), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11360), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336820] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14280), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11361), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336841] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14282), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11365), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336862] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14284), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11369), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336883] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14286), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11371), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336904] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14288), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11372), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336925] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14290), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11259), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336946] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14292), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11424), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [336967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [336982] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [337001] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11705), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337022] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14298), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11415), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337043] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14300), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11417), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337064] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14302), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11419), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337085] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14304), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11421), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337106] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14306), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11423), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337127] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14308), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11428), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337148] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14310), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11463), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337169] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14312), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11465), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337190] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14314), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11466), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337211] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14316), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11469), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337232] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14318), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11470), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337253] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14320), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11472), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337274] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14322), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11477), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337295] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11479), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337316] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14326), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11274), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337337] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [337358] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14328), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11430), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337379] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [337398] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14330), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11278), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337419] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14332), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11440), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337440] = 4, + ACTIONS(14334), 1, + anon_sym_COMMA, + STATE(10291), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5677), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [337457] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [337476] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [337495] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14336), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11446), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337516] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14338), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11296), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337537] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [337556] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [337575] = 6, + ACTIONS(13445), 1, + anon_sym_RPAREN, + ACTIONS(13447), 1, + anon_sym_COMMA, + ACTIONS(13449), 1, + anon_sym_where, + STATE(12049), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10165), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337596] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [337615] = 6, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(14340), 1, + anon_sym_RPAREN, + ACTIONS(14342), 1, + anon_sym_COMMA, + STATE(11821), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10180), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337636] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [337655] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14344), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11583), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337676] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14346), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11584), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337697] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14348), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11586), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337718] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14350), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11588), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337739] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14352), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11589), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337760] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14354), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11593), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337781] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14356), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11599), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337802] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14358), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11603), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337823] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14360), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11608), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337844] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14362), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11714), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337865] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14364), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11329), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337886] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14366), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11717), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337907] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14368), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11649), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337928] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14370), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11653), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337949] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14372), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11655), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337970] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14374), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11657), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [337991] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14376), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11659), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338012] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [338031] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [338050] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14378), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11475), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338071] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14380), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11333), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338092] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [338113] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14382), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11720), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338134] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14384), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13865), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [338149] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14386), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11695), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338170] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14388), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [338191] = 4, + ACTIONS(14392), 1, + anon_sym_DOT, + STATE(10261), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14390), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [338208] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [338227] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14395), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11395), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338248] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [338267] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [338286] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [338305] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14397), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11464), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338326] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [338345] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14399), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11742), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338366] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14401), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11763), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338387] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14403), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11764), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338408] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14405), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11765), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338429] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14407), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11767), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338450] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14409), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11768), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338471] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14411), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11769), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338492] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14413), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11772), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338513] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14415), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11775), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338534] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14417), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11499), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338555] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14419), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11780), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338576] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [338597] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14421), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11792), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338618] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14423), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11422), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338639] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13558), 2, + sym__newline, + anon_sym_SEMI, + [338660] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [338679] = 4, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [338696] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14425), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11723), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338717] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12425), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [338736] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [338755] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [338776] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14429), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11449), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338797] = 4, + ACTIONS(14431), 1, + anon_sym_COMMA, + STATE(10291), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 4, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [338814] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [338833] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14434), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11461), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338854] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14436), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11726), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338875] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14438), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11209), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338896] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14440), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11665), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338917] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14442), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11208), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338938] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14444), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11736), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338959] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14446), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11407), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [338980] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14448), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11416), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339001] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14450), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11480), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339022] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14452), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11486), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339043] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14454), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11491), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339064] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14456), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11517), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339085] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14458), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11572), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339106] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14460), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11591), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339127] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14462), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11595), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339148] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14464), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11636), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339169] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13538), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [339190] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14466), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11473), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339211] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [339230] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13638), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [339251] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13841), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [339272] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [339291] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [339310] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [339329] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [339348] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12409), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [339367] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [339386] = 6, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(14468), 1, + sym_identifier, + ACTIONS(14470), 1, + anon_sym_STAR, + ACTIONS(14472), 1, + anon_sym_self, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12664), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [339407] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13558), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [339428] = 6, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14476), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14474), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [339449] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14478), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [339470] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14480), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11778), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339491] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14482), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11802), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339512] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11192), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339533] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14486), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11199), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339554] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14488), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11203), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339575] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14490), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11206), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339596] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14492), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11216), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339617] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14494), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11219), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339638] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14496), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11228), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339659] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14498), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11240), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339680] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14500), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11242), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339701] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14502), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11244), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339722] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14504), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11246), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339743] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14506), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11249), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339764] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14508), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11251), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339785] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11256), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339806] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14512), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11263), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339827] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14514), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11264), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339848] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14516), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11266), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339869] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14518), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11269), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339890] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14520), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11275), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339911] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14522), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11279), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339932] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14524), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11282), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339953] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14526), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11753), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339974] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14528), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11482), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [339995] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14478), 2, + anon_sym_COMMA, + anon_sym_COLON, + [340016] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [340035] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14530), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11502), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340056] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14182), 2, + anon_sym_COMMA, + anon_sym_COLON, + [340077] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [340096] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [340109] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14532), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11303), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340130] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14534), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11305), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340151] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14536), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11311), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340172] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14538), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11313), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340193] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14540), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11318), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340214] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14542), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11321), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340235] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14544), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11322), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340256] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14546), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11326), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340277] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14548), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11336), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340298] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14550), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11338), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340319] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14552), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11341), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340340] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14554), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11349), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340361] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14556), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11355), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340382] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14558), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11366), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340403] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14560), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11368), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340424] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14562), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11383), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340445] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14564), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11384), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340466] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14566), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11386), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340487] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14568), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11394), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340508] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14570), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11396), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340529] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14572), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11398), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340550] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14574), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11406), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340571] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14576), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11408), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340592] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14578), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11412), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340613] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14580), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11414), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340634] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14582), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11420), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340655] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14584), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11426), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340676] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [340697] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [340716] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14586), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [340737] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14588), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11437), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340758] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14590), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11441), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340779] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14592), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11442), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340800] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14594), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11444), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340821] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14596), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11445), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340842] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14598), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11448), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340863] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14600), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11453), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340884] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14602), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11455), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340905] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14604), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11468), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340926] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14606), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11471), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340947] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14608), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11474), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340968] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14610), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11483), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [340989] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14612), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11488), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341010] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14614), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11493), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341031] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14616), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11494), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341052] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14618), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11495), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341073] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14620), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11497), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341094] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14622), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11500), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341115] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14624), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11521), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341136] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [341157] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14626), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11524), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341178] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14628), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11527), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341199] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14630), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11533), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341220] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14632), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11536), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341241] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14634), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11537), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341262] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14636), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11539), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341283] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14638), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11543), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341304] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14640), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11551), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341325] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14642), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11766), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341346] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341365] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14644), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [341386] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341405] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341424] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14646), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11630), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341445] = 4, + ACTIONS(14648), 1, + anon_sym_COMMA, + STATE(10425), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14186), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [341462] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14650), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11534), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341483] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341502] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14652), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11450), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341523] = 4, + ACTIONS(14654), 1, + anon_sym_COMMA, + STATE(10119), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14146), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [341540] = 4, + ACTIONS(14656), 1, + anon_sym_COMMA, + STATE(10096), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14190), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [341557] = 4, + ACTIONS(14658), 1, + anon_sym_COMMA, + STATE(10425), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [341574] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341593] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341612] = 6, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_PIPE, + ACTIONS(14663), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14661), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [341633] = 6, + ACTIONS(4845), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9070), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [341654] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341673] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14665), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11280), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341694] = 6, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(14669), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14667), 2, + sym__newline, + anon_sym_SEMI, + [341715] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341734] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11503), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341755] = 4, + ACTIONS(14673), 1, + anon_sym_COMMA, + STATE(10454), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14675), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [341772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [341787] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341806] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341825] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14679), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11337), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [341846] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341865] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341884] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341903] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341922] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [341941] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341960] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341979] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [341998] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342017] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342036] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342055] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342074] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342093] = 4, + ACTIONS(14681), 1, + anon_sym_COMMA, + STATE(10489), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14683), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [342110] = 4, + ACTIONS(14685), 1, + anon_sym_COMMA, + STATE(10492), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14687), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [342127] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342146] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342165] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342184] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14689), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11352), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [342205] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342224] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342243] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342262] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342281] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14691), 1, + anon_sym_RPAREN, + ACTIONS(14693), 1, + anon_sym_COMMA, + STATE(11913), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [342304] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342323] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342342] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [342361] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14695), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13865), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [342376] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14699), 1, + anon_sym_BSLASH, + ACTIONS(14697), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [342412] = 6, + ACTIONS(4845), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9375), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [342433] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342452] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14703), 1, + anon_sym_BSLASH, + ACTIONS(14701), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [342488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14707), 1, + anon_sym_BSLASH, + ACTIONS(14705), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [342505] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342524] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342543] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342562] = 6, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14711), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14709), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [342583] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342602] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [342621] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342640] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342659] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342678] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14713), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11594), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [342699] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13859), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [342720] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342739] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342758] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14715), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11640), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [342779] = 4, + ACTIONS(14717), 1, + anon_sym_COMMA, + STATE(10492), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14186), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [342796] = 4, + ACTIONS(14719), 1, + anon_sym_COMMA, + STATE(10620), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14190), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [342813] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13777), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [342834] = 4, + ACTIONS(14721), 1, + anon_sym_COMMA, + STATE(10492), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [342851] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342870] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342889] = 6, + ACTIONS(4715), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14724), 1, + anon_sym_COMMA, + STATE(11995), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [342910] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342929] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14726), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11528), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [342950] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342969] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [342988] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343007] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343026] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343045] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343064] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343083] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343102] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343121] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343140] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343159] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343178] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343197] = 4, + ACTIONS(14728), 1, + anon_sym_COMMA, + STATE(10777), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14675), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [343214] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14730), 1, + anon_sym_RPAREN, + ACTIONS(14732), 1, + anon_sym_COMMA, + STATE(12080), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343237] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343256] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14734), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11227), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [343277] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14736), 1, + anon_sym_RPAREN, + ACTIONS(14738), 1, + anon_sym_COMMA, + STATE(12087), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343300] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343319] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343338] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343357] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343376] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343395] = 4, + ACTIONS(14742), 1, + anon_sym_PIPE, + STATE(10801), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14740), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [343412] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343431] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343450] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343469] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14744), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11273), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [343490] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343509] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343528] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343547] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343566] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343585] = 6, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14746), 1, + anon_sym_COMMA, + ACTIONS(14748), 1, + anon_sym_RBRACK, + STATE(12100), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10590), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [343606] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343625] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343644] = 3, + STATE(10801), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [343659] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343678] = 4, + ACTIONS(14752), 1, + anon_sym_PIPE, + STATE(10536), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [343695] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14240), 2, + anon_sym_COMMA, + anon_sym_COLON, + [343716] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343735] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343754] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343773] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343792] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343811] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14757), 1, + anon_sym_BSLASH, + ACTIONS(14755), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [343847] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343866] = 4, + ACTIONS(14759), 1, + anon_sym_DOT, + STATE(10557), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13564), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [343883] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343902] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343921] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343940] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343959] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [343978] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14761), 2, + sym__newline, + anon_sym_SEMI, + [343999] = 4, + ACTIONS(14763), 1, + anon_sym_COMMA, + STATE(10737), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14675), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [344016] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14765), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11393), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344037] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344056] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344075] = 4, + ACTIONS(14767), 1, + anon_sym_DOT, + STATE(10557), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [344092] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344111] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344130] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344149] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344168] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14770), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11558), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344189] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344208] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344227] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344246] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14772), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11564), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344267] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344286] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344305] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14774), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11719), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344326] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344345] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [344364] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344383] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [344402] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344421] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344440] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344459] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14776), 1, + anon_sym_RPAREN, + ACTIONS(14778), 1, + anon_sym_COMMA, + STATE(12231), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344482] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344501] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344520] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344539] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344558] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344577] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344596] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344615] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344634] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344653] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14780), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11218), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344674] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344693] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344712] = 6, + ACTIONS(4699), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14782), 1, + anon_sym_COMMA, + STATE(12276), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [344733] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344752] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344771] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344790] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344809] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344828] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344847] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344866] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344885] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [344904] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344923] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344942] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344961] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [344980] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [344999] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345018] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345037] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14784), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11691), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [345058] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345077] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345096] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345115] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345134] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345153] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345172] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345191] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345210] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12585), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345229] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345248] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12587), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345267] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345286] = 4, + ACTIONS(14786), 1, + anon_sym_COMMA, + STATE(10492), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14146), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [345303] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12589), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345322] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345341] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12547), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345360] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12591), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345379] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14788), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11200), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [345400] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345419] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12593), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345438] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12595), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345457] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12597), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345476] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345495] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12549), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345514] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12599), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345533] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12551), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345552] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12601), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345571] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [345590] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345609] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14790), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13703), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [345643] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12553), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345662] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345681] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345700] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345719] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345738] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345757] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12557), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345776] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14792), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11798), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [345797] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345816] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345835] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [345854] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345873] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14794), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11680), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [345894] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12463), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345913] = 6, + ACTIONS(10317), 1, + anon_sym_STAR_STAR, + ACTIONS(14470), 1, + anon_sym_STAR, + ACTIONS(14796), 1, + sym_identifier, + ACTIONS(14798), 1, + anon_sym_self, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12548), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [345934] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14800), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11328), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [345955] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345974] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12465), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [345993] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346012] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12467), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346031] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12555), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [346050] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14802), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11557), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346071] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12469), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346090] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14804), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11721), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346111] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12559), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [346130] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12471), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346149] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12473), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14808), 1, + anon_sym_BSLASH, + ACTIONS(14806), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [346185] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14810), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11688), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346206] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12475), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346225] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14814), 1, + anon_sym_BSLASH, + ACTIONS(14812), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [346242] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14816), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11253), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346263] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14818), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11727), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346284] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14820), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11663), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14824), 1, + anon_sym_BSLASH, + ACTIONS(14822), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [346322] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14826), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11304), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346343] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14828), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11554), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346364] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14830), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11378), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346385] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [346404] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [346425] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14832), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11681), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346446] = 6, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14834), 1, + anon_sym_COMMA, + ACTIONS(14836), 1, + anon_sym_RBRACK, + STATE(12083), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10791), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346467] = 6, + ACTIONS(4313), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(8635), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [346488] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14838), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11342), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346509] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14840), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11334), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346530] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346549] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14842), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11481), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346570] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [346589] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14844), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11374), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346610] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14846), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11489), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346631] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14848), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11668), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346652] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [346665] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14850), 1, + anon_sym_RPAREN, + ACTIONS(14852), 1, + anon_sym_COMMA, + STATE(11898), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346688] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346707] = 6, + ACTIONS(4313), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(8653), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [346728] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 2, + anon_sym_COMMA, + anon_sym_COLON, + [346749] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14854), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11385), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346770] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14856), 2, + sym__newline, + anon_sym_SEMI, + [346791] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12415), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [346810] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14858), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11516), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346831] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14860), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11400), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346852] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [346871] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14862), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11409), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346892] = 6, + ACTIONS(4739), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14864), 1, + anon_sym_COMMA, + STATE(11907), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346913] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14866), 1, + anon_sym_RPAREN, + ACTIONS(14868), 1, + anon_sym_COMMA, + STATE(11918), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346936] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14870), 1, + anon_sym_RPAREN, + ACTIONS(14872), 1, + anon_sym_COMMA, + STATE(11922), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346959] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14874), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11379), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [346980] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14876), 1, + anon_sym_RPAREN, + ACTIONS(14878), 1, + anon_sym_COMMA, + STATE(12124), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347003] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14880), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11432), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347024] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14882), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11506), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347045] = 6, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14884), 1, + anon_sym_COMMA, + ACTIONS(14886), 1, + anon_sym_RBRACK, + STATE(11931), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10715), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347066] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14888), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11597), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347087] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14890), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11671), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347108] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14892), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11622), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347129] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14894), 1, + anon_sym_RPAREN, + ACTIONS(14896), 1, + anon_sym_COMMA, + STATE(11937), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347152] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14898), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11542), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347173] = 6, + ACTIONS(4765), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14900), 1, + anon_sym_COMMA, + STATE(11942), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347194] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14902), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11687), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347215] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [347234] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14904), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [347255] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14906), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [347276] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14908), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11492), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347297] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14910), 1, + anon_sym_RPAREN, + ACTIONS(14912), 1, + anon_sym_COMMA, + STATE(11947), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347320] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14914), 1, + anon_sym_RPAREN, + ACTIONS(14916), 1, + anon_sym_COMMA, + STATE(11949), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347343] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14918), 1, + anon_sym_RPAREN, + ACTIONS(14920), 1, + anon_sym_COMMA, + STATE(11950), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347366] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14922), 1, + anon_sym_RPAREN, + ACTIONS(14924), 1, + anon_sym_COMMA, + STATE(11952), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347389] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14926), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11711), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347410] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14928), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [347431] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14930), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11734), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347452] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14932), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11800), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347473] = 6, + ACTIONS(4727), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14934), 1, + anon_sym_COMMA, + STATE(11865), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347494] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14936), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11773), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347515] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14938), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11675), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347536] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14940), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11573), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347557] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14942), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11545), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347578] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14928), 2, + anon_sym_COMMA, + anon_sym_COLON, + [347599] = 4, + ACTIONS(14944), 1, + anon_sym_COMMA, + STATE(10117), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14683), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [347616] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14946), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [347637] = 4, + ACTIONS(14948), 1, + anon_sym_COMMA, + STATE(10119), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14687), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [347654] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14950), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11759), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347675] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347694] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347713] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14952), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11632), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [347734] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347753] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347772] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347791] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347810] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347829] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347848] = 4, + ACTIONS(14759), 1, + anon_sym_DOT, + STATE(10546), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13520), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [347865] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347884] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347903] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347922] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5849), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [347943] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347962] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [347981] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348000] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348019] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348038] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348057] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348076] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348095] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348114] = 6, + ACTIONS(13260), 1, + anon_sym_as, + ACTIONS(13262), 1, + anon_sym_if, + ACTIONS(13264), 1, + anon_sym_and, + ACTIONS(13266), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14954), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [348135] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14956), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11784), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348156] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348175] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348194] = 6, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(14960), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14958), 2, + sym__newline, + anon_sym_SEMI, + [348215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(14964), 1, + anon_sym_BSLASH, + ACTIONS(14962), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [348232] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14966), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11202), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348253] = 6, + ACTIONS(4353), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9027), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [348274] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12507), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348293] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348312] = 4, + ACTIONS(14968), 1, + anon_sym_COMMA, + STATE(10419), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14683), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [348329] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12509), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348348] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12511), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348367] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348386] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348405] = 4, + ACTIONS(14970), 1, + anon_sym_COMMA, + STATE(10425), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14687), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [348422] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12515), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348441] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14972), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11596), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348462] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14974), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11248), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348483] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14976), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11577), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348504] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14978), 1, + anon_sym_RPAREN, + ACTIONS(14980), 1, + anon_sym_COMMA, + STATE(12077), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348527] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14982), 2, + sym__newline, + anon_sym_SEMI, + [348548] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12513), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [348567] = 6, + ACTIONS(4353), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9064), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [348588] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13841), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [348609] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14984), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11381), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348630] = 6, + ACTIONS(4803), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14986), 1, + anon_sym_COMMA, + STATE(12101), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348651] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14988), 1, + anon_sym_RPAREN, + ACTIONS(14990), 1, + anon_sym_COMMA, + STATE(12133), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348674] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14992), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11427), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348695] = 6, + ACTIONS(4719), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(14994), 1, + anon_sym_COMMA, + STATE(12190), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348716] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(14996), 1, + anon_sym_RPAREN, + ACTIONS(14998), 1, + anon_sym_COMMA, + STATE(12136), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348739] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15000), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13865), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [348754] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12447), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [348773] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15002), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11562), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348794] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [348815] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15007), 2, + anon_sym_COMMA, + anon_sym_COLON, + [348836] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15009), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11459), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348857] = 6, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(15011), 1, + anon_sym_COMMA, + ACTIONS(15013), 1, + anon_sym_RBRACK, + STATE(12139), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10827), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348878] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15015), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11335), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348899] = 4, + ACTIONS(14742), 1, + anon_sym_PIPE, + STATE(10536), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15017), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [348916] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12477), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [348935] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [348954] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15019), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11553), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [348975] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12479), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [348994] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12481), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349013] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349032] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349051] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12485), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349070] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15021), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11317), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349091] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12449), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349110] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12483), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349129] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12487), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349148] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12489), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349167] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349186] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15023), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11756), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349207] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12491), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349226] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349245] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349264] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15025), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11188), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349285] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12495), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349304] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349323] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15027), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11191), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349344] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15029), 1, + anon_sym_RPAREN, + ACTIONS(15031), 1, + anon_sym_COMMA, + STATE(12146), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349367] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12451), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349386] = 7, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(14250), 1, + anon_sym_as, + ACTIONS(15033), 1, + anon_sym_COMMA, + ACTIONS(15035), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349409] = 6, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(15037), 1, + anon_sym_COMMA, + STATE(12151), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349430] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15039), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11529), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349451] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12427), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349470] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349489] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12429), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349508] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12453), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349527] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12431), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349546] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15041), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11425), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349567] = 3, + ACTIONS(15043), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [349582] = 7, + ACTIONS(15045), 1, + anon_sym_COMMA, + ACTIONS(15047), 1, + anon_sym_as, + ACTIONS(15049), 1, + anon_sym_COLON, + ACTIONS(15051), 1, + anon_sym_if, + STATE(11150), 1, + aux_sym_case_clause_repeat1, + STATE(12581), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349605] = 4, + ACTIONS(15055), 1, + anon_sym_DOT, + STATE(10261), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15053), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [349622] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12433), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349641] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12435), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349660] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11496), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349681] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15059), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11434), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349702] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12561), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349721] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15061), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11530), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349742] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12437), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349761] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12563), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349780] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15063), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11546), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349801] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12565), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349820] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349839] = 4, + ACTIONS(14742), 1, + anon_sym_PIPE, + STATE(10801), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [349856] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12441), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349875] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15067), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11651), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349896] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12567), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349915] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15069), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11276), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [349936] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12443), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [349955] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15071), 1, + anon_sym_RPAREN, + ACTIONS(15073), 1, + anon_sym_COMMA, + STATE(12207), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349978] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12569), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [349997] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12571), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350016] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12573), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350035] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350054] = 6, + ACTIONS(13487), 1, + anon_sym_as, + ACTIONS(13491), 1, + anon_sym_if, + ACTIONS(13493), 1, + anon_sym_and, + ACTIONS(13495), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15075), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [350075] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15077), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11710), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350096] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12575), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350115] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15079), 1, + anon_sym_RPAREN, + ACTIONS(15081), 1, + anon_sym_COMMA, + STATE(12213), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350138] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12455), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350157] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15083), 1, + anon_sym_RPAREN, + ACTIONS(15085), 1, + anon_sym_COMMA, + STATE(12215), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350180] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350199] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12445), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350218] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15087), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11713), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350239] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15089), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11641), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350260] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350279] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12457), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350298] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350317] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15091), 1, + anon_sym_RPAREN, + ACTIONS(15093), 1, + anon_sym_COMMA, + STATE(12217), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350340] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15095), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11645), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350361] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12417), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350380] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15097), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11605), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350401] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12459), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350420] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12579), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350439] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12419), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350458] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12461), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350477] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15099), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11646), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350498] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350517] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15101), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11443), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350538] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15103), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11747), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350559] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350578] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15105), 1, + anon_sym_RPAREN, + ACTIONS(15107), 1, + anon_sym_COMMA, + STATE(12230), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350601] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12493), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350620] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15109), 1, + anon_sym_RPAREN, + ACTIONS(15111), 1, + anon_sym_COMMA, + STATE(12232), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350643] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15113), 1, + anon_sym_RPAREN, + ACTIONS(15115), 1, + anon_sym_COMMA, + STATE(12234), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350666] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12497), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350685] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15117), 1, + anon_sym_RPAREN, + ACTIONS(15119), 1, + anon_sym_COMMA, + STATE(12236), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350708] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12499), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350727] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15121), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11222), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [350748] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12501), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [350767] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12581), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350786] = 6, + ACTIONS(4877), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(8635), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [350807] = 6, + ACTIONS(4877), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(8653), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [350828] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15123), 1, + anon_sym_RPAREN, + ACTIONS(15125), 1, + anon_sym_COMMA, + STATE(12240), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350851] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12517), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350870] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15127), 1, + anon_sym_RPAREN, + ACTIONS(15129), 1, + anon_sym_COMMA, + STATE(12241), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350893] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12806), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350912] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15131), 1, + anon_sym_RPAREN, + ACTIONS(15133), 1, + anon_sym_COMMA, + STATE(12244), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350935] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350954] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15135), 1, + anon_sym_RPAREN, + ACTIONS(15137), 1, + anon_sym_COMMA, + STATE(12246), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350977] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12523), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [350996] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351015] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351034] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12527), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351053] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12525), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351072] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12503), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [351091] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351110] = 6, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15139), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11340), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351131] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12529), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351150] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12603), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [351169] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12531), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351188] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12533), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351207] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12535), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351226] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351245] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12583), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351264] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12537), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351283] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15141), 1, + anon_sym_RPAREN, + ACTIONS(15143), 1, + anon_sym_COMMA, + STATE(12266), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351306] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15145), 1, + anon_sym_RPAREN, + ACTIONS(15147), 1, + anon_sym_COMMA, + STATE(12268), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351329] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12423), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351348] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15149), 1, + anon_sym_RPAREN, + ACTIONS(15151), 1, + anon_sym_COMMA, + STATE(12270), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351371] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351390] = 7, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(15153), 1, + anon_sym_RPAREN, + ACTIONS(15155), 1, + anon_sym_COMMA, + STATE(12272), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351413] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351432] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12541), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351451] = 6, + ACTIONS(4875), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9070), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351472] = 6, + ACTIONS(4875), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9375), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351493] = 6, + ACTIONS(4879), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9027), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351514] = 6, + ACTIONS(4879), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9064), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351535] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12543), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351554] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12505), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [351573] = 6, + ACTIONS(4873), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9030), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351594] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12545), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [351613] = 6, + ACTIONS(4873), 1, + anon_sym_def, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + STATE(9294), 1, + sym_function_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [351634] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(12539), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [351653] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12336), 1, + anon_sym_COLON, + ACTIONS(12338), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11250), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351671] = 4, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15157), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10978), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351687] = 4, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15159), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10978), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351703] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15161), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [351721] = 4, + ACTIONS(15163), 1, + sym__mlir_backtick, + STATE(10947), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15165), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [351737] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15167), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351757] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15169), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351777] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15171), 1, + anon_sym_COLON, + ACTIONS(15173), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11212), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351795] = 4, + ACTIONS(15175), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [351811] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15179), 1, + anon_sym_COLON, + ACTIONS(15181), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11223), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351829] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15183), 1, + anon_sym_COLON, + ACTIONS(15185), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11230), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351847] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15187), 1, + anon_sym_COLON, + ACTIONS(15189), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11231), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351865] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15191), 1, + anon_sym_COLON, + ACTIONS(15193), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11293), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351883] = 4, + ACTIONS(15195), 1, + anon_sym_COMMA, + STATE(10985), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5179), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + [351899] = 6, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14474), 1, + anon_sym_COMMA, + ACTIONS(15197), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351919] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14474), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [351937] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15199), 1, + anon_sym_COLON, + ACTIONS(15201), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11801), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [351955] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [351967] = 4, + ACTIONS(15203), 1, + sym__mlir_backtick, + STATE(10959), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15205), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [351983] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15207), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352003] = 4, + ACTIONS(15209), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [352019] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15211), 1, + anon_sym_COLON, + ACTIONS(15213), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11367), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352037] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15215), 1, + anon_sym_COLON, + ACTIONS(15217), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11600), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352055] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15219), 1, + anon_sym_COLON, + ACTIONS(15221), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11190), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352073] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15223), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352093] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(13985), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352113] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15225), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [352125] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15227), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352145] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15229), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [352157] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15231), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352177] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15233), 1, + anon_sym_LPAREN, + ACTIONS(15235), 1, + anon_sym_COLON, + STATE(11940), 1, + sym_type_parameter, + STATE(12718), 1, + sym_superclass_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352197] = 6, + ACTIONS(13326), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352217] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15237), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [352229] = 6, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15233), 1, + anon_sym_LPAREN, + ACTIONS(15239), 1, + anon_sym_COLON, + STATE(11936), 1, + sym_type_parameter, + STATE(12688), 1, + sym_superclass_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352249] = 6, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(15243), 1, + anon_sym_RBRACE, + ACTIONS(15245), 1, + anon_sym_EQ, + ACTIONS(15247), 1, + sym_type_conversion, + STATE(12639), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352269] = 4, + ACTIONS(8201), 1, + anon_sym_STAR_STAR, + ACTIONS(15249), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8199), 3, + anon_sym_STAR, + anon_sym_self, + sym_identifier, + [352285] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15225), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [352297] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15251), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [352309] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [352321] = 4, + ACTIONS(15255), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15253), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10978), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352337] = 4, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15258), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352353] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15260), 1, + anon_sym_COLON, + ACTIONS(15262), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11547), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352371] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15251), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [352383] = 4, + ACTIONS(15264), 1, + sym__mlir_backtick, + STATE(11005), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15266), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [352399] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15268), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [352411] = 4, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15270), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10979), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352427] = 4, + ACTIONS(15272), 1, + anon_sym_COMMA, + STATE(10985), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + [352443] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15275), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352463] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15277), 1, + anon_sym_COLON, + ACTIONS(15279), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11704), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352481] = 3, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [352495] = 4, + ACTIONS(15283), 1, + anon_sym_PIPE, + STATE(11002), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [352511] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12169), 1, + anon_sym_COLON, + ACTIONS(12171), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11207), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352529] = 6, + ACTIONS(13290), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352549] = 4, + ACTIONS(15285), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15253), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352565] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15288), 1, + anon_sym_COLON, + ACTIONS(15290), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11697), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352583] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [352595] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15292), 1, + anon_sym_COLON, + ACTIONS(15294), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11310), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352613] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15296), 1, + anon_sym_COLON, + ACTIONS(15298), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11724), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352631] = 6, + ACTIONS(15300), 1, + anon_sym_LBRACE, + ACTIONS(15303), 1, + anon_sym_RBRACE, + ACTIONS(15305), 1, + aux_sym_format_specifier_token1, + STATE(10997), 1, + aux_sym_format_specifier_repeat1, + STATE(12279), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [352651] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15308), 1, + anon_sym_COLON, + ACTIONS(15310), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11515), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352669] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15312), 1, + anon_sym_COLON, + ACTIONS(15314), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11519), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352687] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15316), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352707] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12188), 1, + anon_sym_COLON, + ACTIONS(12190), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11245), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352725] = 4, + ACTIONS(15283), 1, + anon_sym_PIPE, + STATE(11021), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15017), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [352741] = 6, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15318), 1, + anon_sym_as, + ACTIONS(15320), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352761] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15322), 1, + anon_sym_COLON, + ACTIONS(15324), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11375), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352779] = 4, + ACTIONS(15326), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [352795] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15328), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [352813] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15330), 1, + anon_sym_COLON, + ACTIONS(15332), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11260), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352831] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14709), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [352849] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15334), 1, + anon_sym_COLON, + ACTIONS(15336), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11490), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352867] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15338), 1, + anon_sym_COLON, + ACTIONS(15340), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11265), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352885] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15342), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [352897] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12202), 1, + anon_sym_COLON, + ACTIONS(12204), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11270), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352915] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12391), 1, + anon_sym_COLON, + ACTIONS(12393), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11790), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352933] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15344), 1, + anon_sym_COLON, + ACTIONS(15346), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11587), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [352951] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15251), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [352963] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14195), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [352975] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15348), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352995] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12401), 1, + anon_sym_COLON, + ACTIONS(12403), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11289), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353013] = 4, + ACTIONS(15283), 1, + anon_sym_PIPE, + STATE(11002), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14740), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [353029] = 3, + STATE(11002), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [353043] = 4, + ACTIONS(15350), 1, + anon_sym_PIPE, + STATE(11021), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [353059] = 4, + ACTIONS(15353), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353075] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15355), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353087] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15357), 1, + anon_sym_COLON, + ACTIONS(15359), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11294), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353105] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15361), 1, + anon_sym_COLON, + ACTIONS(15363), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11295), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353123] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12218), 1, + anon_sym_COLON, + ACTIONS(12220), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11300), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353141] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15365), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353153] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15367), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353165] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15369), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353177] = 4, + ACTIONS(13386), 1, + sym_identifier, + STATE(11868), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15371), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [353193] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15373), 1, + anon_sym_COLON, + ACTIONS(15375), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11316), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353211] = 6, + ACTIONS(15377), 1, + anon_sym_LBRACE, + ACTIONS(15379), 1, + anon_sym_RBRACE, + ACTIONS(15381), 1, + aux_sym_format_specifier_token1, + STATE(11081), 1, + aux_sym_format_specifier_repeat1, + STATE(12279), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353231] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15383), 1, + anon_sym_COLON, + ACTIONS(15385), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11323), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353249] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15387), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353261] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15389), 1, + anon_sym_COLON, + ACTIONS(15391), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11325), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353279] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15393), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353291] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15395), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353303] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15397), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353315] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12672), 1, + anon_sym_COLON, + ACTIONS(12674), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11357), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353333] = 4, + ACTIONS(15399), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353349] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15401), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353361] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15403), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353373] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15405), 1, + anon_sym_COLON, + ACTIONS(15407), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11350), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353391] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15409), 1, + anon_sym_COLON, + ACTIONS(15411), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11353), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353409] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15413), 1, + anon_sym_COLON, + ACTIONS(15415), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11354), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353427] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15417), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353447] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15419), 1, + anon_sym_COLON, + ACTIONS(15421), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11391), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353465] = 4, + ACTIONS(15423), 1, + sym__mlir_backtick, + STATE(11063), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15425), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353481] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15427), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353493] = 4, + ACTIONS(15429), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5677), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [353509] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15431), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353529] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13585), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + [353541] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15433), 1, + anon_sym_COLON, + ACTIONS(15435), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11373), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353559] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15437), 1, + anon_sym_COLON, + ACTIONS(15439), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11544), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353577] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15441), 1, + anon_sym_COLON, + ACTIONS(15443), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11549), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353595] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15445), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353607] = 3, + ACTIONS(15447), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [353621] = 4, + ACTIONS(15449), 1, + anon_sym_PIPE, + STATE(11107), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [353637] = 4, + ACTIONS(15451), 1, + sym__mlir_backtick, + STATE(11040), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15453), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353653] = 6, + ACTIONS(13376), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353673] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15455), 1, + anon_sym_COLON, + ACTIONS(15457), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11429), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353691] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12238), 1, + anon_sym_COLON, + ACTIONS(12240), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11431), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353709] = 4, + ACTIONS(15459), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353725] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10779), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [353737] = 5, + ACTIONS(15461), 1, + anon_sym_COMMA, + ACTIONS(15463), 1, + anon_sym_RBRACE, + STATE(11811), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 2, + anon_sym_COLON, + anon_sym_PIPE, + [353755] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15225), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [353767] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15465), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [353779] = 6, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14709), 1, + anon_sym_COMMA, + ACTIONS(15467), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353799] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12666), 1, + anon_sym_COLON, + ACTIONS(12668), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11574), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353817] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15469), 1, + anon_sym_COLON, + ACTIONS(15471), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11405), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353835] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15473), 1, + anon_sym_COLON, + ACTIONS(15475), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11498), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353853] = 4, + ACTIONS(15477), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15479), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [353869] = 4, + ACTIONS(15482), 1, + anon_sym_PIPE, + STATE(11148), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14740), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [353885] = 4, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10773), 3, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [353901] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12258), 1, + anon_sym_COLON, + ACTIONS(12260), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11565), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353919] = 3, + ACTIONS(15484), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [353933] = 4, + ACTIONS(15482), 1, + anon_sym_PIPE, + STATE(11148), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [353949] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15486), 1, + anon_sym_COLON, + ACTIONS(15488), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11781), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [353967] = 3, + STATE(11148), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [353981] = 4, + ACTIONS(15490), 1, + anon_sym_PIPE, + STATE(11080), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [353997] = 6, + ACTIONS(15377), 1, + anon_sym_LBRACE, + ACTIONS(15493), 1, + anon_sym_RBRACE, + ACTIONS(15495), 1, + aux_sym_format_specifier_token1, + STATE(10997), 1, + aux_sym_format_specifier_repeat1, + STATE(12279), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [354017] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15497), 1, + anon_sym_COLON, + ACTIONS(15499), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11609), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354035] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15501), 1, + anon_sym_COLON, + ACTIONS(15503), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11611), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354053] = 6, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(13420), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354073] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15505), 1, + anon_sym_COLON, + ACTIONS(15507), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11204), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354091] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12272), 1, + anon_sym_COLON, + ACTIONS(12274), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11616), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354109] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15509), 1, + anon_sym_COLON, + ACTIONS(15511), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11286), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354127] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12282), 1, + anon_sym_COLON, + ACTIONS(12284), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11628), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354145] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15513), 1, + anon_sym_COLON, + ACTIONS(15515), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11467), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354163] = 4, + ACTIONS(15517), 1, + anon_sym_PIPE, + STATE(11090), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [354179] = 4, + ACTIONS(15520), 1, + sym__mlir_backtick, + STATE(11097), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15522), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [354195] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15524), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354215] = 6, + ACTIONS(13296), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354235] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15526), 1, + anon_sym_COLON, + ACTIONS(15528), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11510), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354253] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15530), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354273] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15532), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [354285] = 4, + ACTIONS(15534), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [354301] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15536), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [354313] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15538), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [354331] = 5, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14156), 1, + anon_sym_COLON, + ACTIONS(14158), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [354349] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15542), 1, + anon_sym_COLON, + ACTIONS(15544), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11476), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354367] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12145), 1, + anon_sym_COLON, + ACTIONS(12147), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11647), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354385] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15546), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_PIPE, + [354397] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15548), 1, + anon_sym_COLON, + ACTIONS(15550), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11682), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354415] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12647), 1, + anon_sym_COLON, + ACTIONS(12649), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11438), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354433] = 5, + ACTIONS(15552), 1, + anon_sym_COMMA, + ACTIONS(15554), 1, + anon_sym_RBRACE, + STATE(11963), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 2, + anon_sym_COLON, + anon_sym_PIPE, + [354451] = 4, + ACTIONS(15449), 1, + anon_sym_PIPE, + STATE(11080), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15017), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [354467] = 4, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10940), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354483] = 4, + ACTIONS(13449), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15556), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(10941), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354499] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15558), 1, + anon_sym_COLON, + ACTIONS(15560), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11709), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354517] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15562), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354537] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15564), 1, + anon_sym_COLON, + ACTIONS(15566), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11739), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354555] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15568), 1, + anon_sym_COLON, + ACTIONS(15570), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11771), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354573] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15572), 1, + anon_sym_COLON, + ACTIONS(15574), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11745), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354591] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15576), 1, + anon_sym_COLON, + ACTIONS(15578), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11672), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354609] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15580), 1, + anon_sym_COLON, + ACTIONS(15582), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11750), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354627] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12637), 1, + anon_sym_COLON, + ACTIONS(12639), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11193), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354645] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15584), 1, + anon_sym_COLON, + ACTIONS(15586), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11743), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354663] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15588), 1, + anon_sym_COLON, + ACTIONS(15590), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11744), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354681] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15592), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354701] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12302), 1, + anon_sym_COLON, + ACTIONS(12304), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11749), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354719] = 4, + ACTIONS(15594), 1, + anon_sym_DOT, + STATE(11169), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15053), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [354735] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12312), 1, + anon_sym_COLON, + ACTIONS(12314), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11755), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354753] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15596), 1, + anon_sym_COLON, + ACTIONS(15598), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11582), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354771] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15600), 1, + anon_sym_COLON, + ACTIONS(15602), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11612), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354789] = 4, + ACTIONS(15604), 1, + sym__mlir_backtick, + STATE(11152), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15606), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [354805] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15608), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354825] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15610), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354845] = 4, + ACTIONS(15612), 1, + sym__mlir_backtick, + STATE(11138), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15614), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [354861] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15616), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354881] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15618), 1, + anon_sym_COLON, + ACTIONS(15620), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11774), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354899] = 4, + ACTIONS(15622), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13528), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [354915] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15625), 1, + anon_sym_COLON, + ACTIONS(15627), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11776), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354933] = 6, + ACTIONS(13322), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354953] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15629), 1, + anon_sym_COLON, + ACTIONS(15631), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11777), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354971] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15633), 1, + anon_sym_COLON, + ACTIONS(15635), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11567), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [354989] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15637), 1, + anon_sym_COLON, + ACTIONS(15639), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11782), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355007] = 4, + ACTIONS(15641), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [355023] = 4, + ACTIONS(13461), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10992), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355039] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15645), 1, + anon_sym_COLON, + ACTIONS(15647), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11783), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355057] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12330), 1, + anon_sym_COLON, + ACTIONS(12332), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11787), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355075] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12248), 1, + anon_sym_COLON, + ACTIONS(12250), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11629), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355093] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15649), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [355105] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15546), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [355117] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15651), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [355129] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15653), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [355141] = 5, + ACTIONS(15655), 1, + anon_sym_COMMA, + ACTIONS(15657), 1, + anon_sym_RBRACE, + STATE(11932), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 2, + anon_sym_COLON, + anon_sym_PIPE, + [355159] = 4, + ACTIONS(15482), 1, + anon_sym_PIPE, + STATE(11090), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15017), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [355175] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15659), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355195] = 6, + ACTIONS(10287), 1, + anon_sym_COLON, + ACTIONS(15051), 1, + anon_sym_if, + ACTIONS(15661), 1, + anon_sym_COMMA, + STATE(11297), 1, + aux_sym_case_clause_repeat1, + STATE(12605), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355215] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15663), 1, + anon_sym_COLON, + ACTIONS(15665), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11805), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355233] = 4, + ACTIONS(15667), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [355249] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15669), 1, + anon_sym_COLON, + ACTIONS(15671), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11538), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355267] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15673), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355287] = 6, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(15675), 1, + anon_sym_RBRACE, + ACTIONS(15677), 1, + anon_sym_EQ, + ACTIONS(15679), 1, + sym_type_conversion, + STATE(12660), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355307] = 6, + ACTIONS(12825), 1, + anon_sym_and, + ACTIONS(12827), 1, + anon_sym_or, + ACTIONS(12890), 1, + anon_sym_as, + ACTIONS(12892), 1, + anon_sym_if, + ACTIONS(15681), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355327] = 6, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15318), 1, + anon_sym_as, + ACTIONS(15683), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355347] = 5, + ACTIONS(15685), 1, + anon_sym_COMMA, + ACTIONS(15687), 1, + anon_sym_RBRACE, + STATE(12155), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 2, + anon_sym_COLON, + anon_sym_PIPE, + [355365] = 6, + ACTIONS(13274), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355385] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12657), 1, + anon_sym_COLON, + ACTIONS(12659), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11732), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355403] = 5, + ACTIONS(15691), 1, + anon_sym_COMMA, + ACTIONS(15693), 1, + anon_sym_as, + STATE(11413), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15689), 2, + sym__newline, + anon_sym_SEMI, + [355421] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12125), 1, + anon_sym_COLON, + ACTIONS(12127), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11548), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355439] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [355451] = 4, + ACTIONS(15695), 1, + sym__mlir_backtick, + STATE(11168), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15697), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [355467] = 6, + ACTIONS(13308), 1, + anon_sym_as, + ACTIONS(13310), 1, + anon_sym_if, + ACTIONS(13312), 1, + anon_sym_and, + ACTIONS(13314), 1, + anon_sym_or, + ACTIONS(15699), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355487] = 6, + ACTIONS(13332), 1, + anon_sym_RPAREN, + ACTIONS(13409), 1, + anon_sym_as, + ACTIONS(13411), 1, + anon_sym_if, + ACTIONS(13413), 1, + anon_sym_and, + ACTIONS(13415), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355507] = 4, + ACTIONS(15701), 1, + sym__mlir_backtick, + STATE(11022), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15703), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [355523] = 4, + ACTIONS(15705), 1, + sym__mlir_backtick, + STATE(11072), 1, + aux_sym_mlir_fragment_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15177), 3, + sym__mlir_ident, + sym__mlir_number, + sym_mlir_punctuation, + [355539] = 4, + ACTIONS(15707), 1, + anon_sym_DOT, + STATE(11169), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14390), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [355555] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15710), 1, + anon_sym_COLON, + ACTIONS(15712), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11339), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355573] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15714), 1, + anon_sym_COLON, + ACTIONS(15716), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11670), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355591] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [355603] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15718), 1, + anon_sym_COLON, + ACTIONS(15720), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11701), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355621] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15722), 1, + anon_sym_COLON, + ACTIONS(15724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11226), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355639] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15726), 1, + anon_sym_COLON, + ACTIONS(15728), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11237), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355657] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12135), 1, + anon_sym_COLON, + ACTIONS(12137), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11556), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355675] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12357), 1, + anon_sym_COLON, + ACTIONS(12359), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11324), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355693] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15730), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + anon_sym_PIPE, + [355705] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15732), 1, + anon_sym_COLON, + ACTIONS(15734), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11580), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355723] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15736), 1, + anon_sym_COLON, + ACTIONS(15738), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11601), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355741] = 5, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14138), 1, + anon_sym_COLON, + ACTIONS(14140), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15740), 2, + sym__newline, + anon_sym_SEMI, + [355759] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15742), 1, + anon_sym_COLON, + ACTIONS(15744), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11661), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355777] = 5, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15746), 1, + anon_sym_COLON, + ACTIONS(15748), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11664), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355795] = 4, + ACTIONS(15449), 1, + anon_sym_PIPE, + STATE(11107), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14740), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [355811] = 3, + STATE(11107), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14750), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [355825] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10781), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [355837] = 4, + ACTIONS(15253), 1, + anon_sym_COLON, + ACTIONS(15750), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355852] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15753), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355867] = 4, + ACTIONS(15757), 1, + anon_sym_COLON, + ACTIONS(15759), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [355882] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15761), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355897] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15763), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355912] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15765), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355927] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15344), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [355942] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15649), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [355953] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15546), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [355964] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15651), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [355975] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15653), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [355986] = 5, + ACTIONS(13570), 1, + anon_sym_COMMA, + ACTIONS(13572), 1, + anon_sym_RBRACK, + STATE(12056), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356003] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15767), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356018] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15769), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356033] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12188), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356048] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15771), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356063] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15773), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356078] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15775), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356093] = 3, + ACTIONS(15777), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [356106] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15779), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356121] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15338), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356136] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15781), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356151] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15783), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356166] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15395), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [356177] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15401), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [356188] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15785), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356203] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15465), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [356214] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15787), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356229] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15532), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [356240] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15789), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356255] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15536), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [356266] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15791), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356281] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15793), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356296] = 5, + ACTIONS(13532), 1, + anon_sym_COMMA, + ACTIONS(13534), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12145), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356313] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15795), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356328] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15797), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356343] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15799), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356358] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12202), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356373] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12391), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356388] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15801), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356403] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15803), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356418] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15805), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356433] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14474), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356450] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15807), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356465] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15809), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356480] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15355), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356491] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15365), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356502] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15369), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356513] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15387), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356524] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15393), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356535] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15811), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356550] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15397), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [356561] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15813), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356576] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15815), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356591] = 5, + ACTIONS(15817), 1, + anon_sym_case, + ACTIONS(15819), 1, + sym__dedent, + STATE(11757), 1, + aux_sym__match_block_repeat1, + STATE(12443), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356608] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15821), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356623] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12401), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356638] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15823), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356653] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15361), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356668] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15825), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356683] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15827), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356698] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15829), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356713] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15831), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356728] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15542), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356743] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15833), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356758] = 5, + ACTIONS(10698), 1, + anon_sym_COLON, + ACTIONS(10700), 1, + anon_sym_EQ, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356775] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15837), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356790] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12218), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356805] = 4, + ACTIONS(15841), 1, + anon_sym_COMMA, + STATE(11561), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15839), 2, + sym__newline, + anon_sym_SEMI, + [356820] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15843), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356835] = 5, + ACTIONS(15689), 1, + anon_sym_RPAREN, + ACTIONS(15845), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_as, + STATE(12099), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356852] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15849), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356867] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15851), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356882] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15853), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356897] = 5, + ACTIONS(15855), 1, + sym_identifier, + ACTIONS(15857), 1, + anon_sym_COMMA, + ACTIONS(15859), 1, + anon_sym_RBRACE, + STATE(12038), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356914] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8340), 1, + sym_parameters, + STATE(12301), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356931] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15863), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356946] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15865), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356961] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15867), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356976] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15869), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [356991] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15871), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357006] = 4, + ACTIONS(15875), 1, + anon_sym_COMMA, + STATE(11561), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15873), 2, + sym__newline, + anon_sym_SEMI, + [357021] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15877), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357036] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15389), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357051] = 4, + ACTIONS(15881), 1, + anon_sym_DOT, + STATE(11358), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15879), 2, + anon_sym_import, + sym_identifier, + [357066] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15883), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357081] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15885), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357096] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15887), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357111] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15889), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357126] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15891), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357141] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15893), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357156] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15895), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357171] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15897), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357186] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15899), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357201] = 5, + ACTIONS(15901), 1, + anon_sym_RPAREN, + ACTIONS(15903), 1, + anon_sym_COMMA, + ACTIONS(15905), 1, + anon_sym_as, + STATE(12108), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [357218] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15907), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357233] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15161), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [357250] = 3, + ACTIONS(15047), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15909), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_if, + [357263] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15911), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357278] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15913), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357293] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15915), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [357304] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15730), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [357315] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15441), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357330] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15917), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357345] = 4, + ACTIONS(15919), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5877), 2, + sym__newline, + anon_sym_SEMI, + [357360] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15921), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357375] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15923), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357390] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15925), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357405] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15927), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357420] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15929), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357435] = 4, + ACTIONS(15931), 1, + anon_sym_COMMA, + STATE(11297), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15909), 2, + anon_sym_COLON, + anon_sym_if, + [357450] = 4, + ACTIONS(14224), 1, + sym_identifier, + ACTIONS(14226), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(12614), 2, + sym_generic_type, + sym__intersection_operand, + [357465] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15934), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357480] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15413), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357495] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15936), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357510] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15938), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357525] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15940), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357540] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15942), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357555] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15944), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357570] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15946), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357585] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8217), 1, + sym_parameters, + STATE(12437), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [357602] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15948), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357617] = 4, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13654), 2, + sym__newline, + anon_sym_SEMI, + [357632] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15950), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357647] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15952), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357662] = 5, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(15954), 1, + anon_sym_RBRACE, + ACTIONS(15956), 1, + sym_type_conversion, + STATE(12608), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [357679] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15958), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357694] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15960), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357709] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8354), 1, + sym_parameters, + STATE(12420), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [357726] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15962), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357741] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15964), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357756] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15966), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357771] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15968), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357786] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15970), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357801] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15972), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357816] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15974), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357831] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15976), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357846] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15187), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357861] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15978), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357876] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15980), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357891] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15982), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357906] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15984), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357921] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15986), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357936] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15988), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357951] = 3, + ACTIONS(15693), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15990), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [357964] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15992), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357979] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15994), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [357994] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15996), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358009] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15998), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358024] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16000), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358039] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16002), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358054] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16004), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358069] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16006), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358084] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16008), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358099] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16010), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358114] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16012), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358129] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16014), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358144] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16016), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358159] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16018), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358174] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16020), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358189] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358204] = 5, + ACTIONS(13554), 1, + anon_sym_COMMA, + ACTIONS(13556), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12197), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [358221] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16024), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358236] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16026), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358251] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16028), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358266] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16030), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358281] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16032), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358296] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16034), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358311] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16036), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358326] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16038), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358341] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15469), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358356] = 4, + ACTIONS(16042), 1, + anon_sym_DOT, + STATE(11358), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16040), 2, + anon_sym_import, + sym_identifier, + [358371] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12238), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358386] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16045), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358401] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16047), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358416] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16049), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358431] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16051), 1, + anon_sym_RPAREN, + ACTIONS(16053), 1, + anon_sym_COMMA, + STATE(11807), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [358448] = 5, + ACTIONS(16055), 1, + anon_sym_COMMA, + ACTIONS(16057), 1, + anon_sym_as, + ACTIONS(16059), 1, + anon_sym_RBRACK, + STATE(11808), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [358465] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16061), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358480] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16063), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358495] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16065), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358510] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16067), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358525] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16069), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358540] = 4, + ACTIONS(16073), 1, + anon_sym_COMMA, + STATE(11370), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16071), 2, + sym__newline, + anon_sym_SEMI, + [358555] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16076), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358570] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16078), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358585] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16080), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358600] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16082), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358615] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16084), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358630] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15355), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [358641] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15365), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [358652] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16086), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358667] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16088), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358682] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15369), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [358693] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16090), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358708] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [358725] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16092), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358740] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16094), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358755] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16096), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358770] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16098), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358785] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(14709), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [358802] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15229), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358813] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15237), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358824] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15268), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358835] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16100), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358850] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15342), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358861] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16102), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358876] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16104), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358891] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16106), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358906] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16108), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358921] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15387), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [358932] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16110), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358947] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15393), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [358958] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16112), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [358973] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15367), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358984] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15403), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [358995] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15427), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [359006] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15445), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [359017] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16114), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359032] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16116), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359047] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16118), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359062] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16120), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359077] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16122), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359092] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15397), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359103] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12258), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359118] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16124), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359133] = 4, + ACTIONS(16128), 1, + anon_sym_COMMA, + STATE(11370), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16126), 2, + sym__newline, + anon_sym_SEMI, + [359148] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16130), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359163] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359178] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16134), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359193] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16136), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359208] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16138), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359223] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16140), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359238] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16142), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359253] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16144), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359268] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16146), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359283] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16148), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359298] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16150), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359313] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16152), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359328] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16154), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359343] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16156), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359358] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16158), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359373] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16160), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359388] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16162), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359403] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15501), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359418] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16164), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359433] = 5, + ACTIONS(13508), 1, + anon_sym_COMMA, + ACTIONS(13512), 1, + anon_sym_RBRACK, + STATE(12089), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [359450] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16166), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359465] = 3, + ACTIONS(10510), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10508), 3, + anon_sym_STAR, + anon_sym_self, + sym_identifier, + [359478] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16168), 1, + anon_sym_RPAREN, + ACTIONS(16170), 1, + anon_sym_COMMA, + STATE(11925), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [359495] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16172), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359510] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15509), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359525] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16174), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359540] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16176), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359555] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16178), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359570] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16180), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359585] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16182), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359600] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16184), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359615] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16186), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359630] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16188), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359645] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16190), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359660] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16192), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359675] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16194), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359690] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16196), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359705] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359720] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15395), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359731] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16198), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359746] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15401), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359757] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16200), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359772] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16202), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359787] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15465), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359798] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15532), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359809] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16204), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359824] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15536), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [359835] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16206), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359850] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12282), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359865] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16208), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359880] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16210), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359895] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16212), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359910] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16214), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359925] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16216), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359940] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16218), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359955] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16220), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359970] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16222), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [359985] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16224), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360000] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16226), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360015] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16228), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360030] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16230), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360045] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16232), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360060] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16234), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360075] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16236), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360090] = 5, + ACTIONS(13514), 1, + anon_sym_COMMA, + ACTIONS(13516), 1, + anon_sym_RBRACK, + STATE(11889), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [360107] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16238), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360122] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16240), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360137] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16242), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360152] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16244), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360167] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16246), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360182] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16248), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360197] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12666), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360212] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16250), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360227] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16252), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360242] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16254), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360257] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16256), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360272] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16258), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360287] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16260), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360302] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16262), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360317] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16264), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360332] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16266), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360347] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16268), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360362] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16270), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360377] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360392] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16274), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360407] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16276), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360422] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16278), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360437] = 4, + ACTIONS(16280), 1, + anon_sym_COMMA, + STATE(11370), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16126), 2, + sym__newline, + anon_sym_SEMI, + [360452] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16282), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360467] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16284), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360482] = 5, + ACTIONS(16286), 1, + sym_identifier, + ACTIONS(16288), 1, + anon_sym_COMMA, + ACTIONS(16290), 1, + anon_sym_RBRACE, + STATE(11915), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [360499] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12145), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360514] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16292), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360529] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8406), 1, + sym_parameters, + STATE(12342), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [360546] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15649), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [360557] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15395), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [360568] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16294), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360583] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15401), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [360594] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15465), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [360605] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15532), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [360616] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15536), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [360627] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16296), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360642] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16298), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360657] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16300), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360672] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15651), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [360683] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16302), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360698] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12672), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360713] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16304), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360728] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16306), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360743] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15653), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [360754] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16308), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360769] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16310), 1, + anon_sym_RPAREN, + ACTIONS(16312), 1, + anon_sym_COMMA, + STATE(11953), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [360786] = 5, + ACTIONS(16057), 1, + anon_sym_as, + ACTIONS(16314), 1, + anon_sym_COMMA, + ACTIONS(16316), 1, + anon_sym_RBRACK, + STATE(11954), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [360803] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16318), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360818] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16320), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360833] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16322), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360848] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360863] = 4, + ACTIONS(15691), 1, + anon_sym_COMMA, + STATE(11501), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15689), 2, + sym__newline, + anon_sym_SEMI, + [360878] = 4, + ACTIONS(16328), 1, + anon_sym_COMMA, + STATE(11532), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16326), 2, + sym__newline, + anon_sym_SEMI, + [360893] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16331), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360908] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16333), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360923] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16335), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360938] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16337), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360953] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360968] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16341), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360983] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16343), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [360998] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16345), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361013] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16347), 1, + anon_sym_RPAREN, + ACTIONS(16349), 1, + anon_sym_COMMA, + STATE(11975), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361030] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16351), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361045] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16353), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361060] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16355), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361075] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16357), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361090] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16359), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361105] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16361), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361120] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15568), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361135] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16363), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361150] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(16365), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361167] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16367), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361182] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16369), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361197] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16371), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361212] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16373), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361227] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16375), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361242] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15580), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361257] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16377), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361272] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16379), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361287] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16381), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361302] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16383), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361317] = 4, + ACTIONS(16387), 1, + anon_sym_COMMA, + STATE(11561), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16385), 2, + sym__newline, + anon_sym_SEMI, + [361332] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16390), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361347] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16392), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361362] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16394), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361377] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15588), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361392] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12637), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361407] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16396), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361422] = 4, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16398), 2, + sym__newline, + anon_sym_SEMI, + [361437] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16400), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361452] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8237), 1, + sym_parameters, + STATE(12383), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361469] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8244), 1, + sym_parameters, + STATE(12388), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361486] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16402), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361501] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16404), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361516] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15600), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361531] = 4, + ACTIONS(13600), 1, + sym_identifier, + STATE(12394), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15371), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [361546] = 3, + ACTIONS(8201), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8199), 3, + anon_sym_STAR, + anon_sym_self, + sym_identifier, + [361559] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16406), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361574] = 3, + ACTIONS(10504), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10502), 3, + anon_sym_STAR, + anon_sym_self, + sym_identifier, + [361587] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12302), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361602] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16408), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361617] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12312), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361632] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16410), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361647] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16412), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361662] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16414), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361677] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8252), 1, + sym_parameters, + STATE(12423), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361694] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16416), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361709] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16418), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361724] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16420), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361739] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16422), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361754] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16424), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361769] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16426), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361784] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8253), 1, + sym_parameters, + STATE(12445), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361801] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16428), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361816] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16430), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361831] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16432), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361846] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16434), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361861] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16436), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361876] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8255), 1, + sym_parameters, + STATE(12454), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361893] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16438), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361908] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16440), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361923] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16442), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361938] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12378), 1, + sym_type_parameter, + STATE(12742), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [361955] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16446), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361970] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15229), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [361981] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16448), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [361996] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15237), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362007] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8266), 1, + sym_parameters, + STATE(12288), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362024] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16450), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362039] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16452), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362054] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15268), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362065] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16454), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362080] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16456), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362095] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15342), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362106] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16458), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362121] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12647), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362136] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15629), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362151] = 5, + ACTIONS(15817), 1, + anon_sym_case, + ACTIONS(16460), 1, + sym__dedent, + STATE(11757), 1, + aux_sym__match_block_repeat1, + STATE(12443), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362168] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15367), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362179] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16462), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362194] = 5, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13562), 1, + anon_sym_RBRACK, + STATE(12063), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362211] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15403), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362222] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16464), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362237] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15649), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362248] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15546), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362259] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15427), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362270] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16466), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362285] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15445), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [362296] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15645), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362311] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15215), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362326] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16468), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362341] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15730), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [362352] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362367] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15730), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362378] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16472), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362393] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15651), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362404] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16474), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362419] = 4, + ACTIONS(16478), 1, + anon_sym_COMMA, + STATE(11706), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16476), 2, + sym__newline, + anon_sym_SEMI, + [362434] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15653), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362445] = 4, + ACTIONS(16478), 1, + anon_sym_COMMA, + STATE(11707), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16480), 2, + sym__newline, + anon_sym_SEMI, + [362460] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16482), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362475] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362490] = 5, + ACTIONS(16486), 1, + sym_identifier, + ACTIONS(16488), 1, + anon_sym_COMMA, + ACTIONS(16490), 1, + anon_sym_RBRACE, + STATE(12127), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362507] = 5, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362524] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16492), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362539] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16494), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362554] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16496), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362569] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15669), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362584] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12330), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362599] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16498), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362614] = 4, + ACTIONS(16502), 1, + anon_sym_COMMA, + STATE(11255), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16500), 2, + sym__newline, + anon_sym_SEMI, + [362629] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16504), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362644] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16506), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362659] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16508), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362674] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12248), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362689] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16510), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362704] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16512), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362719] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16514), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362734] = 5, + ACTIONS(13542), 1, + anon_sym_COMMA, + ACTIONS(13544), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12219), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362751] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16516), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362766] = 5, + ACTIONS(15817), 1, + anon_sym_case, + ACTIONS(16518), 1, + sym__dedent, + STATE(11617), 1, + aux_sym__match_block_repeat1, + STATE(12443), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362783] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16520), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362798] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16522), 1, + anon_sym_RPAREN, + ACTIONS(16524), 1, + anon_sym_COMMA, + STATE(11872), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362815] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16526), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362830] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16528), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362845] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16530), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362860] = 5, + ACTIONS(16057), 1, + anon_sym_as, + ACTIONS(16532), 1, + anon_sym_COMMA, + ACTIONS(16534), 1, + anon_sym_RBRACK, + STATE(11880), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [362877] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16536), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362892] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16538), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362907] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15229), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [362918] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16540), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362933] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16542), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362948] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16544), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362963] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16546), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362978] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16548), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [362993] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16550), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363008] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16552), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363023] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15237), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363034] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16554), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363049] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16556), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363064] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16558), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363079] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16560), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363094] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16562), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363109] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16564), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363124] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16566), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363139] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8479), 1, + sym_parameters, + STATE(12415), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363156] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15268), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363167] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16568), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363182] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16570), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363197] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15342), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363208] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16572), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363223] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16574), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363238] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16576), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363253] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16578), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363268] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12293), 1, + sym_type_parameter, + STATE(12577), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363285] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16580), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363300] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15367), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363311] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16582), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363326] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16584), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363341] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16586), 1, + anon_sym_RPAREN, + ACTIONS(16588), 1, + anon_sym_COMMA, + STATE(12152), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363358] = 5, + ACTIONS(16057), 1, + anon_sym_as, + ACTIONS(16590), 1, + anon_sym_COMMA, + ACTIONS(16592), 1, + anon_sym_RBRACK, + STATE(12153), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363375] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16594), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363390] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15403), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363401] = 3, + ACTIONS(10516), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10514), 3, + anon_sym_STAR, + anon_sym_self, + sym_identifier, + [363414] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16596), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363429] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16598), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363444] = 4, + ACTIONS(16478), 1, + anon_sym_COMMA, + STATE(11532), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16600), 2, + sym__newline, + anon_sym_SEMI, + [363459] = 4, + ACTIONS(16478), 1, + anon_sym_COMMA, + STATE(11532), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16602), 2, + sym__newline, + anon_sym_SEMI, + [363474] = 5, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(16604), 1, + anon_sym_RPAREN, + ACTIONS(16606), 1, + anon_sym_COMMA, + STATE(12161), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363491] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16608), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363506] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16610), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363521] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16612), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13703), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(16614), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [363549] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16616), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363564] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16618), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363579] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15427), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363590] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12336), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363605] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16620), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363620] = 5, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(16622), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363637] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16624), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363652] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16626), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363667] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16628), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363682] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15445), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [363693] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16630), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363708] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16632), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363723] = 5, + ACTIONS(13574), 1, + anon_sym_COMMA, + ACTIONS(13576), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12228), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363740] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16634), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363755] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16636), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363770] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12125), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363785] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16638), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363800] = 5, + ACTIONS(13550), 1, + anon_sym_COMMA, + ACTIONS(13552), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + STATE(12205), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363817] = 5, + ACTIONS(13566), 1, + anon_sym_COMMA, + ACTIONS(13568), 1, + anon_sym_RBRACK, + STATE(11832), 1, + aux_sym_subscript_repeat1, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363834] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15296), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363849] = 5, + ACTIONS(16640), 1, + sym_identifier, + ACTIONS(16642), 1, + anon_sym_COMMA, + ACTIONS(16644), 1, + anon_sym_RBRACE, + STATE(11956), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363866] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16646), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363881] = 5, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(16648), 1, + anon_sym_RBRACE, + ACTIONS(16650), 1, + sym_type_conversion, + STATE(12751), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [363898] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16652), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363913] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15355), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [363924] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15365), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [363935] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16654), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363950] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15369), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [363961] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15387), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [363972] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16656), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [363987] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16658), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364002] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16660), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364017] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16662), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364032] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16664), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364047] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16666), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364062] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_if, + [364073] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15718), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364088] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16668), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364103] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16670), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364118] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12169), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364133] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16672), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364148] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16674), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364163] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15726), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364178] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16676), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364193] = 5, + ACTIONS(16678), 1, + anon_sym_case, + ACTIONS(16681), 1, + sym__dedent, + STATE(11757), 1, + aux_sym__match_block_repeat1, + STATE(12443), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364210] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16683), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364225] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364240] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16687), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364255] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16689), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364270] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12357), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364285] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16691), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364300] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16693), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364315] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364330] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16697), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364345] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16699), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364360] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16701), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364375] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16703), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364390] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12657), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364405] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364420] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16707), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364435] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16709), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364450] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16711), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364465] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16713), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364480] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16715), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364495] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16717), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364510] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16719), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364525] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16721), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364540] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16723), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364555] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16725), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364570] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16727), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364585] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16729), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364600] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16731), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364615] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16733), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364630] = 5, + ACTIONS(15817), 1, + anon_sym_case, + ACTIONS(16735), 1, + sym__dedent, + STATE(11241), 1, + aux_sym__match_block_repeat1, + STATE(12443), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364647] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15746), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364662] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16737), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364677] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16739), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364692] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(15312), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364707] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16741), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364722] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16743), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364737] = 4, + ACTIONS(13652), 1, + anon_sym_COMMA, + STATE(11132), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16745), 2, + sym__newline, + anon_sym_SEMI, + [364752] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15393), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [364763] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16747), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364778] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8198), 1, + sym_parameters, + STATE(12352), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364795] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(12135), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364810] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16749), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364825] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15397), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PIPE, + [364836] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16751), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364851] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16753), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364866] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16755), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364881] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12460), 1, + sym_type_parameter, + STATE(12741), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364898] = 5, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12380), 1, + sym_type_parameter, + STATE(12744), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364915] = 4, + ACTIONS(11166), 1, + anon_sym_where, + ACTIONS(16757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(11187), 2, + sym_where_clause, + aux_sym_function_definition_repeat1, + [364930] = 4, + ACTIONS(4111), 1, + sym__newline, + ACTIONS(16759), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364944] = 4, + ACTIONS(10404), 1, + anon_sym_RPAREN, + ACTIONS(16761), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364958] = 4, + ACTIONS(10438), 1, + anon_sym_RBRACK, + ACTIONS(16763), 1, + anon_sym_COMMA, + STATE(11847), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364972] = 4, + ACTIONS(16765), 1, + anon_sym_COMMA, + ACTIONS(16767), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [364986] = 4, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(16769), 1, + anon_sym_RBRACE, + STATE(12641), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365000] = 4, + ACTIONS(16771), 1, + anon_sym_COMMA, + ACTIONS(16773), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365014] = 4, + ACTIONS(16775), 1, + anon_sym_COMMA, + ACTIONS(16777), 1, + anon_sym_RBRACE, + STATE(12006), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365028] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16779), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [365038] = 4, + ACTIONS(16781), 1, + anon_sym_SEMI, + ACTIONS(16783), 1, + sym__newline, + STATE(11835), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365052] = 4, + ACTIONS(10720), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365066] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16785), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_where, + [365076] = 4, + ACTIONS(14427), 1, + anon_sym_RBRACE, + ACTIONS(16787), 1, + anon_sym_COMMA, + STATE(11817), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365090] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8201), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [365100] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13376), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365114] = 4, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(16790), 1, + anon_sym_RBRACE, + STATE(12593), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365128] = 4, + ACTIONS(5528), 1, + anon_sym_RPAREN, + ACTIONS(14258), 1, + anon_sym_COMMA, + STATE(11961), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365142] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13290), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365156] = 4, + ACTIONS(16792), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365170] = 4, + ACTIONS(9290), 1, + anon_sym_RPAREN, + ACTIONS(16797), 1, + anon_sym_COMMA, + STATE(11944), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365184] = 4, + ACTIONS(16799), 1, + anon_sym_COMMA, + ACTIONS(16801), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365198] = 4, + ACTIONS(13934), 1, + anon_sym_COMMA, + ACTIONS(13936), 1, + anon_sym_RBRACE, + STATE(11843), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365212] = 4, + ACTIONS(14644), 1, + anon_sym_RBRACK, + ACTIONS(16803), 1, + anon_sym_COMMA, + STATE(11827), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365226] = 4, + ACTIONS(16806), 1, + anon_sym_COMMA, + ACTIONS(16808), 1, + anon_sym_RBRACE, + STATE(11846), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365240] = 4, + ACTIONS(16810), 1, + anon_sym_COMMA, + ACTIONS(16812), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365254] = 4, + ACTIONS(5677), 1, + anon_sym_COLON, + ACTIONS(16814), 1, + anon_sym_COMMA, + STATE(11876), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365268] = 4, + ACTIONS(16816), 1, + anon_sym_COMMA, + ACTIONS(16818), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365282] = 4, + ACTIONS(16820), 1, + anon_sym_COMMA, + ACTIONS(16822), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365296] = 3, + ACTIONS(16826), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16824), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [365308] = 4, + ACTIONS(16828), 1, + sym__newline, + ACTIONS(16830), 1, + sym__indent, + STATE(4528), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365322] = 4, + ACTIONS(4109), 1, + sym__newline, + ACTIONS(16832), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365336] = 3, + ACTIONS(5909), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 2, + anon_sym_finally, + anon_sym_except_STAR, + [365348] = 4, + ACTIONS(16834), 1, + anon_sym_COMMA, + ACTIONS(16836), 1, + anon_sym_RBRACK, + STATE(12167), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365362] = 4, + ACTIONS(13100), 1, + sym__mlir_backtick, + ACTIONS(16838), 1, + sym_identifier, + STATE(7134), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365376] = 3, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7117), 2, + sym_argument_list, + sym_generator_expression, + [365388] = 4, + ACTIONS(16840), 1, + anon_sym_RPAREN, + ACTIONS(16842), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365402] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(16844), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365416] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(16846), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365430] = 4, + ACTIONS(5721), 1, + anon_sym_RBRACE, + ACTIONS(16848), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365444] = 3, + ACTIONS(16057), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15909), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [365456] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15915), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [365466] = 4, + ACTIONS(5885), 1, + anon_sym_RBRACE, + ACTIONS(16850), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365480] = 4, + ACTIONS(15909), 1, + anon_sym_RBRACK, + ACTIONS(16852), 1, + anon_sym_COMMA, + STATE(11847), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365494] = 4, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(12413), 1, + anon_sym_PIPE, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365508] = 4, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365522] = 4, + ACTIONS(16855), 1, + anon_sym_COMMA, + ACTIONS(16858), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365536] = 4, + ACTIONS(16860), 1, + anon_sym_RPAREN, + ACTIONS(16862), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365550] = 4, + ACTIONS(16828), 1, + sym__newline, + ACTIONS(16830), 1, + sym__indent, + STATE(4453), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365564] = 4, + ACTIONS(10704), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365578] = 4, + ACTIONS(16864), 1, + anon_sym_COMMA, + ACTIONS(16866), 1, + anon_sym_COLON, + STATE(12103), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365592] = 4, + ACTIONS(10712), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365606] = 4, + ACTIONS(13359), 1, + anon_sym_RPAREN, + ACTIONS(13361), 1, + anon_sym_COMMA, + STATE(11879), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365620] = 4, + ACTIONS(16868), 1, + anon_sym_RPAREN, + ACTIONS(16870), 1, + anon_sym_COMMA, + STATE(11881), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365634] = 4, + ACTIONS(16872), 1, + anon_sym_RPAREN, + ACTIONS(16874), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365648] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(16876), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365662] = 4, + ACTIONS(14427), 1, + anon_sym_RPAREN, + ACTIONS(16878), 1, + anon_sym_COMMA, + STATE(11860), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365676] = 4, + ACTIONS(13791), 1, + anon_sym_COMMA, + ACTIONS(13793), 1, + anon_sym_RBRACE, + STATE(11982), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365690] = 4, + ACTIONS(16881), 1, + anon_sym_COMMA, + ACTIONS(16883), 1, + anon_sym_RBRACK, + STATE(11888), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365704] = 4, + ACTIONS(14226), 1, + anon_sym_type, + ACTIONS(16885), 1, + sym_identifier, + STATE(12491), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365718] = 4, + ACTIONS(13106), 1, + sym__mlir_backtick, + ACTIONS(16887), 1, + sym_identifier, + STATE(7705), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365732] = 4, + ACTIONS(16889), 1, + anon_sym_COMMA, + ACTIONS(16891), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365746] = 4, + ACTIONS(13451), 1, + anon_sym_COMMA, + ACTIONS(13455), 1, + anon_sym_RBRACK, + STATE(11893), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365760] = 4, + ACTIONS(5921), 1, + anon_sym_RBRACK, + ACTIONS(16893), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365774] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16895), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [365784] = 4, + ACTIONS(5735), 1, + anon_sym_RBRACE, + ACTIONS(16897), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365798] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9464), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [365808] = 4, + ACTIONS(16899), 1, + anon_sym_COMMA, + ACTIONS(16902), 1, + anon_sym_RBRACE, + STATE(11871), 1, + aux_sym_unified_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365822] = 4, + ACTIONS(10428), 1, + anon_sym_RPAREN, + ACTIONS(16904), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365836] = 4, + ACTIONS(5789), 1, + anon_sym_RBRACE, + ACTIONS(16906), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365850] = 4, + ACTIONS(13122), 1, + anon_sym_RBRACE, + ACTIONS(16908), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365864] = 4, + ACTIONS(5970), 1, + anon_sym_RBRACK, + ACTIONS(16910), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365878] = 4, + ACTIONS(13528), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_COMMA, + STATE(11876), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365892] = 4, + ACTIONS(16915), 1, + anon_sym_COMMA, + ACTIONS(16918), 1, + anon_sym_RBRACE, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365906] = 3, + ACTIONS(14806), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14808), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [365918] = 4, + ACTIONS(5604), 1, + anon_sym_RPAREN, + ACTIONS(16920), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365932] = 4, + ACTIONS(10492), 1, + anon_sym_RBRACK, + ACTIONS(16922), 1, + anon_sym_COMMA, + STATE(11847), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365946] = 4, + ACTIONS(5606), 1, + anon_sym_RPAREN, + ACTIONS(16924), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365960] = 4, + ACTIONS(16926), 1, + anon_sym_COMMA, + ACTIONS(16928), 1, + anon_sym_COLON, + STATE(11987), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365974] = 4, + ACTIONS(16930), 1, + anon_sym_COMMA, + ACTIONS(16932), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [365988] = 4, + ACTIONS(16934), 1, + anon_sym_COMMA, + ACTIONS(16936), 1, + anon_sym_RBRACE, + STATE(11992), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366002] = 4, + ACTIONS(16938), 1, + anon_sym_COMMA, + ACTIONS(16940), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366016] = 4, + ACTIONS(16942), 1, + anon_sym_RPAREN, + ACTIONS(16944), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366030] = 4, + ACTIONS(5985), 1, + anon_sym_RBRACK, + ACTIONS(16947), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366044] = 4, + ACTIONS(16949), 1, + anon_sym_COMMA, + ACTIONS(16951), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366058] = 4, + ACTIONS(16953), 1, + anon_sym_COMMA, + ACTIONS(16955), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366072] = 4, + ACTIONS(5171), 1, + anon_sym_RBRACK, + ACTIONS(16957), 1, + anon_sym_COMMA, + STATE(11827), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366086] = 4, + ACTIONS(16959), 1, + anon_sym_COMMA, + ACTIONS(16961), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366100] = 4, + ACTIONS(10731), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366114] = 4, + ACTIONS(16963), 1, + anon_sym_COMMA, + ACTIONS(16965), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366128] = 3, + ACTIONS(14812), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14814), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [366140] = 4, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(16967), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366154] = 4, + ACTIONS(16969), 1, + anon_sym_COMMA, + ACTIONS(16971), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366168] = 4, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(16973), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366182] = 4, + ACTIONS(16975), 1, + anon_sym_RPAREN, + ACTIONS(16977), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366196] = 4, + ACTIONS(10544), 1, + anon_sym_RPAREN, + ACTIONS(16979), 1, + anon_sym_COMMA, + STATE(12170), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366210] = 4, + ACTIONS(5777), 1, + anon_sym_RBRACK, + ACTIONS(16981), 1, + anon_sym_COMMA, + STATE(11941), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366224] = 3, + ACTIONS(16985), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16983), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [366236] = 4, + ACTIONS(16987), 1, + anon_sym_COMMA, + ACTIONS(16989), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366250] = 4, + ACTIONS(16991), 1, + anon_sym_COMMA, + ACTIONS(16993), 1, + anon_sym_RBRACK, + STATE(11928), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366264] = 4, + ACTIONS(13250), 1, + anon_sym_RPAREN, + ACTIONS(13276), 1, + anon_sym_COMMA, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366278] = 4, + ACTIONS(16995), 1, + anon_sym_COMMA, + ACTIONS(16997), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366292] = 4, + ACTIONS(16999), 1, + anon_sym_SEMI, + ACTIONS(17002), 1, + sym__newline, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366306] = 4, + ACTIONS(17004), 1, + anon_sym_COMMA, + ACTIONS(17006), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366320] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(17008), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366334] = 4, + ACTIONS(17010), 1, + anon_sym_COMMA, + ACTIONS(17012), 1, + anon_sym_RBRACK, + STATE(12122), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366348] = 3, + ACTIONS(14697), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14699), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [366360] = 3, + ACTIONS(9987), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7613), 2, + sym_argument_list, + sym_generator_expression, + [366372] = 4, + ACTIONS(17014), 1, + anon_sym_COMMA, + ACTIONS(17016), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366386] = 4, + ACTIONS(17018), 1, + anon_sym_RPAREN, + ACTIONS(17020), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366400] = 4, + ACTIONS(13242), 1, + anon_sym_RBRACE, + ACTIONS(17022), 1, + anon_sym_COMMA, + STATE(11934), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366414] = 4, + ACTIONS(13242), 1, + anon_sym_RBRACE, + ACTIONS(17022), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366428] = 4, + ACTIONS(14114), 1, + anon_sym_COMMA, + ACTIONS(14116), 1, + anon_sym_RBRACK, + STATE(11935), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366442] = 4, + ACTIONS(17024), 1, + anon_sym_RPAREN, + ACTIONS(17026), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366456] = 4, + ACTIONS(17028), 1, + anon_sym_RPAREN, + ACTIONS(17030), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366470] = 3, + ACTIONS(14701), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14703), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [366482] = 3, + ACTIONS(5915), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 2, + anon_sym_finally, + anon_sym_except_STAR, + [366494] = 4, + ACTIONS(17032), 1, + anon_sym_COMMA, + ACTIONS(17034), 1, + anon_sym_RBRACE, + STATE(11946), 1, + aux_sym_unified_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366508] = 4, + ACTIONS(17036), 1, + anon_sym_RPAREN, + ACTIONS(17038), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366522] = 3, + ACTIONS(14705), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14707), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [366534] = 4, + ACTIONS(12810), 1, + anon_sym_DOT, + ACTIONS(12814), 1, + anon_sym_PIPE, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366548] = 4, + ACTIONS(10520), 1, + anon_sym_RPAREN, + ACTIONS(17040), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366562] = 4, + ACTIONS(17042), 1, + anon_sym_COMMA, + ACTIONS(17044), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366576] = 4, + ACTIONS(4101), 1, + sym__newline, + ACTIONS(17046), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366590] = 4, + ACTIONS(17048), 1, + anon_sym_COMMA, + ACTIONS(17050), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366604] = 4, + ACTIONS(10739), 1, + anon_sym_RBRACK, + ACTIONS(17052), 1, + anon_sym_COMMA, + STATE(11929), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366618] = 4, + ACTIONS(13126), 1, + sym__mlir_backtick, + ACTIONS(17055), 1, + sym_identifier, + STATE(7180), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366632] = 4, + ACTIONS(17057), 1, + anon_sym_COMMA, + ACTIONS(17059), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366646] = 4, + ACTIONS(17061), 1, + anon_sym_COMMA, + ACTIONS(17063), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366660] = 4, + ACTIONS(17065), 1, + anon_sym_COMMA, + ACTIONS(17067), 1, + anon_sym_RBRACE, + STATE(11960), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366674] = 4, + ACTIONS(13196), 1, + anon_sym_RBRACE, + ACTIONS(17069), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366688] = 4, + ACTIONS(5765), 1, + anon_sym_RBRACK, + ACTIONS(17071), 1, + anon_sym_COMMA, + STATE(11941), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366702] = 4, + ACTIONS(15233), 1, + anon_sym_LPAREN, + ACTIONS(17073), 1, + anon_sym_COLON, + STATE(12579), 1, + sym_superclass_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366716] = 4, + ACTIONS(17075), 1, + anon_sym_RPAREN, + ACTIONS(17077), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366730] = 4, + ACTIONS(17079), 1, + anon_sym_COMMA, + ACTIONS(17081), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366744] = 4, + ACTIONS(17083), 1, + anon_sym_COMMA, + ACTIONS(17085), 1, + anon_sym_RBRACK, + STATE(11968), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366758] = 4, + ACTIONS(15233), 1, + anon_sym_LPAREN, + ACTIONS(17087), 1, + anon_sym_COLON, + STATE(12563), 1, + sym_superclass_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366772] = 4, + ACTIONS(14904), 1, + anon_sym_RBRACK, + ACTIONS(17089), 1, + anon_sym_COMMA, + STATE(11941), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366786] = 4, + ACTIONS(17092), 1, + anon_sym_COMMA, + ACTIONS(17094), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366800] = 4, + ACTIONS(17096), 1, + sym_identifier, + ACTIONS(17098), 1, + anon_sym_RPAREN, + ACTIONS(17100), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366814] = 4, + ACTIONS(10739), 1, + anon_sym_RPAREN, + ACTIONS(17102), 1, + anon_sym_COMMA, + STATE(11944), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366828] = 3, + ACTIONS(9681), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7184), 2, + sym_argument_list, + sym_generator_expression, + [366840] = 4, + ACTIONS(13178), 1, + anon_sym_RBRACE, + ACTIONS(17105), 1, + anon_sym_COMMA, + STATE(11871), 1, + aux_sym_unified_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366854] = 4, + ACTIONS(17107), 1, + anon_sym_RPAREN, + ACTIONS(17109), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366868] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10516), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [366878] = 4, + ACTIONS(17111), 1, + anon_sym_RPAREN, + ACTIONS(17113), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366892] = 4, + ACTIONS(17115), 1, + anon_sym_RPAREN, + ACTIONS(17117), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366906] = 4, + ACTIONS(13180), 1, + anon_sym_RBRACE, + ACTIONS(17119), 1, + anon_sym_COMMA, + STATE(11874), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366920] = 4, + ACTIONS(17121), 1, + anon_sym_RPAREN, + ACTIONS(17123), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366934] = 4, + ACTIONS(10446), 1, + anon_sym_RPAREN, + ACTIONS(17125), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366948] = 4, + ACTIONS(10506), 1, + anon_sym_RBRACK, + ACTIONS(17127), 1, + anon_sym_COMMA, + STATE(11847), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366962] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17129), 1, + anon_sym_LPAREN, + STATE(12754), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366976] = 4, + ACTIONS(13180), 1, + anon_sym_RBRACE, + ACTIONS(17119), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [366990] = 4, + ACTIONS(5595), 1, + anon_sym_RPAREN, + ACTIONS(17131), 1, + anon_sym_COMMA, + STATE(11961), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367004] = 4, + ACTIONS(12407), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367018] = 4, + ACTIONS(10725), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367032] = 4, + ACTIONS(17133), 1, + anon_sym_COMMA, + ACTIONS(17135), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367046] = 4, + ACTIONS(13546), 1, + anon_sym_RPAREN, + ACTIONS(17137), 1, + anon_sym_COMMA, + STATE(11961), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367060] = 4, + ACTIONS(10727), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367074] = 4, + ACTIONS(17140), 1, + anon_sym_COMMA, + ACTIONS(17142), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367088] = 4, + ACTIONS(16326), 1, + anon_sym_RPAREN, + ACTIONS(17144), 1, + anon_sym_COMMA, + STATE(11964), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367102] = 4, + ACTIONS(14388), 1, + anon_sym_RPAREN, + ACTIONS(17147), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367116] = 4, + ACTIONS(10729), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367130] = 4, + ACTIONS(17150), 1, + anon_sym_COMMA, + ACTIONS(17152), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367144] = 4, + ACTIONS(17154), 1, + anon_sym_COMMA, + ACTIONS(17156), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367158] = 4, + ACTIONS(17158), 1, + anon_sym_COMMA, + ACTIONS(17160), 1, + anon_sym_RBRACK, + STATE(12282), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367172] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17162), 1, + anon_sym_LPAREN, + STATE(12638), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367186] = 4, + ACTIONS(5489), 1, + anon_sym_RPAREN, + ACTIONS(17164), 1, + anon_sym_COMMA, + STATE(11961), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367200] = 3, + ACTIONS(17166), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_COMMA, + anon_sym_COLON, + [367212] = 4, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367226] = 4, + ACTIONS(17168), 1, + anon_sym_COMMA, + ACTIONS(17170), 1, + anon_sym_COLON, + STATE(12024), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367240] = 4, + ACTIONS(10500), 1, + anon_sym_RPAREN, + ACTIONS(17172), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367254] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17174), 1, + anon_sym_LPAREN, + STATE(12725), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367268] = 4, + ACTIONS(17176), 1, + anon_sym_COMMA, + ACTIONS(17178), 1, + anon_sym_RBRACK, + STATE(12096), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367282] = 4, + ACTIONS(17180), 1, + anon_sym_COMMA, + ACTIONS(17183), 1, + anon_sym_COLON, + STATE(11978), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367296] = 3, + ACTIONS(14962), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14964), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [367308] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17185), 1, + anon_sym_LPAREN, + STATE(12472), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367322] = 4, + ACTIONS(5743), 1, + anon_sym_RBRACE, + ACTIONS(17187), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367336] = 4, + ACTIONS(5731), 1, + anon_sym_RBRACE, + ACTIONS(17189), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367350] = 4, + ACTIONS(13879), 1, + anon_sym_COMMA, + ACTIONS(13881), 1, + anon_sym_RBRACK, + STATE(11900), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367364] = 4, + ACTIONS(16836), 1, + anon_sym_RPAREN, + ACTIONS(17191), 1, + anon_sym_COMMA, + STATE(11824), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367378] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17193), 1, + anon_sym_LPAREN, + STATE(12488), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367392] = 4, + ACTIONS(17195), 1, + anon_sym_RPAREN, + ACTIONS(17197), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367406] = 4, + ACTIONS(10544), 1, + anon_sym_COLON, + ACTIONS(17199), 1, + anon_sym_COMMA, + STATE(12066), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367420] = 4, + ACTIONS(17201), 1, + anon_sym_COMMA, + ACTIONS(17203), 1, + anon_sym_RBRACK, + STATE(12221), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367434] = 3, + ACTIONS(10037), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6803), 2, + sym_argument_list, + sym_generator_expression, + [367446] = 4, + ACTIONS(17205), 1, + anon_sym_SEMI, + ACTIONS(17207), 1, + sym__newline, + STATE(12014), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367460] = 4, + ACTIONS(5602), 1, + anon_sym_RPAREN, + ACTIONS(17209), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367474] = 4, + ACTIONS(5889), 1, + anon_sym_RBRACE, + ACTIONS(17211), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367488] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17213), 1, + anon_sym_COLON, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367502] = 4, + ACTIONS(14226), 1, + anon_sym_type, + ACTIONS(17215), 1, + sym_identifier, + STATE(12517), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367516] = 4, + ACTIONS(17217), 1, + anon_sym_COMMA, + ACTIONS(17219), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367530] = 4, + ACTIONS(13298), 1, + anon_sym_RPAREN, + ACTIONS(13300), 1, + anon_sym_COMMA, + STATE(12245), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367544] = 4, + ACTIONS(17221), 1, + anon_sym_LPAREN, + ACTIONS(17223), 1, + anon_sym_COLON, + STATE(12556), 1, + sym_trait_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367558] = 4, + ACTIONS(17225), 1, + anon_sym_RPAREN, + ACTIONS(17227), 1, + anon_sym_COMMA, + STATE(12252), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367572] = 4, + ACTIONS(10716), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367586] = 4, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(12820), 1, + anon_sym_PIPE, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367600] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13296), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367614] = 4, + ACTIONS(13250), 1, + anon_sym_RBRACE, + ACTIONS(17229), 1, + anon_sym_COMMA, + STATE(12265), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367628] = 4, + ACTIONS(13378), 1, + anon_sym_RPAREN, + ACTIONS(13380), 1, + anon_sym_COMMA, + STATE(11895), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367642] = 4, + ACTIONS(17231), 1, + anon_sym_RPAREN, + ACTIONS(17233), 1, + anon_sym_COMMA, + STATE(12184), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367656] = 4, + ACTIONS(5608), 1, + anon_sym_RPAREN, + ACTIONS(17235), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367670] = 4, + ACTIONS(5831), 1, + anon_sym_RBRACE, + ACTIONS(17237), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367684] = 3, + ACTIONS(13504), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13502), 2, + sym__newline, + anon_sym_SEMI, + [367696] = 4, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14108), 1, + anon_sym_RBRACE, + STATE(12025), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367710] = 4, + ACTIONS(17239), 1, + anon_sym_COMMA, + ACTIONS(17241), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367724] = 4, + ACTIONS(13355), 1, + anon_sym_RPAREN, + ACTIONS(13357), 1, + anon_sym_COMMA, + STATE(11991), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367738] = 4, + ACTIONS(17243), 1, + anon_sym_COMMA, + ACTIONS(17245), 1, + anon_sym_RBRACE, + STATE(12027), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367752] = 4, + ACTIONS(13246), 1, + sym__mlir_backtick, + ACTIONS(17247), 1, + sym_identifier, + STATE(7511), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367766] = 4, + ACTIONS(13719), 1, + anon_sym_COMMA, + ACTIONS(13721), 1, + anon_sym_RBRACE, + STATE(12105), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367780] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(17249), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367794] = 4, + ACTIONS(17251), 1, + anon_sym_RPAREN, + ACTIONS(17253), 1, + anon_sym_COMMA, + STATE(12005), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367808] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(11082), 1, + anon_sym_AMP, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367822] = 4, + ACTIONS(13463), 1, + anon_sym_COMMA, + ACTIONS(13465), 1, + anon_sym_RBRACK, + STATE(11938), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367836] = 4, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(17255), 1, + anon_sym_RBRACE, + STATE(12731), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367850] = 4, + ACTIONS(17257), 1, + anon_sym_COMMA, + ACTIONS(17259), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367864] = 4, + ACTIONS(17261), 1, + anon_sym_COMMA, + ACTIONS(17263), 1, + anon_sym_RBRACK, + STATE(12120), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367878] = 3, + ACTIONS(9610), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6968), 2, + sym_argument_list, + sym_generator_expression, + [367890] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [367900] = 4, + ACTIONS(5580), 1, + anon_sym_RPAREN, + ACTIONS(17265), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367914] = 4, + ACTIONS(5841), 1, + anon_sym_COLON, + ACTIONS(17267), 1, + anon_sym_COMMA, + STATE(11978), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367928] = 4, + ACTIONS(5695), 1, + anon_sym_RBRACE, + ACTIONS(17269), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367942] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13326), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367956] = 4, + ACTIONS(5785), 1, + anon_sym_RBRACE, + ACTIONS(17271), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367970] = 4, + ACTIONS(17273), 1, + anon_sym_RPAREN, + ACTIONS(17275), 1, + anon_sym_COMMA, + STATE(12050), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367984] = 4, + ACTIONS(12870), 1, + anon_sym_DOT, + ACTIONS(12874), 1, + anon_sym_PIPE, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [367998] = 4, + ACTIONS(17277), 1, + anon_sym_COMMA, + ACTIONS(17279), 1, + anon_sym_RBRACK, + STATE(12283), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368012] = 4, + ACTIONS(13345), 1, + anon_sym_RPAREN, + ACTIONS(13347), 1, + anon_sym_COMMA, + STATE(12150), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368026] = 4, + ACTIONS(5582), 1, + anon_sym_RPAREN, + ACTIONS(17281), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368040] = 4, + ACTIONS(17283), 1, + anon_sym_RPAREN, + ACTIONS(17285), 1, + anon_sym_COMMA, + STATE(12179), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368054] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10504), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [368064] = 4, + ACTIONS(17287), 1, + anon_sym_COMMA, + ACTIONS(17289), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368078] = 4, + ACTIONS(13160), 1, + anon_sym_RBRACE, + ACTIONS(17291), 1, + anon_sym_COMMA, + STATE(12165), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368092] = 4, + ACTIONS(17293), 1, + anon_sym_COMMA, + ACTIONS(17295), 1, + anon_sym_RBRACK, + STATE(12274), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368106] = 4, + ACTIONS(13160), 1, + anon_sym_RBRACE, + ACTIONS(17291), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368120] = 4, + ACTIONS(10548), 1, + sym_identifier, + ACTIONS(17297), 1, + anon_sym_import, + STATE(12679), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368134] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17299), 1, + anon_sym_COLON, + STATE(8612), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368148] = 4, + ACTIONS(13328), 1, + anon_sym_RPAREN, + ACTIONS(13330), 1, + anon_sym_COMMA, + STATE(12058), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368162] = 4, + ACTIONS(17301), 1, + anon_sym_RPAREN, + ACTIONS(17303), 1, + anon_sym_COMMA, + STATE(12059), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368176] = 4, + ACTIONS(14072), 1, + anon_sym_COMMA, + ACTIONS(14074), 1, + anon_sym_RBRACK, + STATE(12171), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368190] = 4, + ACTIONS(15241), 1, + anon_sym_COLON, + ACTIONS(17305), 1, + anon_sym_RBRACE, + STATE(12753), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368204] = 4, + ACTIONS(17307), 1, + anon_sym_COMMA, + ACTIONS(17309), 1, + anon_sym_RBRACK, + STATE(12062), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368218] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15990), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [368228] = 4, + ACTIONS(17311), 1, + sym__newline, + ACTIONS(17313), 1, + sym__indent, + STATE(4461), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368242] = 4, + ACTIONS(13477), 1, + anon_sym_COMMA, + ACTIONS(13479), 1, + anon_sym_RBRACK, + STATE(12067), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368256] = 4, + ACTIONS(5526), 1, + anon_sym_RPAREN, + ACTIONS(14242), 1, + anon_sym_COMMA, + STATE(11961), 1, + aux_sym_superclass_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368270] = 4, + ACTIONS(5473), 1, + anon_sym_RPAREN, + ACTIONS(17315), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368284] = 4, + ACTIONS(17317), 1, + anon_sym_COMMA, + ACTIONS(17319), 1, + anon_sym_RBRACE, + STATE(12135), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368298] = 4, + ACTIONS(17321), 1, + anon_sym_RPAREN, + ACTIONS(17323), 1, + anon_sym_COMMA, + STATE(11964), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368312] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17325), 1, + anon_sym_LPAREN, + STATE(12502), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368326] = 4, + ACTIONS(13349), 1, + anon_sym_RPAREN, + ACTIONS(13351), 1, + anon_sym_COMMA, + STATE(12129), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368340] = 4, + ACTIONS(5964), 1, + anon_sym_RBRACK, + ACTIONS(17327), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368354] = 4, + ACTIONS(17329), 1, + anon_sym_COMMA, + ACTIONS(17331), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368368] = 4, + ACTIONS(17333), 1, + anon_sym_RPAREN, + ACTIONS(17335), 1, + anon_sym_COMMA, + STATE(12141), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368382] = 4, + ACTIONS(5475), 1, + anon_sym_RPAREN, + ACTIONS(17337), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368396] = 4, + ACTIONS(5487), 1, + anon_sym_RPAREN, + ACTIONS(17339), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368410] = 4, + ACTIONS(17341), 1, + anon_sym_COMMA, + ACTIONS(17343), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368424] = 4, + ACTIONS(17345), 1, + anon_sym_COMMA, + ACTIONS(17347), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368438] = 4, + ACTIONS(17349), 1, + anon_sym_COMMA, + ACTIONS(17351), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368452] = 4, + ACTIONS(17353), 1, + anon_sym_COMMA, + ACTIONS(17355), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368466] = 4, + ACTIONS(13528), 1, + anon_sym_RBRACK, + ACTIONS(17357), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368480] = 4, + ACTIONS(17360), 1, + anon_sym_COMMA, + ACTIONS(17362), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368494] = 4, + ACTIONS(17364), 1, + anon_sym_COMMA, + ACTIONS(17367), 1, + anon_sym_COLON, + STATE(12066), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368508] = 4, + ACTIONS(17369), 1, + anon_sym_COMMA, + ACTIONS(17371), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368522] = 4, + ACTIONS(17373), 1, + anon_sym_COMMA, + ACTIONS(17375), 1, + anon_sym_RBRACK, + STATE(12210), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368536] = 4, + ACTIONS(17377), 1, + anon_sym_COMMA, + ACTIONS(17379), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368550] = 4, + ACTIONS(13471), 1, + anon_sym_COMMA, + ACTIONS(13473), 1, + anon_sym_RBRACK, + STATE(11829), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368564] = 4, + ACTIONS(17381), 1, + anon_sym_COMMA, + ACTIONS(17383), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368578] = 4, + ACTIONS(5948), 1, + anon_sym_RBRACK, + ACTIONS(17385), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368592] = 4, + ACTIONS(17387), 1, + anon_sym_COMMA, + ACTIONS(17389), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368606] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [368616] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10510), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [368626] = 4, + ACTIONS(17391), 1, + anon_sym_RPAREN, + ACTIONS(17393), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368640] = 4, + ACTIONS(17395), 1, + anon_sym_RPAREN, + ACTIONS(17397), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368654] = 4, + ACTIONS(16126), 1, + anon_sym_RPAREN, + ACTIONS(17399), 1, + anon_sym_COMMA, + STATE(12128), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368668] = 4, + ACTIONS(17401), 1, + anon_sym_COMMA, + ACTIONS(17403), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368682] = 4, + ACTIONS(17405), 1, + anon_sym_RPAREN, + ACTIONS(17407), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368696] = 4, + ACTIONS(17409), 1, + anon_sym_COMMA, + ACTIONS(17411), 1, + anon_sym_RBRACE, + STATE(11873), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368710] = 4, + ACTIONS(17413), 1, + anon_sym_COMMA, + ACTIONS(17415), 1, + anon_sym_RBRACK, + STATE(12195), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368724] = 4, + ACTIONS(17417), 1, + anon_sym_COMMA, + ACTIONS(17419), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368738] = 4, + ACTIONS(17421), 1, + anon_sym_COMMA, + ACTIONS(17424), 1, + anon_sym_RBRACE, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368752] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9367), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [368762] = 4, + ACTIONS(17426), 1, + anon_sym_COMMA, + ACTIONS(17428), 1, + anon_sym_RBRACK, + STATE(12138), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368776] = 4, + ACTIONS(17430), 1, + anon_sym_RPAREN, + ACTIONS(17432), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368790] = 4, + ACTIONS(17311), 1, + sym__newline, + ACTIONS(17313), 1, + sym__indent, + STATE(5555), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368804] = 4, + ACTIONS(17434), 1, + anon_sym_COMMA, + ACTIONS(17436), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368818] = 4, + ACTIONS(17438), 1, + anon_sym_COMMA, + ACTIONS(17440), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368832] = 4, + ACTIONS(16828), 1, + sym__newline, + ACTIONS(16830), 1, + sym__indent, + STATE(4479), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368846] = 4, + ACTIONS(17442), 1, + anon_sym_COMMA, + ACTIONS(17444), 1, + anon_sym_RBRACK, + STATE(12035), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368860] = 3, + ACTIONS(9558), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7235), 2, + sym_argument_list, + sym_generator_expression, + [368872] = 4, + ACTIONS(17446), 1, + anon_sym_COMMA, + ACTIONS(17448), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368886] = 4, + ACTIONS(15689), 1, + anon_sym_RPAREN, + ACTIONS(15845), 1, + anon_sym_COMMA, + STATE(12078), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368900] = 4, + ACTIONS(17450), 1, + anon_sym_COMMA, + ACTIONS(17452), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368914] = 4, + ACTIONS(14742), 1, + anon_sym_PIPE, + ACTIONS(17454), 1, + anon_sym_COLON, + STATE(10801), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368928] = 4, + ACTIONS(17456), 1, + anon_sym_COMMA, + ACTIONS(17458), 1, + anon_sym_RBRACE, + STATE(11905), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368942] = 4, + ACTIONS(16126), 1, + anon_sym_RPAREN, + ACTIONS(17460), 1, + anon_sym_COMMA, + STATE(12128), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368956] = 4, + ACTIONS(17462), 1, + anon_sym_COMMA, + ACTIONS(17464), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368970] = 4, + ACTIONS(17466), 1, + anon_sym_COMMA, + ACTIONS(17468), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368984] = 4, + ACTIONS(17311), 1, + sym__newline, + ACTIONS(17313), 1, + sym__indent, + STATE(5566), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [368998] = 4, + ACTIONS(17470), 1, + anon_sym_COMMA, + ACTIONS(17473), 1, + anon_sym_COLON, + STATE(12103), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369012] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9464), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [369022] = 4, + ACTIONS(5713), 1, + anon_sym_RBRACE, + ACTIONS(17475), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369036] = 3, + ACTIONS(17479), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17477), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [369048] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9347), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [369058] = 4, + ACTIONS(10434), 1, + anon_sym_RPAREN, + ACTIONS(17481), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369072] = 4, + ACTIONS(17483), 1, + anon_sym_COMMA, + ACTIONS(17485), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369086] = 4, + ACTIONS(10733), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369100] = 4, + ACTIONS(17487), 1, + anon_sym_COMMA, + ACTIONS(17489), 1, + anon_sym_RBRACE, + STATE(11809), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369114] = 4, + ACTIONS(10718), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369128] = 3, + ACTIONS(17493), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17491), 2, + sym__newline, + anon_sym_SEMI, + [369140] = 4, + ACTIONS(4103), 1, + sym__newline, + ACTIONS(17495), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369154] = 4, + ACTIONS(5968), 1, + anon_sym_RBRACK, + ACTIONS(17497), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369168] = 4, + ACTIONS(5895), 1, + anon_sym_RBRACK, + ACTIONS(17499), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369182] = 3, + ACTIONS(14755), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14757), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [369194] = 4, + ACTIONS(13274), 1, + anon_sym_RPAREN, + ACTIONS(13276), 1, + anon_sym_COMMA, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369208] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17501), 1, + anon_sym_LPAREN, + STATE(12562), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369222] = 4, + ACTIONS(17503), 1, + anon_sym_COMMA, + ACTIONS(17505), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369236] = 4, + ACTIONS(16928), 1, + anon_sym_RPAREN, + ACTIONS(17507), 1, + anon_sym_COMMA, + STATE(11899), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369250] = 4, + ACTIONS(5193), 1, + anon_sym_RBRACK, + ACTIONS(13966), 1, + anon_sym_COMMA, + STATE(11827), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369264] = 4, + ACTIONS(13148), 1, + anon_sym_RBRACE, + ACTIONS(17509), 1, + anon_sym_COMMA, + STATE(12143), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369278] = 4, + ACTIONS(17511), 1, + anon_sym_RPAREN, + ACTIONS(17513), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369292] = 3, + ACTIONS(15847), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15990), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [369304] = 4, + ACTIONS(17515), 1, + anon_sym_SEMI, + ACTIONS(17517), 1, + sym__newline, + STATE(12114), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369318] = 4, + ACTIONS(13148), 1, + anon_sym_RBRACE, + ACTIONS(17509), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369332] = 4, + ACTIONS(16071), 1, + anon_sym_RPAREN, + ACTIONS(17519), 1, + anon_sym_COMMA, + STATE(12128), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369346] = 4, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(17522), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369360] = 4, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(17524), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369374] = 4, + ACTIONS(17526), 1, + anon_sym_RPAREN, + ACTIONS(17528), 1, + anon_sym_COMMA, + STATE(12052), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369388] = 4, + ACTIONS(13799), 1, + anon_sym_COMMA, + ACTIONS(13801), 1, + anon_sym_RBRACK, + STATE(12144), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369402] = 4, + ACTIONS(17530), 1, + anon_sym_RPAREN, + ACTIONS(17532), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369416] = 4, + ACTIONS(13172), 1, + sym__mlir_backtick, + ACTIONS(17534), 1, + sym_identifier, + STATE(7062), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369430] = 4, + ACTIONS(5845), 1, + anon_sym_RBRACE, + ACTIONS(17536), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369444] = 4, + ACTIONS(17538), 1, + anon_sym_RPAREN, + ACTIONS(17540), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369458] = 4, + ACTIONS(17542), 1, + anon_sym_COMMA, + ACTIONS(17544), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369472] = 4, + ACTIONS(17546), 1, + anon_sym_COMMA, + ACTIONS(17548), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369486] = 4, + ACTIONS(17550), 1, + anon_sym_COMMA, + ACTIONS(17552), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369500] = 4, + ACTIONS(5972), 1, + anon_sym_RBRACK, + ACTIONS(17554), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369514] = 4, + ACTIONS(5536), 1, + anon_sym_RPAREN, + ACTIONS(17556), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369528] = 4, + ACTIONS(17558), 1, + anon_sym_COMMA, + ACTIONS(17560), 1, + anon_sym_RBRACE, + STATE(12154), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369542] = 4, + ACTIONS(13152), 1, + anon_sym_RBRACE, + ACTIONS(17562), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369556] = 4, + ACTIONS(5779), 1, + anon_sym_RBRACK, + ACTIONS(17564), 1, + anon_sym_COMMA, + STATE(11941), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369570] = 4, + ACTIONS(17566), 1, + anon_sym_COMMA, + ACTIONS(17568), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369584] = 4, + ACTIONS(17570), 1, + anon_sym_RPAREN, + ACTIONS(17572), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369598] = 3, + ACTIONS(15759), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [369610] = 4, + ACTIONS(17574), 1, + anon_sym_COMMA, + ACTIONS(17576), 1, + anon_sym_RBRACK, + STATE(12158), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369624] = 4, + ACTIONS(17578), 1, + anon_sym_COMMA, + ACTIONS(17580), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369638] = 4, + ACTIONS(5574), 1, + anon_sym_RPAREN, + ACTIONS(17582), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369652] = 4, + ACTIONS(17584), 1, + anon_sym_COMMA, + ACTIONS(17586), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369666] = 4, + ACTIONS(10474), 1, + anon_sym_RPAREN, + ACTIONS(17588), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369680] = 4, + ACTIONS(10484), 1, + anon_sym_RBRACK, + ACTIONS(17590), 1, + anon_sym_COMMA, + STATE(11847), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369694] = 4, + ACTIONS(17592), 1, + anon_sym_COMMA, + ACTIONS(17594), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369708] = 4, + ACTIONS(17596), 1, + anon_sym_COMMA, + ACTIONS(17598), 1, + anon_sym_RBRACE, + STATE(11850), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369722] = 4, + ACTIONS(5631), 1, + anon_sym_RBRACK, + ACTIONS(17600), 1, + anon_sym_COMMA, + STATE(12169), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369736] = 4, + ACTIONS(5197), 1, + anon_sym_RBRACK, + ACTIONS(17602), 1, + anon_sym_COMMA, + STATE(11827), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369750] = 4, + ACTIONS(17604), 1, + anon_sym_COMMA, + ACTIONS(17606), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369764] = 4, + ACTIONS(17608), 1, + anon_sym_COMMA, + ACTIONS(17610), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369778] = 3, + ACTIONS(5917), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 2, + anon_sym_finally, + anon_sym_except_STAR, + [369790] = 4, + ACTIONS(10482), 1, + anon_sym_RPAREN, + ACTIONS(17612), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369804] = 4, + ACTIONS(17311), 1, + sym__newline, + ACTIONS(17313), 1, + sym__indent, + STATE(5179), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369818] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10779), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [369828] = 3, + ACTIONS(17614), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [369840] = 4, + ACTIONS(13120), 1, + anon_sym_RBRACE, + ACTIONS(17616), 1, + anon_sym_COMMA, + STATE(11877), 1, + aux_sym_result_convention_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369854] = 4, + ACTIONS(15075), 1, + anon_sym_RBRACE, + ACTIONS(17618), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369868] = 4, + ACTIONS(9290), 1, + anon_sym_RBRACK, + ACTIONS(17621), 1, + anon_sym_COMMA, + STATE(11929), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369882] = 4, + ACTIONS(17623), 1, + anon_sym_SEMI, + ACTIONS(17625), 1, + sym__newline, + STATE(11806), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369896] = 4, + ACTIONS(14427), 1, + anon_sym_RBRACK, + ACTIONS(17627), 1, + anon_sym_COMMA, + STATE(12169), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369910] = 4, + ACTIONS(17367), 1, + anon_sym_RPAREN, + ACTIONS(17630), 1, + anon_sym_COMMA, + STATE(12170), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369924] = 4, + ACTIONS(5759), 1, + anon_sym_RBRACK, + ACTIONS(17633), 1, + anon_sym_COMMA, + STATE(11941), 1, + aux_sym_capture_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369938] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13322), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369952] = 4, + ACTIONS(13989), 1, + anon_sym_COMMA, + ACTIONS(13991), 1, + anon_sym_RBRACE, + STATE(12182), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369966] = 4, + ACTIONS(17635), 1, + anon_sym_COMMA, + ACTIONS(17637), 1, + anon_sym_RBRACE, + STATE(12183), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369980] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13420), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [369994] = 4, + ACTIONS(13132), 1, + sym__mlir_backtick, + ACTIONS(17639), 1, + sym_identifier, + STATE(7603), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370008] = 4, + ACTIONS(12816), 1, + anon_sym_DOT, + ACTIONS(14142), 1, + anon_sym_COLON, + ACTIONS(14144), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370022] = 4, + ACTIONS(5719), 1, + anon_sym_RBRACE, + ACTIONS(17641), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370036] = 4, + ACTIONS(5576), 1, + anon_sym_RPAREN, + ACTIONS(17643), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370050] = 4, + ACTIONS(17645), 1, + anon_sym_COMMA, + ACTIONS(17647), 1, + anon_sym_COLON, + STATE(12103), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370064] = 3, + ACTIONS(9865), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7484), 2, + sym_argument_list, + sym_generator_expression, + [370076] = 4, + ACTIONS(5733), 1, + anon_sym_RBRACE, + ACTIONS(17649), 1, + anon_sym_COMMA, + STATE(12084), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370090] = 4, + ACTIONS(5891), 1, + anon_sym_RBRACE, + ACTIONS(17651), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370104] = 4, + ACTIONS(5869), 1, + anon_sym_RPAREN, + ACTIONS(17653), 1, + anon_sym_COMMA, + STATE(12267), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370118] = 4, + ACTIONS(17655), 1, + anon_sym_COMMA, + ACTIONS(17657), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370132] = 4, + ACTIONS(10702), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370146] = 4, + ACTIONS(13341), 1, + anon_sym_RPAREN, + ACTIONS(13343), 1, + anon_sym_COMMA, + STATE(12198), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370160] = 4, + ACTIONS(17659), 1, + anon_sym_RPAREN, + ACTIONS(17661), 1, + anon_sym_COMMA, + STATE(12199), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370174] = 4, + ACTIONS(17663), 1, + anon_sym_COMMA, + ACTIONS(17665), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370188] = 4, + ACTIONS(17667), 1, + anon_sym_COMMA, + ACTIONS(17669), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370202] = 4, + ACTIONS(17671), 1, + anon_sym_COMMA, + ACTIONS(17673), 1, + anon_sym_RBRACK, + STATE(12204), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370216] = 3, + ACTIONS(17675), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [370228] = 4, + ACTIONS(10706), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370242] = 4, + ACTIONS(16828), 1, + sym__newline, + ACTIONS(16830), 1, + sym__indent, + STATE(4483), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370256] = 4, + ACTIONS(17677), 1, + anon_sym_COMMA, + ACTIONS(17679), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370270] = 4, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(17681), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370284] = 4, + ACTIONS(17683), 1, + anon_sym_COMMA, + ACTIONS(17685), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370298] = 4, + ACTIONS(5538), 1, + anon_sym_RPAREN, + ACTIONS(17687), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370312] = 4, + ACTIONS(5540), 1, + anon_sym_RPAREN, + ACTIONS(17689), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370326] = 4, + ACTIONS(17691), 1, + anon_sym_RPAREN, + ACTIONS(17693), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370340] = 4, + ACTIONS(17695), 1, + anon_sym_COMMA, + ACTIONS(17697), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370354] = 4, + ACTIONS(17699), 1, + anon_sym_COMMA, + ACTIONS(17701), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370368] = 4, + ACTIONS(5677), 1, + anon_sym_RBRACK, + ACTIONS(17703), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370382] = 4, + ACTIONS(17705), 1, + anon_sym_COMMA, + ACTIONS(17707), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370396] = 4, + ACTIONS(17709), 1, + anon_sym_COMMA, + ACTIONS(17711), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370410] = 4, + ACTIONS(17713), 1, + anon_sym_COMMA, + ACTIONS(17715), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370424] = 4, + ACTIONS(17717), 1, + anon_sym_RPAREN, + ACTIONS(17719), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370438] = 4, + ACTIONS(5893), 1, + anon_sym_RBRACE, + ACTIONS(17721), 1, + anon_sym_COMMA, + STATE(12166), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370452] = 4, + ACTIONS(5631), 1, + anon_sym_RPAREN, + ACTIONS(17723), 1, + anon_sym_COMMA, + STATE(11860), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370466] = 4, + ACTIONS(17725), 1, + anon_sym_COMMA, + ACTIONS(17727), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370480] = 4, + ACTIONS(13727), 1, + anon_sym_COMMA, + ACTIONS(13729), 1, + anon_sym_RBRACE, + STATE(11981), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370494] = 3, + ACTIONS(5932), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 2, + anon_sym_finally, + anon_sym_except_STAR, + [370506] = 4, + ACTIONS(17729), 1, + anon_sym_RPAREN, + ACTIONS(17731), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370520] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17733), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [370530] = 4, + ACTIONS(17735), 1, + anon_sym_RPAREN, + ACTIONS(17737), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370544] = 4, + ACTIONS(13399), 1, + anon_sym_RPAREN, + ACTIONS(13401), 1, + anon_sym_COMMA, + STATE(12023), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370558] = 4, + ACTIONS(17739), 1, + anon_sym_RPAREN, + ACTIONS(17741), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370572] = 3, + ACTIONS(17166), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_COMMA, + anon_sym_COLON, + [370584] = 4, + ACTIONS(17743), 1, + anon_sym_COMMA, + ACTIONS(17745), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370598] = 4, + ACTIONS(5966), 1, + anon_sym_RBRACK, + ACTIONS(17747), 1, + anon_sym_COMMA, + STATE(12064), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370612] = 4, + ACTIONS(17749), 1, + anon_sym_COMMA, + ACTIONS(17751), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370626] = 4, + ACTIONS(13528), 1, + anon_sym_RPAREN, + ACTIONS(17753), 1, + anon_sym_COMMA, + STATE(12222), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370640] = 3, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7713), 2, + sym_argument_list, + sym_generator_expression, + [370652] = 4, + ACTIONS(17756), 1, + anon_sym_COMMA, + ACTIONS(17758), 1, + anon_sym_RBRACK, + STATE(12157), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370666] = 4, + ACTIONS(17760), 1, + anon_sym_SEMI, + ACTIONS(17762), 1, + sym__newline, + STATE(12264), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370680] = 4, + ACTIONS(17764), 1, + anon_sym_COMMA, + ACTIONS(17766), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370694] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(13332), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370708] = 4, + ACTIONS(17768), 1, + anon_sym_COMMA, + ACTIONS(17770), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370722] = 4, + ACTIONS(13248), 1, + anon_sym_COMMA, + ACTIONS(13250), 1, + anon_sym_RBRACK, + STATE(12156), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370736] = 4, + ACTIONS(17772), 1, + anon_sym_RPAREN, + ACTIONS(17774), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370750] = 4, + ACTIONS(17776), 1, + anon_sym_RPAREN, + ACTIONS(17778), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370764] = 4, + ACTIONS(17780), 1, + anon_sym_RPAREN, + ACTIONS(17782), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370778] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16326), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [370788] = 4, + ACTIONS(17784), 1, + anon_sym_RPAREN, + ACTIONS(17786), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370802] = 3, + ACTIONS(15905), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15909), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [370814] = 4, + ACTIONS(17788), 1, + anon_sym_RPAREN, + ACTIONS(17790), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370828] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15065), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [370838] = 4, + ACTIONS(17792), 1, + anon_sym_COMMA, + ACTIONS(17794), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370852] = 4, + ACTIONS(17796), 1, + anon_sym_SEMI, + ACTIONS(17798), 1, + sym__newline, + STATE(11927), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370866] = 4, + ACTIONS(17800), 1, + anon_sym_RPAREN, + ACTIONS(17802), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370880] = 4, + ACTIONS(17804), 1, + anon_sym_RPAREN, + ACTIONS(17806), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370894] = 4, + ACTIONS(14009), 1, + anon_sym_COMMA, + ACTIONS(14011), 1, + anon_sym_RBRACE, + STATE(12178), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370908] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15915), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [370918] = 4, + ACTIONS(17808), 1, + anon_sym_RPAREN, + ACTIONS(17810), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370932] = 4, + ACTIONS(5519), 1, + anon_sym_RPAREN, + ACTIONS(17812), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370946] = 4, + ACTIONS(17814), 1, + anon_sym_RPAREN, + ACTIONS(17816), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370960] = 4, + ACTIONS(17818), 1, + anon_sym_COMMA, + ACTIONS(17820), 1, + anon_sym_RBRACK, + STATE(11912), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370974] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17822), 1, + anon_sym_LPAREN, + STATE(12668), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [370988] = 4, + ACTIONS(15909), 1, + anon_sym_RPAREN, + ACTIONS(17824), 1, + anon_sym_COMMA, + STATE(12249), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371002] = 3, + ACTIONS(5942), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 2, + anon_sym_finally, + anon_sym_except_STAR, + [371014] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17827), 1, + anon_sym_LPAREN, + STATE(12674), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371028] = 4, + ACTIONS(5521), 1, + anon_sym_RPAREN, + ACTIONS(17829), 1, + anon_sym_COMMA, + STATE(11965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371042] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(17831), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371056] = 4, + ACTIONS(17833), 1, + anon_sym_COMMA, + ACTIONS(17835), 1, + anon_sym_RBRACK, + STATE(12073), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371070] = 4, + ACTIONS(10735), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371084] = 4, + ACTIONS(17837), 1, + anon_sym_COMMA, + ACTIONS(17839), 1, + anon_sym_RBRACE, + STATE(12208), 1, + aux_sym_struct_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371098] = 4, + ACTIONS(17841), 1, + anon_sym_COMMA, + ACTIONS(17843), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371112] = 4, + ACTIONS(13276), 1, + anon_sym_COMMA, + ACTIONS(17845), 1, + anon_sym_RPAREN, + STATE(12209), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371126] = 4, + ACTIONS(10737), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371140] = 4, + ACTIONS(13186), 1, + sym__mlir_backtick, + ACTIONS(17847), 1, + sym_identifier, + STATE(7583), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371154] = 4, + ACTIONS(17849), 1, + anon_sym_COMMA, + ACTIONS(17851), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371168] = 4, + ACTIONS(10710), 1, + anon_sym_in, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(10952), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371182] = 4, + ACTIONS(17853), 1, + anon_sym_RPAREN, + ACTIONS(17855), 1, + anon_sym_COMMA, + STATE(12032), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371196] = 4, + ACTIONS(4121), 1, + sym__newline, + ACTIONS(17857), 1, + anon_sym_SEMI, + STATE(11906), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371210] = 4, + ACTIONS(5631), 1, + anon_sym_RBRACE, + ACTIONS(17859), 1, + anon_sym_COMMA, + STATE(11817), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371224] = 4, + ACTIONS(17861), 1, + anon_sym_RPAREN, + ACTIONS(17863), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371238] = 4, + ACTIONS(17183), 1, + anon_sym_RPAREN, + ACTIONS(17865), 1, + anon_sym_COMMA, + STATE(12267), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371252] = 4, + ACTIONS(17868), 1, + anon_sym_RPAREN, + ACTIONS(17870), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371266] = 3, + ACTIONS(9915), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(7701), 2, + sym_argument_list, + sym_generator_expression, + [371278] = 4, + ACTIONS(17872), 1, + anon_sym_RPAREN, + ACTIONS(17874), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371292] = 3, + ACTIONS(14822), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14824), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [371304] = 4, + ACTIONS(17876), 1, + anon_sym_RPAREN, + ACTIONS(17878), 1, + anon_sym_COMMA, + STATE(11886), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371318] = 4, + ACTIONS(17221), 1, + anon_sym_LPAREN, + ACTIONS(17880), 1, + anon_sym_COLON, + STATE(12704), 1, + sym_trait_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371332] = 4, + ACTIONS(17882), 1, + anon_sym_COMMA, + ACTIONS(17884), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371346] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15915), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [371356] = 4, + ACTIONS(17886), 1, + anon_sym_COMMA, + ACTIONS(17888), 1, + anon_sym_RBRACK, + STATE(11823), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371370] = 4, + ACTIONS(17890), 1, + anon_sym_COMMA, + ACTIONS(17893), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371384] = 4, + ACTIONS(9316), 1, + anon_sym_LBRACK, + ACTIONS(17895), 1, + anon_sym_LPAREN, + STATE(12739), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371398] = 3, + ACTIONS(17899), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17897), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [371410] = 4, + ACTIONS(5677), 1, + anon_sym_RPAREN, + ACTIONS(17901), 1, + anon_sym_COMMA, + STATE(12222), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371424] = 4, + ACTIONS(14013), 1, + anon_sym_COMMA, + ACTIONS(14015), 1, + anon_sym_RBRACE, + STATE(11869), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371438] = 4, + ACTIONS(17903), 1, + anon_sym_COMMA, + ACTIONS(17905), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371452] = 4, + ACTIONS(17907), 1, + anon_sym_COMMA, + ACTIONS(17909), 1, + anon_sym_RBRACK, + STATE(12277), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371466] = 4, + ACTIONS(13204), 1, + sym__mlir_backtick, + ACTIONS(17911), 1, + sym_identifier, + STATE(7163), 1, + sym_mlir_fragment, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371480] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [371489] = 3, + ACTIONS(10845), 1, + anon_sym_LPAREN, + STATE(8629), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371500] = 3, + ACTIONS(17321), 1, + anon_sym_RPAREN, + ACTIONS(17913), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371511] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8271), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 2, + sym__dedent, + anon_sym_case, + [371531] = 3, + ACTIONS(17915), 1, + anon_sym_DOT, + ACTIONS(17917), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371542] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [371551] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17183), 2, + anon_sym_COMMA, + anon_sym_COLON, + [371560] = 3, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12722), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371571] = 3, + ACTIONS(17919), 1, + anon_sym_AMP, + STATE(12343), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371582] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13610), 2, + sym__newline, + anon_sym_SEMI, + [371591] = 3, + ACTIONS(10788), 1, + anon_sym_LPAREN, + STATE(8627), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371602] = 3, + ACTIONS(17921), 1, + anon_sym_DOT, + ACTIONS(17923), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371613] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17925), 2, + anon_sym_COMMA, + anon_sym_COLON, + [371622] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17927), 2, + sym__newline, + anon_sym_SEMI, + [371631] = 3, + ACTIONS(17929), 1, + anon_sym_AMP, + STATE(12304), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371642] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8197), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371653] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13578), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [371662] = 3, + ACTIONS(9325), 1, + anon_sym_COLON, + ACTIONS(10696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371673] = 3, + ACTIONS(17931), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371684] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5913), 2, + sym__dedent, + anon_sym_case, + [371693] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17933), 2, + sym__newline, + anon_sym_SEMI, + [371702] = 3, + ACTIONS(17477), 1, + anon_sym_COMMA, + ACTIONS(17935), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371713] = 3, + ACTIONS(17937), 1, + sym_integer, + ACTIONS(17939), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371724] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(12645), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371735] = 3, + ACTIONS(17941), 1, + anon_sym_AMP, + STATE(12435), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371746] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17943), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [371755] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5934), 2, + sym__dedent, + anon_sym_case, + [371764] = 3, + ACTIONS(17945), 1, + sym_string_start, + STATE(12607), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371775] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17947), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [371784] = 3, + ACTIONS(17949), 1, + sym_identifier, + ACTIONS(17951), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371795] = 3, + ACTIONS(17953), 1, + sym_integer, + ACTIONS(17955), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371806] = 3, + ACTIONS(17957), 1, + anon_sym_COMMA, + STATE(10179), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371817] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14044), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [371826] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17959), 2, + sym__newline, + anon_sym_SEMI, + [371835] = 3, + ACTIONS(17961), 1, + anon_sym_DOT, + ACTIONS(17963), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371846] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_COMMA, + anon_sym_COLON, + [371855] = 3, + ACTIONS(17965), 1, + anon_sym_AMP, + STATE(12330), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371866] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17967), 2, + sym__newline, + anon_sym_SEMI, + [371875] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17969), 2, + sym__newline, + anon_sym_SEMI, + [371884] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17971), 2, + sym__dedent, + anon_sym_case, + [371893] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17973), 2, + sym__dedent, + anon_sym_case, + [371902] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17925), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [371911] = 3, + ACTIONS(10764), 1, + anon_sym_LPAREN, + STATE(8569), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371922] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17975), 2, + anon_sym__, + sym_identifier, + [371931] = 3, + ACTIONS(17977), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371942] = 3, + ACTIONS(17979), 1, + sym_integer, + ACTIONS(17981), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371953] = 3, + ACTIONS(17983), 1, + sym_integer, + ACTIONS(17985), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371964] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15755), 2, + anon_sym_COMMA, + anon_sym_COLON, + [371973] = 3, + ACTIONS(17945), 1, + sym_string_start, + STATE(12715), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [371984] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15990), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [371993] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14388), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372002] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13616), 2, + sym__newline, + anon_sym_SEMI, + [372011] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17987), 2, + sym__newline, + anon_sym_SEMI, + [372020] = 3, + ACTIONS(17989), 1, + anon_sym_DOT, + ACTIONS(17991), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372031] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17993), 2, + sym__dedent, + anon_sym_case, + [372040] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372049] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8247), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372060] = 3, + ACTIONS(17995), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372071] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17733), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372080] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17997), 2, + sym__dedent, + anon_sym_case, + [372089] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17999), 2, + anon_sym__, + sym_identifier, + [372098] = 3, + ACTIONS(17913), 1, + sym_identifier, + ACTIONS(18001), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372109] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16779), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372118] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16785), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372127] = 3, + ACTIONS(18003), 1, + anon_sym_DOT, + ACTIONS(18005), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372138] = 3, + ACTIONS(18007), 1, + sym_integer, + ACTIONS(18009), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372149] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8199), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372160] = 3, + ACTIONS(18011), 1, + sym_integer, + ACTIONS(18013), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372171] = 3, + ACTIONS(18015), 1, + sym_integer, + ACTIONS(18017), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372182] = 3, + ACTIONS(18019), 1, + anon_sym_DOT, + ACTIONS(18021), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372193] = 3, + ACTIONS(18023), 1, + anon_sym_COLON, + ACTIONS(18025), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372204] = 3, + ACTIONS(18027), 1, + anon_sym_DOT, + ACTIONS(18029), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372215] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16326), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372224] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 2, + sym__newline, + anon_sym_SEMI, + [372233] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18031), 2, + sym__dedent, + anon_sym_case, + [372242] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17925), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372251] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18033), 2, + sym__dedent, + anon_sym_case, + [372260] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18035), 2, + sym__dedent, + anon_sym_case, + [372269] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18037), 2, + sym__newline, + anon_sym_SEMI, + [372278] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372287] = 3, + ACTIONS(18039), 1, + sym_integer, + ACTIONS(18041), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372298] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5919), 2, + sym__dedent, + anon_sym_case, + [372307] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(15075), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372316] = 3, + ACTIONS(18043), 1, + anon_sym_DOT, + ACTIONS(18045), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372327] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372336] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18047), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372345] = 3, + ACTIONS(16983), 1, + anon_sym_COMMA, + ACTIONS(18049), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372356] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16779), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372365] = 3, + ACTIONS(18051), 1, + anon_sym_LPAREN, + STATE(7283), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372376] = 3, + ACTIONS(18053), 1, + anon_sym_LPAREN, + STATE(7453), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372387] = 3, + ACTIONS(18055), 1, + anon_sym_LPAREN, + STATE(7593), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372398] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14078), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372407] = 3, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12531), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372418] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(12726), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372429] = 3, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12747), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372440] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372449] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18057), 2, + sym__dedent, + anon_sym_case, + [372458] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8246), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372469] = 3, + ACTIONS(18059), 1, + anon_sym_LPAREN, + STATE(7044), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372480] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18061), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372489] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372498] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18065), 2, + anon_sym__, + sym_identifier, + [372507] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8250), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372518] = 3, + ACTIONS(18067), 1, + sym_integer, + ACTIONS(18069), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372529] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18071), 2, + sym__newline, + anon_sym_SEMI, + [372538] = 3, + ACTIONS(18073), 1, + anon_sym_LPAREN, + STATE(7747), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372549] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372558] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18075), 2, + sym__newline, + anon_sym_SEMI, + [372567] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16895), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372576] = 3, + ACTIONS(18077), 1, + anon_sym_LPAREN, + STATE(7123), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372587] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10739), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372596] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17002), 2, + sym__newline, + anon_sym_SEMI, + [372605] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13489), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372614] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10781), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372623] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18079), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372632] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18081), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372641] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17367), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372650] = 3, + ACTIONS(18083), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372661] = 3, + ACTIONS(18086), 1, + sym_integer, + ACTIONS(18088), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372672] = 3, + ACTIONS(17945), 1, + sym_string_start, + STATE(12495), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372683] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18090), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372692] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18092), 2, + sym__newline, + anon_sym_SEMI, + [372701] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(16785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372710] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18094), 2, + sym__dedent, + anon_sym_case, + [372719] = 3, + ACTIONS(18096), 1, + sym_identifier, + ACTIONS(18098), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372730] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17424), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372739] = 3, + ACTIONS(18100), 1, + anon_sym_LPAREN, + STATE(7684), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372750] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14427), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [372759] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18102), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [372768] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8353), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372779] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5940), 2, + sym__dedent, + anon_sym_case, + [372788] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14644), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372797] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18104), 2, + sym__dedent, + anon_sym_case, + [372806] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18106), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372815] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8306), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372826] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18108), 2, + sym__newline, + anon_sym_SEMI, + [372835] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18110), 2, + sym__newline, + anon_sym_SEMI, + [372844] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8254), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372855] = 3, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(8611), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372866] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13424), 2, + sym__newline, + anon_sym_SEMI, + [372875] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18112), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372884] = 3, + ACTIONS(18114), 1, + anon_sym_AMP, + STATE(12428), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372895] = 3, + ACTIONS(18116), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372906] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17367), 2, + anon_sym_COMMA, + anon_sym_COLON, + [372915] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18118), 2, + sym__dedent, + anon_sym_case, + [372924] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18120), 2, + sym__newline, + anon_sym_SEMI, + [372933] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18122), 2, + sym__newline, + anon_sym_SEMI, + [372942] = 3, + ACTIONS(18124), 1, + sym_identifier, + ACTIONS(18126), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372953] = 3, + ACTIONS(18128), 1, + sym_identifier, + ACTIONS(18130), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372964] = 3, + ACTIONS(18132), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372975] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10781), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [372984] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8359), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [372995] = 3, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(8632), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373006] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18134), 2, + sym__dedent, + anon_sym_case, + [373015] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(17183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [373024] = 3, + ACTIONS(17945), 1, + sym_string_start, + STATE(12560), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373035] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18136), 2, + sym__newline, + anon_sym_SEMI, + [373044] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18138), 2, + sym__dedent, + anon_sym_case, + [373053] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10779), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [373062] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8265), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373073] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18140), 2, + sym__newline, + anon_sym_SEMI, + [373082] = 3, + ACTIONS(18142), 1, + sym_integer, + ACTIONS(18144), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373093] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18146), 2, + sym__newline, + anon_sym_SEMI, + [373102] = 3, + ACTIONS(18148), 1, + anon_sym_LPAREN, + STATE(7170), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373113] = 3, + ACTIONS(18150), 1, + anon_sym_AMP, + STATE(12451), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373124] = 3, + ACTIONS(18152), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373135] = 3, + ACTIONS(18154), 1, + anon_sym_AMP, + STATE(12453), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373146] = 3, + ACTIONS(18156), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373157] = 3, + ACTIONS(15861), 1, + anon_sym_LPAREN, + STATE(8267), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373168] = 3, + ACTIONS(18158), 1, + sym_integer, + ACTIONS(18160), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373179] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(14904), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [373188] = 3, + ACTIONS(18162), 1, + anon_sym_AMP, + STATE(12459), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373199] = 3, + ACTIONS(10698), 1, + anon_sym_COLON, + ACTIONS(10700), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373210] = 3, + ACTIONS(18164), 1, + anon_sym_AMP, + STATE(12403), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373221] = 3, + ACTIONS(16444), 1, + anon_sym_LPAREN, + STATE(12745), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373232] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(18166), 2, + anon_sym__, + sym_identifier, + [373241] = 2, + ACTIONS(18168), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373249] = 2, + ACTIONS(13729), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373257] = 2, + ACTIONS(18170), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373265] = 2, + ACTIONS(18172), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373273] = 2, + ACTIONS(13349), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373281] = 2, + ACTIONS(18174), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373289] = 2, + ACTIONS(18176), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373297] = 2, + ACTIONS(10725), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373305] = 2, + ACTIONS(18178), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373313] = 2, + ACTIONS(18180), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373321] = 2, + ACTIONS(18182), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373329] = 2, + ACTIONS(18184), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373337] = 2, + ACTIONS(18186), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373345] = 2, + ACTIONS(18188), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373353] = 2, + ACTIONS(18190), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373361] = 2, + ACTIONS(5871), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373369] = 2, + ACTIONS(18192), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373377] = 2, + ACTIONS(9347), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373385] = 2, + ACTIONS(18194), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373393] = 2, + ACTIONS(18196), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373401] = 2, + ACTIONS(18198), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373409] = 2, + ACTIONS(18200), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373417] = 2, + ACTIONS(18202), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373425] = 2, + ACTIONS(18204), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373433] = 2, + ACTIONS(18206), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373441] = 2, + ACTIONS(10727), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373449] = 2, + ACTIONS(18208), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373457] = 2, + ACTIONS(18210), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373465] = 2, + ACTIONS(18212), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373473] = 2, + ACTIONS(17299), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373481] = 2, + ACTIONS(13445), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373489] = 2, + ACTIONS(18214), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373497] = 2, + ACTIONS(18216), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373505] = 2, + ACTIONS(18218), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373513] = 2, + ACTIONS(13376), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373521] = 2, + ACTIONS(18220), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373529] = 2, + ACTIONS(13274), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373537] = 2, + ACTIONS(18222), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373545] = 2, + ACTIONS(18224), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373553] = 2, + ACTIONS(13721), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373561] = 2, + ACTIONS(18226), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373569] = 2, + ACTIONS(18228), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373577] = 2, + ACTIONS(18230), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373585] = 2, + ACTIONS(18232), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373593] = 2, + ACTIONS(18234), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373601] = 2, + ACTIONS(18236), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373609] = 2, + ACTIONS(18238), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373617] = 2, + ACTIONS(18240), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373625] = 2, + ACTIONS(13359), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373633] = 2, + ACTIONS(18242), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373641] = 2, + ACTIONS(18244), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373649] = 2, + ACTIONS(14122), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373657] = 2, + ACTIONS(18246), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373665] = 2, + ACTIONS(10720), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373673] = 2, + ACTIONS(18248), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373681] = 2, + ACTIONS(17213), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373689] = 2, + ACTIONS(18250), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373697] = 2, + ACTIONS(18252), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373705] = 2, + ACTIONS(18254), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373713] = 2, + ACTIONS(18256), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373721] = 2, + ACTIONS(13298), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373729] = 2, + ACTIONS(18258), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373737] = 2, + ACTIONS(18260), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373745] = 2, + ACTIONS(18262), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373753] = 2, + ACTIONS(18264), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373761] = 2, + ACTIONS(18266), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373769] = 2, + ACTIONS(14086), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373777] = 2, + ACTIONS(13991), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373785] = 2, + ACTIONS(18268), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373793] = 2, + ACTIONS(18270), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373801] = 2, + ACTIONS(9367), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373809] = 2, + ACTIONS(18272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373817] = 2, + ACTIONS(18274), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373825] = 2, + ACTIONS(18276), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373833] = 2, + ACTIONS(18278), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373841] = 2, + ACTIONS(10729), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373849] = 2, + ACTIONS(18280), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373857] = 2, + ACTIONS(18282), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373865] = 2, + ACTIONS(18284), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373873] = 2, + ACTIONS(18286), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373881] = 2, + ACTIONS(18288), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373889] = 2, + ACTIONS(18290), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373897] = 2, + ACTIONS(18292), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373905] = 2, + ACTIONS(18294), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373913] = 2, + ACTIONS(18296), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373921] = 2, + ACTIONS(18298), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373929] = 2, + ACTIONS(18300), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373937] = 2, + ACTIONS(10496), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373945] = 2, + ACTIONS(18302), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373953] = 2, + ACTIONS(18304), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373961] = 2, + ACTIONS(18306), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373969] = 2, + ACTIONS(18308), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373977] = 2, + ACTIONS(18310), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373985] = 2, + ACTIONS(10702), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [373993] = 2, + ACTIONS(18312), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374001] = 2, + ACTIONS(13469), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374009] = 2, + ACTIONS(18314), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374017] = 2, + ACTIONS(13341), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374025] = 2, + ACTIONS(18316), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374033] = 2, + ACTIONS(18318), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374041] = 2, + ACTIONS(18320), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374049] = 2, + ACTIONS(18322), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374057] = 2, + ACTIONS(10716), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374065] = 2, + ACTIONS(18324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374073] = 2, + ACTIONS(18326), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374081] = 2, + ACTIONS(18328), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374089] = 2, + ACTIONS(13332), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374097] = 2, + ACTIONS(18330), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374105] = 2, + ACTIONS(18332), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374113] = 2, + ACTIONS(18334), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374121] = 2, + ACTIONS(18336), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374129] = 2, + ACTIONS(18338), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374137] = 2, + ACTIONS(18340), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374145] = 2, + ACTIONS(18342), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374153] = 2, + ACTIONS(18344), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374161] = 2, + ACTIONS(18346), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374169] = 2, + ACTIONS(18348), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374177] = 2, + ACTIONS(18350), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374185] = 2, + ACTIONS(18352), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374193] = 2, + ACTIONS(18354), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374201] = 2, + ACTIONS(18356), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374209] = 2, + ACTIONS(18358), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374217] = 2, + ACTIONS(18360), 1, + anon_sym_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374225] = 2, + ACTIONS(13793), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374233] = 2, + ACTIONS(18362), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374241] = 2, + ACTIONS(18364), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374249] = 2, + ACTIONS(18366), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374257] = 2, + ACTIONS(18368), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374265] = 2, + ACTIONS(18370), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374273] = 2, + ACTIONS(18372), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374281] = 2, + ACTIONS(14108), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374289] = 2, + ACTIONS(18374), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374297] = 2, + ACTIONS(13290), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374305] = 2, + ACTIONS(13355), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374313] = 2, + ACTIONS(18376), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374321] = 2, + ACTIONS(18378), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374329] = 2, + ACTIONS(18380), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374337] = 2, + ACTIONS(18382), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374345] = 2, + ACTIONS(18384), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374353] = 2, + ACTIONS(10706), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374361] = 2, + ACTIONS(13378), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374369] = 2, + ACTIONS(18386), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374377] = 2, + ACTIONS(18388), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374385] = 2, + ACTIONS(18390), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374393] = 2, + ACTIONS(13322), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374401] = 2, + ACTIONS(18392), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374409] = 2, + ACTIONS(18394), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374417] = 2, + ACTIONS(18396), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374425] = 2, + ACTIONS(18398), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374433] = 2, + ACTIONS(18400), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374441] = 2, + ACTIONS(14056), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374449] = 2, + ACTIONS(10733), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374457] = 2, + ACTIONS(18402), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374465] = 2, + ACTIONS(18404), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374473] = 2, + ACTIONS(18406), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374481] = 2, + ACTIONS(18408), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374489] = 2, + ACTIONS(18410), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374497] = 2, + ACTIONS(18412), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374505] = 2, + ACTIONS(18414), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374513] = 2, + ACTIONS(18416), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374521] = 2, + ACTIONS(18418), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374529] = 2, + ACTIONS(18420), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374537] = 2, + ACTIONS(18422), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374545] = 2, + ACTIONS(18424), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374553] = 2, + ACTIONS(18426), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374561] = 2, + ACTIONS(18428), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374569] = 2, + ACTIONS(18430), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374577] = 2, + ACTIONS(18432), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374585] = 2, + ACTIONS(18434), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374593] = 2, + ACTIONS(18436), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374601] = 2, + ACTIONS(18438), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374609] = 2, + ACTIONS(14110), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374617] = 2, + ACTIONS(13296), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374625] = 2, + ACTIONS(18440), 1, + anon_sym_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374633] = 2, + ACTIONS(18442), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374641] = 2, + ACTIONS(17913), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374649] = 2, + ACTIONS(18444), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374657] = 2, + ACTIONS(18446), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374665] = 2, + ACTIONS(18448), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374673] = 2, + ACTIONS(18450), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374681] = 2, + ACTIONS(13483), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374689] = 2, + ACTIONS(18452), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374697] = 2, + ACTIONS(18454), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374705] = 2, + ACTIONS(18456), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374713] = 2, + ACTIONS(18458), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374721] = 2, + ACTIONS(18460), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374729] = 2, + ACTIONS(14011), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374737] = 2, + ACTIONS(18462), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374745] = 2, + ACTIONS(18464), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374753] = 2, + ACTIONS(18466), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374761] = 2, + ACTIONS(10704), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374769] = 2, + ACTIONS(13873), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374777] = 2, + ACTIONS(13326), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374785] = 2, + ACTIONS(18468), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374793] = 2, + ACTIONS(18470), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374801] = 2, + ACTIONS(18472), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374809] = 2, + ACTIONS(18474), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374817] = 2, + ACTIONS(18476), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374825] = 2, + ACTIONS(18478), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374833] = 2, + ACTIONS(18480), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374841] = 2, + ACTIONS(17526), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374849] = 2, + ACTIONS(13420), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374857] = 2, + ACTIONS(18482), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374865] = 2, + ACTIONS(18484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374873] = 2, + ACTIONS(18486), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374881] = 2, + ACTIONS(18488), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374889] = 2, + ACTIONS(18490), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374897] = 2, + ACTIONS(18492), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374905] = 2, + ACTIONS(18494), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374913] = 2, + ACTIONS(18496), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374921] = 2, + ACTIONS(18498), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374929] = 2, + ACTIONS(18500), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374937] = 2, + ACTIONS(18502), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374945] = 2, + ACTIONS(18504), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374953] = 2, + ACTIONS(18506), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374961] = 2, + ACTIONS(18508), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374969] = 2, + ACTIONS(18510), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374977] = 2, + ACTIONS(16895), 1, + anon_sym_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374985] = 2, + ACTIONS(18512), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [374993] = 2, + ACTIONS(10712), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375001] = 2, + ACTIONS(18514), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375009] = 2, + ACTIONS(18516), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375017] = 2, + ACTIONS(18518), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375025] = 2, + ACTIONS(18520), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375033] = 2, + ACTIONS(18522), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375041] = 2, + ACTIONS(18524), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375049] = 2, + ACTIONS(18526), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375057] = 2, + ACTIONS(10735), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375065] = 2, + ACTIONS(18528), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375073] = 2, + ACTIONS(18530), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375081] = 2, + ACTIONS(18532), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375089] = 2, + ACTIONS(18534), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375097] = 2, + ACTIONS(18536), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375105] = 2, + ACTIONS(18538), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375113] = 2, + ACTIONS(10737), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375121] = 2, + ACTIONS(18540), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375129] = 2, + ACTIONS(18542), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375137] = 2, + ACTIONS(18544), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375145] = 2, + ACTIONS(13345), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375153] = 2, + ACTIONS(10710), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375161] = 2, + ACTIONS(13399), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375169] = 2, + ACTIONS(10731), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375177] = 2, + ACTIONS(18546), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375185] = 2, + ACTIONS(18548), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375193] = 2, + ACTIONS(18550), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375201] = 2, + ACTIONS(13911), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375209] = 2, + ACTIONS(18552), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375217] = 2, + ACTIONS(18554), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375225] = 2, + ACTIONS(18556), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375233] = 2, + ACTIONS(18558), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375241] = 2, + ACTIONS(18560), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375249] = 2, + ACTIONS(18562), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375257] = 2, + ACTIONS(18564), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375265] = 2, + ACTIONS(18566), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375273] = 2, + ACTIONS(14015), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375281] = 2, + ACTIONS(18568), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375289] = 2, + ACTIONS(18570), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375297] = 2, + ACTIONS(18572), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375305] = 2, + ACTIONS(18574), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375313] = 2, + ACTIONS(18576), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375321] = 2, + ACTIONS(18578), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375329] = 2, + ACTIONS(18580), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375337] = 2, + ACTIONS(18582), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375345] = 2, + ACTIONS(18584), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375353] = 2, + ACTIONS(18586), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375361] = 2, + ACTIONS(18588), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375369] = 2, + ACTIONS(18590), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375377] = 2, + ACTIONS(18592), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375385] = 2, + ACTIONS(18594), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375393] = 2, + ACTIONS(18596), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375401] = 2, + ACTIONS(18598), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375409] = 2, + ACTIONS(18600), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375417] = 2, + ACTIONS(18602), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375425] = 2, + ACTIONS(13328), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375433] = 2, + ACTIONS(18604), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375441] = 2, + ACTIONS(18606), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375449] = 2, + ACTIONS(13936), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375457] = 2, + ACTIONS(18608), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375465] = 2, + ACTIONS(18610), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375473] = 2, + ACTIONS(18612), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375481] = 2, + ACTIONS(18614), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375489] = 2, + ACTIONS(18616), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375497] = 2, + ACTIONS(18618), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375505] = 2, + ACTIONS(18620), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375513] = 2, + ACTIONS(18622), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375521] = 2, + ACTIONS(18624), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375529] = 2, + ACTIONS(18626), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375537] = 2, + ACTIONS(18628), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375545] = 2, + ACTIONS(17012), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375553] = 2, + ACTIONS(18630), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375561] = 2, + ACTIONS(18632), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375569] = 2, + ACTIONS(18634), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375577] = 2, + ACTIONS(18636), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375585] = 2, + ACTIONS(18638), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375593] = 2, + ACTIONS(18640), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [375601] = 2, + ACTIONS(10718), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(3884)] = 0, + [SMALL_STATE(3885)] = 121, + [SMALL_STATE(3886)] = 244, + [SMALL_STATE(3887)] = 365, + [SMALL_STATE(3888)] = 476, + [SMALL_STATE(3889)] = 599, + [SMALL_STATE(3890)] = 710, + [SMALL_STATE(3891)] = 833, + [SMALL_STATE(3892)] = 954, + [SMALL_STATE(3893)] = 1077, + [SMALL_STATE(3894)] = 1200, + [SMALL_STATE(3895)] = 1323, + [SMALL_STATE(3896)] = 1444, + [SMALL_STATE(3897)] = 1565, + [SMALL_STATE(3898)] = 1688, + [SMALL_STATE(3899)] = 1811, + [SMALL_STATE(3900)] = 1932, + [SMALL_STATE(3901)] = 2050, + [SMALL_STATE(3902)] = 2170, + [SMALL_STATE(3903)] = 2290, + [SMALL_STATE(3904)] = 2410, + [SMALL_STATE(3905)] = 2530, + [SMALL_STATE(3906)] = 2654, + [SMALL_STATE(3907)] = 2764, + [SMALL_STATE(3908)] = 2884, + [SMALL_STATE(3909)] = 3004, + [SMALL_STATE(3910)] = 3078, + [SMALL_STATE(3911)] = 3196, + [SMALL_STATE(3912)] = 3314, + [SMALL_STATE(3913)] = 3434, + [SMALL_STATE(3914)] = 3508, + [SMALL_STATE(3915)] = 3626, + [SMALL_STATE(3916)] = 3706, + [SMALL_STATE(3917)] = 3786, + [SMALL_STATE(3918)] = 3904, + [SMALL_STATE(3919)] = 4022, + [SMALL_STATE(3920)] = 4142, + [SMALL_STATE(3921)] = 4216, + [SMALL_STATE(3922)] = 4290, + [SMALL_STATE(3923)] = 4408, + [SMALL_STATE(3924)] = 4526, + [SMALL_STATE(3925)] = 4646, + [SMALL_STATE(3926)] = 4764, + [SMALL_STATE(3927)] = 4882, + [SMALL_STATE(3928)] = 5002, + [SMALL_STATE(3929)] = 5112, + [SMALL_STATE(3930)] = 5232, + [SMALL_STATE(3931)] = 5342, + [SMALL_STATE(3932)] = 5462, + [SMALL_STATE(3933)] = 5580, + [SMALL_STATE(3934)] = 5698, + [SMALL_STATE(3935)] = 5816, + [SMALL_STATE(3936)] = 5934, + [SMALL_STATE(3937)] = 6044, + [SMALL_STATE(3938)] = 6162, + [SMALL_STATE(3939)] = 6280, + [SMALL_STATE(3940)] = 6398, + [SMALL_STATE(3941)] = 6518, + [SMALL_STATE(3942)] = 6598, + [SMALL_STATE(3943)] = 6716, + [SMALL_STATE(3944)] = 6834, + [SMALL_STATE(3945)] = 6952, + [SMALL_STATE(3946)] = 7032, + [SMALL_STATE(3947)] = 7156, + [SMALL_STATE(3948)] = 7274, + [SMALL_STATE(3949)] = 7392, + [SMALL_STATE(3950)] = 7516, + [SMALL_STATE(3951)] = 7596, + [SMALL_STATE(3952)] = 7714, + [SMALL_STATE(3953)] = 7834, + [SMALL_STATE(3954)] = 7952, + [SMALL_STATE(3955)] = 8072, + [SMALL_STATE(3956)] = 8192, + [SMALL_STATE(3957)] = 8312, + [SMALL_STATE(3958)] = 8432, + [SMALL_STATE(3959)] = 8552, + [SMALL_STATE(3960)] = 8672, + [SMALL_STATE(3961)] = 8792, + [SMALL_STATE(3962)] = 8910, + [SMALL_STATE(3963)] = 9028, + [SMALL_STATE(3964)] = 9148, + [SMALL_STATE(3965)] = 9268, + [SMALL_STATE(3966)] = 9390, + [SMALL_STATE(3967)] = 9510, + [SMALL_STATE(3968)] = 9628, + [SMALL_STATE(3969)] = 9748, + [SMALL_STATE(3970)] = 9868, + [SMALL_STATE(3971)] = 9988, + [SMALL_STATE(3972)] = 10110, + [SMALL_STATE(3973)] = 10230, + [SMALL_STATE(3974)] = 10350, + [SMALL_STATE(3975)] = 10470, + [SMALL_STATE(3976)] = 10590, + [SMALL_STATE(3977)] = 10714, + [SMALL_STATE(3978)] = 10838, + [SMALL_STATE(3979)] = 10956, + [SMALL_STATE(3980)] = 11074, + [SMALL_STATE(3981)] = 11154, + [SMALL_STATE(3982)] = 11234, + [SMALL_STATE(3983)] = 11358, + [SMALL_STATE(3984)] = 11478, + [SMALL_STATE(3985)] = 11598, + [SMALL_STATE(3986)] = 11716, + [SMALL_STATE(3987)] = 11836, + [SMALL_STATE(3988)] = 11956, + [SMALL_STATE(3989)] = 12036, + [SMALL_STATE(3990)] = 12156, + [SMALL_STATE(3991)] = 12274, + [SMALL_STATE(3992)] = 12392, + [SMALL_STATE(3993)] = 12516, + [SMALL_STATE(3994)] = 12640, + [SMALL_STATE(3995)] = 12764, + [SMALL_STATE(3996)] = 12888, + [SMALL_STATE(3997)] = 13008, + [SMALL_STATE(3998)] = 13125, + [SMALL_STATE(3999)] = 13242, + [SMALL_STATE(4000)] = 13359, + [SMALL_STATE(4001)] = 13476, + [SMALL_STATE(4002)] = 13593, + [SMALL_STATE(4003)] = 13710, + [SMALL_STATE(4004)] = 13827, + [SMALL_STATE(4005)] = 13896, + [SMALL_STATE(4006)] = 13965, + [SMALL_STATE(4007)] = 14034, + [SMALL_STATE(4008)] = 14151, + [SMALL_STATE(4009)] = 14226, + [SMALL_STATE(4010)] = 14343, + [SMALL_STATE(4011)] = 14412, + [SMALL_STATE(4012)] = 14529, + [SMALL_STATE(4013)] = 14598, + [SMALL_STATE(4014)] = 14717, + [SMALL_STATE(4015)] = 14834, + [SMALL_STATE(4016)] = 14903, + [SMALL_STATE(4017)] = 15020, + [SMALL_STATE(4018)] = 15139, + [SMALL_STATE(4019)] = 15256, + [SMALL_STATE(4020)] = 15373, + [SMALL_STATE(4021)] = 15490, + [SMALL_STATE(4022)] = 15609, + [SMALL_STATE(4023)] = 15726, + [SMALL_STATE(4024)] = 15843, + [SMALL_STATE(4025)] = 15962, + [SMALL_STATE(4026)] = 16081, + [SMALL_STATE(4027)] = 16200, + [SMALL_STATE(4028)] = 16317, + [SMALL_STATE(4029)] = 16434, + [SMALL_STATE(4030)] = 16553, + [SMALL_STATE(4031)] = 16670, + [SMALL_STATE(4032)] = 16739, + [SMALL_STATE(4033)] = 16856, + [SMALL_STATE(4034)] = 16973, + [SMALL_STATE(4035)] = 17042, + [SMALL_STATE(4036)] = 17159, + [SMALL_STATE(4037)] = 17276, + [SMALL_STATE(4038)] = 17393, + [SMALL_STATE(4039)] = 17512, + [SMALL_STATE(4040)] = 17631, + [SMALL_STATE(4041)] = 17748, + [SMALL_STATE(4042)] = 17867, + [SMALL_STATE(4043)] = 17986, + [SMALL_STATE(4044)] = 18105, + [SMALL_STATE(4045)] = 18224, + [SMALL_STATE(4046)] = 18341, + [SMALL_STATE(4047)] = 18458, + [SMALL_STATE(4048)] = 18575, + [SMALL_STATE(4049)] = 18692, + [SMALL_STATE(4050)] = 18809, + [SMALL_STATE(4051)] = 18926, + [SMALL_STATE(4052)] = 19043, + [SMALL_STATE(4053)] = 19162, + [SMALL_STATE(4054)] = 19281, + [SMALL_STATE(4055)] = 19398, + [SMALL_STATE(4056)] = 19515, + [SMALL_STATE(4057)] = 19584, + [SMALL_STATE(4058)] = 19701, + [SMALL_STATE(4059)] = 19818, + [SMALL_STATE(4060)] = 19935, + [SMALL_STATE(4061)] = 20052, + [SMALL_STATE(4062)] = 20121, + [SMALL_STATE(4063)] = 20196, + [SMALL_STATE(4064)] = 20313, + [SMALL_STATE(4065)] = 20430, + [SMALL_STATE(4066)] = 20547, + [SMALL_STATE(4067)] = 20673, + [SMALL_STATE(4068)] = 20787, + [SMALL_STATE(4069)] = 20901, + [SMALL_STATE(4070)] = 21015, + [SMALL_STATE(4071)] = 21129, + [SMALL_STATE(4072)] = 21197, + [SMALL_STATE(4073)] = 21265, + [SMALL_STATE(4074)] = 21333, + [SMALL_STATE(4075)] = 21447, + [SMALL_STATE(4076)] = 21561, + [SMALL_STATE(4077)] = 21675, + [SMALL_STATE(4078)] = 21789, + [SMALL_STATE(4079)] = 21903, + [SMALL_STATE(4080)] = 22017, + [SMALL_STATE(4081)] = 22131, + [SMALL_STATE(4082)] = 22199, + [SMALL_STATE(4083)] = 22313, + [SMALL_STATE(4084)] = 22381, + [SMALL_STATE(4085)] = 22495, + [SMALL_STATE(4086)] = 22609, + [SMALL_STATE(4087)] = 22725, + [SMALL_STATE(4088)] = 22839, + [SMALL_STATE(4089)] = 22953, + [SMALL_STATE(4090)] = 23067, + [SMALL_STATE(4091)] = 23181, + [SMALL_STATE(4092)] = 23295, + [SMALL_STATE(4093)] = 23409, + [SMALL_STATE(4094)] = 23523, + [SMALL_STATE(4095)] = 23637, + [SMALL_STATE(4096)] = 23705, + [SMALL_STATE(4097)] = 23819, + [SMALL_STATE(4098)] = 23933, + [SMALL_STATE(4099)] = 24047, + [SMALL_STATE(4100)] = 24161, + [SMALL_STATE(4101)] = 24275, + [SMALL_STATE(4102)] = 24389, + [SMALL_STATE(4103)] = 24503, + [SMALL_STATE(4104)] = 24617, + [SMALL_STATE(4105)] = 24731, + [SMALL_STATE(4106)] = 24845, + [SMALL_STATE(4107)] = 24959, + [SMALL_STATE(4108)] = 25073, + [SMALL_STATE(4109)] = 25141, + [SMALL_STATE(4110)] = 25255, + [SMALL_STATE(4111)] = 25369, + [SMALL_STATE(4112)] = 25483, + [SMALL_STATE(4113)] = 25599, + [SMALL_STATE(4114)] = 25713, + [SMALL_STATE(4115)] = 25827, + [SMALL_STATE(4116)] = 25895, + [SMALL_STATE(4117)] = 26009, + [SMALL_STATE(4118)] = 26123, + [SMALL_STATE(4119)] = 26237, + [SMALL_STATE(4120)] = 26305, + [SMALL_STATE(4121)] = 26419, + [SMALL_STATE(4122)] = 26533, + [SMALL_STATE(4123)] = 26647, + [SMALL_STATE(4124)] = 26761, + [SMALL_STATE(4125)] = 26829, + [SMALL_STATE(4126)] = 26943, + [SMALL_STATE(4127)] = 27011, + [SMALL_STATE(4128)] = 27079, + [SMALL_STATE(4129)] = 27147, + [SMALL_STATE(4130)] = 27261, + [SMALL_STATE(4131)] = 27375, + [SMALL_STATE(4132)] = 27491, + [SMALL_STATE(4133)] = 27607, + [SMALL_STATE(4134)] = 27721, + [SMALL_STATE(4135)] = 27835, + [SMALL_STATE(4136)] = 27949, + [SMALL_STATE(4137)] = 28063, + [SMALL_STATE(4138)] = 28177, + [SMALL_STATE(4139)] = 28291, + [SMALL_STATE(4140)] = 28405, + [SMALL_STATE(4141)] = 28473, + [SMALL_STATE(4142)] = 28587, + [SMALL_STATE(4143)] = 28701, + [SMALL_STATE(4144)] = 28815, + [SMALL_STATE(4145)] = 28929, + [SMALL_STATE(4146)] = 29043, + [SMALL_STATE(4147)] = 29157, + [SMALL_STATE(4148)] = 29271, + [SMALL_STATE(4149)] = 29339, + [SMALL_STATE(4150)] = 29453, + [SMALL_STATE(4151)] = 29567, + [SMALL_STATE(4152)] = 29635, + [SMALL_STATE(4153)] = 29749, + [SMALL_STATE(4154)] = 29863, + [SMALL_STATE(4155)] = 29977, + [SMALL_STATE(4156)] = 30091, + [SMALL_STATE(4157)] = 30159, + [SMALL_STATE(4158)] = 30273, + [SMALL_STATE(4159)] = 30387, + [SMALL_STATE(4160)] = 30501, + [SMALL_STATE(4161)] = 30615, + [SMALL_STATE(4162)] = 30683, + [SMALL_STATE(4163)] = 30797, + [SMALL_STATE(4164)] = 30911, + [SMALL_STATE(4165)] = 31025, + [SMALL_STATE(4166)] = 31139, + [SMALL_STATE(4167)] = 31253, + [SMALL_STATE(4168)] = 31367, + [SMALL_STATE(4169)] = 31481, + [SMALL_STATE(4170)] = 31595, + [SMALL_STATE(4171)] = 31709, + [SMALL_STATE(4172)] = 31823, + [SMALL_STATE(4173)] = 31937, + [SMALL_STATE(4174)] = 32051, + [SMALL_STATE(4175)] = 32165, + [SMALL_STATE(4176)] = 32233, + [SMALL_STATE(4177)] = 32347, + [SMALL_STATE(4178)] = 32461, + [SMALL_STATE(4179)] = 32575, + [SMALL_STATE(4180)] = 32689, + [SMALL_STATE(4181)] = 32803, + [SMALL_STATE(4182)] = 32917, + [SMALL_STATE(4183)] = 33031, + [SMALL_STATE(4184)] = 33145, + [SMALL_STATE(4185)] = 33259, + [SMALL_STATE(4186)] = 33375, + [SMALL_STATE(4187)] = 33443, + [SMALL_STATE(4188)] = 33557, + [SMALL_STATE(4189)] = 33671, + [SMALL_STATE(4190)] = 33785, + [SMALL_STATE(4191)] = 33853, + [SMALL_STATE(4192)] = 33921, + [SMALL_STATE(4193)] = 34035, + [SMALL_STATE(4194)] = 34149, + [SMALL_STATE(4195)] = 34263, + [SMALL_STATE(4196)] = 34377, + [SMALL_STATE(4197)] = 34491, + [SMALL_STATE(4198)] = 34559, + [SMALL_STATE(4199)] = 34673, + [SMALL_STATE(4200)] = 34741, + [SMALL_STATE(4201)] = 34855, + [SMALL_STATE(4202)] = 34969, + [SMALL_STATE(4203)] = 35083, + [SMALL_STATE(4204)] = 35151, + [SMALL_STATE(4205)] = 35265, + [SMALL_STATE(4206)] = 35379, + [SMALL_STATE(4207)] = 35493, + [SMALL_STATE(4208)] = 35607, + [SMALL_STATE(4209)] = 35721, + [SMALL_STATE(4210)] = 35835, + [SMALL_STATE(4211)] = 35949, + [SMALL_STATE(4212)] = 36063, + [SMALL_STATE(4213)] = 36177, + [SMALL_STATE(4214)] = 36291, + [SMALL_STATE(4215)] = 36405, + [SMALL_STATE(4216)] = 36519, + [SMALL_STATE(4217)] = 36633, + [SMALL_STATE(4218)] = 36747, + [SMALL_STATE(4219)] = 36861, + [SMALL_STATE(4220)] = 36975, + [SMALL_STATE(4221)] = 37089, + [SMALL_STATE(4222)] = 37203, + [SMALL_STATE(4223)] = 37317, + [SMALL_STATE(4224)] = 37431, + [SMALL_STATE(4225)] = 37545, + [SMALL_STATE(4226)] = 37659, + [SMALL_STATE(4227)] = 37773, + [SMALL_STATE(4228)] = 37841, + [SMALL_STATE(4229)] = 37955, + [SMALL_STATE(4230)] = 38023, + [SMALL_STATE(4231)] = 38137, + [SMALL_STATE(4232)] = 38251, + [SMALL_STATE(4233)] = 38367, + [SMALL_STATE(4234)] = 38481, + [SMALL_STATE(4235)] = 38595, + [SMALL_STATE(4236)] = 38709, + [SMALL_STATE(4237)] = 38823, + [SMALL_STATE(4238)] = 38937, + [SMALL_STATE(4239)] = 39051, + [SMALL_STATE(4240)] = 39165, + [SMALL_STATE(4241)] = 39279, + [SMALL_STATE(4242)] = 39393, + [SMALL_STATE(4243)] = 39507, + [SMALL_STATE(4244)] = 39621, + [SMALL_STATE(4245)] = 39735, + [SMALL_STATE(4246)] = 39849, + [SMALL_STATE(4247)] = 39963, + [SMALL_STATE(4248)] = 40077, + [SMALL_STATE(4249)] = 40191, + [SMALL_STATE(4250)] = 40305, + [SMALL_STATE(4251)] = 40419, + [SMALL_STATE(4252)] = 40535, + [SMALL_STATE(4253)] = 40649, + [SMALL_STATE(4254)] = 40763, + [SMALL_STATE(4255)] = 40877, + [SMALL_STATE(4256)] = 40991, + [SMALL_STATE(4257)] = 41105, + [SMALL_STATE(4258)] = 41221, + [SMALL_STATE(4259)] = 41335, + [SMALL_STATE(4260)] = 41449, + [SMALL_STATE(4261)] = 41563, + [SMALL_STATE(4262)] = 41677, + [SMALL_STATE(4263)] = 41791, + [SMALL_STATE(4264)] = 41917, + [SMALL_STATE(4265)] = 42033, + [SMALL_STATE(4266)] = 42101, + [SMALL_STATE(4267)] = 42215, + [SMALL_STATE(4268)] = 42329, + [SMALL_STATE(4269)] = 42443, + [SMALL_STATE(4270)] = 42557, + [SMALL_STATE(4271)] = 42625, + [SMALL_STATE(4272)] = 42693, + [SMALL_STATE(4273)] = 42807, + [SMALL_STATE(4274)] = 42921, + [SMALL_STATE(4275)] = 43035, + [SMALL_STATE(4276)] = 43149, + [SMALL_STATE(4277)] = 43263, + [SMALL_STATE(4278)] = 43379, + [SMALL_STATE(4279)] = 43493, + [SMALL_STATE(4280)] = 43607, + [SMALL_STATE(4281)] = 43721, + [SMALL_STATE(4282)] = 43788, + [SMALL_STATE(4283)] = 43859, + [SMALL_STATE(4284)] = 43930, + [SMALL_STATE(4285)] = 44001, + [SMALL_STATE(4286)] = 44072, + [SMALL_STATE(4287)] = 44143, + [SMALL_STATE(4288)] = 44210, + [SMALL_STATE(4289)] = 44281, + [SMALL_STATE(4290)] = 44352, + [SMALL_STATE(4291)] = 44419, + [SMALL_STATE(4292)] = 44486, + [SMALL_STATE(4293)] = 44557, + [SMALL_STATE(4294)] = 44628, + [SMALL_STATE(4295)] = 44695, + [SMALL_STATE(4296)] = 44766, + [SMALL_STATE(4297)] = 44837, + [SMALL_STATE(4298)] = 44904, + [SMALL_STATE(4299)] = 44975, + [SMALL_STATE(4300)] = 45046, + [SMALL_STATE(4301)] = 45117, + [SMALL_STATE(4302)] = 45188, + [SMALL_STATE(4303)] = 45259, + [SMALL_STATE(4304)] = 45330, + [SMALL_STATE(4305)] = 45401, + [SMALL_STATE(4306)] = 45472, + [SMALL_STATE(4307)] = 45543, + [SMALL_STATE(4308)] = 45609, + [SMALL_STATE(4309)] = 45675, + [SMALL_STATE(4310)] = 45741, + [SMALL_STATE(4311)] = 45807, + [SMALL_STATE(4312)] = 45872, + [SMALL_STATE(4313)] = 45937, + [SMALL_STATE(4314)] = 46002, + [SMALL_STATE(4315)] = 46067, + [SMALL_STATE(4316)] = 46132, + [SMALL_STATE(4317)] = 46197, + [SMALL_STATE(4318)] = 46262, + [SMALL_STATE(4319)] = 46327, + [SMALL_STATE(4320)] = 46392, + [SMALL_STATE(4321)] = 46457, + [SMALL_STATE(4322)] = 46522, + [SMALL_STATE(4323)] = 46587, + [SMALL_STATE(4324)] = 46652, + [SMALL_STATE(4325)] = 46717, + [SMALL_STATE(4326)] = 46782, + [SMALL_STATE(4327)] = 46847, + [SMALL_STATE(4328)] = 46912, + [SMALL_STATE(4329)] = 46977, + [SMALL_STATE(4330)] = 47042, + [SMALL_STATE(4331)] = 47107, + [SMALL_STATE(4332)] = 47172, + [SMALL_STATE(4333)] = 47237, + [SMALL_STATE(4334)] = 47302, + [SMALL_STATE(4335)] = 47367, + [SMALL_STATE(4336)] = 47432, + [SMALL_STATE(4337)] = 47497, + [SMALL_STATE(4338)] = 47562, + [SMALL_STATE(4339)] = 47627, + [SMALL_STATE(4340)] = 47692, + [SMALL_STATE(4341)] = 47757, + [SMALL_STATE(4342)] = 47822, + [SMALL_STATE(4343)] = 47887, + [SMALL_STATE(4344)] = 47952, + [SMALL_STATE(4345)] = 48017, + [SMALL_STATE(4346)] = 48082, + [SMALL_STATE(4347)] = 48147, + [SMALL_STATE(4348)] = 48212, + [SMALL_STATE(4349)] = 48277, + [SMALL_STATE(4350)] = 48342, + [SMALL_STATE(4351)] = 48407, + [SMALL_STATE(4352)] = 48472, + [SMALL_STATE(4353)] = 48537, + [SMALL_STATE(4354)] = 48602, + [SMALL_STATE(4355)] = 48667, + [SMALL_STATE(4356)] = 48732, + [SMALL_STATE(4357)] = 48797, + [SMALL_STATE(4358)] = 48862, + [SMALL_STATE(4359)] = 48927, + [SMALL_STATE(4360)] = 48992, + [SMALL_STATE(4361)] = 49057, + [SMALL_STATE(4362)] = 49122, + [SMALL_STATE(4363)] = 49187, + [SMALL_STATE(4364)] = 49252, + [SMALL_STATE(4365)] = 49317, + [SMALL_STATE(4366)] = 49382, + [SMALL_STATE(4367)] = 49447, + [SMALL_STATE(4368)] = 49512, + [SMALL_STATE(4369)] = 49577, + [SMALL_STATE(4370)] = 49642, + [SMALL_STATE(4371)] = 49707, + [SMALL_STATE(4372)] = 49772, + [SMALL_STATE(4373)] = 49837, + [SMALL_STATE(4374)] = 49902, + [SMALL_STATE(4375)] = 49967, + [SMALL_STATE(4376)] = 50032, + [SMALL_STATE(4377)] = 50097, + [SMALL_STATE(4378)] = 50162, + [SMALL_STATE(4379)] = 50227, + [SMALL_STATE(4380)] = 50292, + [SMALL_STATE(4381)] = 50357, + [SMALL_STATE(4382)] = 50422, + [SMALL_STATE(4383)] = 50487, + [SMALL_STATE(4384)] = 50552, + [SMALL_STATE(4385)] = 50617, + [SMALL_STATE(4386)] = 50682, + [SMALL_STATE(4387)] = 50747, + [SMALL_STATE(4388)] = 50812, + [SMALL_STATE(4389)] = 50877, + [SMALL_STATE(4390)] = 50942, + [SMALL_STATE(4391)] = 51007, + [SMALL_STATE(4392)] = 51072, + [SMALL_STATE(4393)] = 51137, + [SMALL_STATE(4394)] = 51202, + [SMALL_STATE(4395)] = 51267, + [SMALL_STATE(4396)] = 51332, + [SMALL_STATE(4397)] = 51397, + [SMALL_STATE(4398)] = 51462, + [SMALL_STATE(4399)] = 51527, + [SMALL_STATE(4400)] = 51592, + [SMALL_STATE(4401)] = 51657, + [SMALL_STATE(4402)] = 51722, + [SMALL_STATE(4403)] = 51787, + [SMALL_STATE(4404)] = 51852, + [SMALL_STATE(4405)] = 51917, + [SMALL_STATE(4406)] = 51982, + [SMALL_STATE(4407)] = 52047, + [SMALL_STATE(4408)] = 52112, + [SMALL_STATE(4409)] = 52177, + [SMALL_STATE(4410)] = 52242, + [SMALL_STATE(4411)] = 52307, + [SMALL_STATE(4412)] = 52372, + [SMALL_STATE(4413)] = 52437, + [SMALL_STATE(4414)] = 52502, + [SMALL_STATE(4415)] = 52567, + [SMALL_STATE(4416)] = 52632, + [SMALL_STATE(4417)] = 52697, + [SMALL_STATE(4418)] = 52762, + [SMALL_STATE(4419)] = 52827, + [SMALL_STATE(4420)] = 52892, + [SMALL_STATE(4421)] = 52957, + [SMALL_STATE(4422)] = 53022, + [SMALL_STATE(4423)] = 53087, + [SMALL_STATE(4424)] = 53152, + [SMALL_STATE(4425)] = 53217, + [SMALL_STATE(4426)] = 53282, + [SMALL_STATE(4427)] = 53347, + [SMALL_STATE(4428)] = 53412, + [SMALL_STATE(4429)] = 53477, + [SMALL_STATE(4430)] = 53542, + [SMALL_STATE(4431)] = 53607, + [SMALL_STATE(4432)] = 53672, + [SMALL_STATE(4433)] = 53737, + [SMALL_STATE(4434)] = 53802, + [SMALL_STATE(4435)] = 53867, + [SMALL_STATE(4436)] = 53932, + [SMALL_STATE(4437)] = 53997, + [SMALL_STATE(4438)] = 54062, + [SMALL_STATE(4439)] = 54127, + [SMALL_STATE(4440)] = 54192, + [SMALL_STATE(4441)] = 54257, + [SMALL_STATE(4442)] = 54322, + [SMALL_STATE(4443)] = 54387, + [SMALL_STATE(4444)] = 54452, + [SMALL_STATE(4445)] = 54517, + [SMALL_STATE(4446)] = 54582, + [SMALL_STATE(4447)] = 54647, + [SMALL_STATE(4448)] = 54712, + [SMALL_STATE(4449)] = 54777, + [SMALL_STATE(4450)] = 54842, + [SMALL_STATE(4451)] = 54907, + [SMALL_STATE(4452)] = 54972, + [SMALL_STATE(4453)] = 55037, + [SMALL_STATE(4454)] = 55102, + [SMALL_STATE(4455)] = 55167, + [SMALL_STATE(4456)] = 55232, + [SMALL_STATE(4457)] = 55297, + [SMALL_STATE(4458)] = 55362, + [SMALL_STATE(4459)] = 55427, + [SMALL_STATE(4460)] = 55492, + [SMALL_STATE(4461)] = 55557, + [SMALL_STATE(4462)] = 55622, + [SMALL_STATE(4463)] = 55687, + [SMALL_STATE(4464)] = 55752, + [SMALL_STATE(4465)] = 55817, + [SMALL_STATE(4466)] = 55882, + [SMALL_STATE(4467)] = 55947, + [SMALL_STATE(4468)] = 56012, + [SMALL_STATE(4469)] = 56077, + [SMALL_STATE(4470)] = 56142, + [SMALL_STATE(4471)] = 56207, + [SMALL_STATE(4472)] = 56272, + [SMALL_STATE(4473)] = 56337, + [SMALL_STATE(4474)] = 56402, + [SMALL_STATE(4475)] = 56467, + [SMALL_STATE(4476)] = 56532, + [SMALL_STATE(4477)] = 56597, + [SMALL_STATE(4478)] = 56662, + [SMALL_STATE(4479)] = 56727, + [SMALL_STATE(4480)] = 56792, + [SMALL_STATE(4481)] = 56857, + [SMALL_STATE(4482)] = 56922, + [SMALL_STATE(4483)] = 56987, + [SMALL_STATE(4484)] = 57052, + [SMALL_STATE(4485)] = 57117, + [SMALL_STATE(4486)] = 57182, + [SMALL_STATE(4487)] = 57247, + [SMALL_STATE(4488)] = 57312, + [SMALL_STATE(4489)] = 57377, + [SMALL_STATE(4490)] = 57442, + [SMALL_STATE(4491)] = 57507, + [SMALL_STATE(4492)] = 57572, + [SMALL_STATE(4493)] = 57637, + [SMALL_STATE(4494)] = 57702, + [SMALL_STATE(4495)] = 57767, + [SMALL_STATE(4496)] = 57832, + [SMALL_STATE(4497)] = 57897, + [SMALL_STATE(4498)] = 57962, + [SMALL_STATE(4499)] = 58027, + [SMALL_STATE(4500)] = 58092, + [SMALL_STATE(4501)] = 58157, + [SMALL_STATE(4502)] = 58222, + [SMALL_STATE(4503)] = 58287, + [SMALL_STATE(4504)] = 58352, + [SMALL_STATE(4505)] = 58417, + [SMALL_STATE(4506)] = 58482, + [SMALL_STATE(4507)] = 58547, + [SMALL_STATE(4508)] = 58612, + [SMALL_STATE(4509)] = 58677, + [SMALL_STATE(4510)] = 58742, + [SMALL_STATE(4511)] = 58807, + [SMALL_STATE(4512)] = 58872, + [SMALL_STATE(4513)] = 58937, + [SMALL_STATE(4514)] = 59002, + [SMALL_STATE(4515)] = 59067, + [SMALL_STATE(4516)] = 59132, + [SMALL_STATE(4517)] = 59197, + [SMALL_STATE(4518)] = 59262, + [SMALL_STATE(4519)] = 59327, + [SMALL_STATE(4520)] = 59392, + [SMALL_STATE(4521)] = 59457, + [SMALL_STATE(4522)] = 59522, + [SMALL_STATE(4523)] = 59587, + [SMALL_STATE(4524)] = 59652, + [SMALL_STATE(4525)] = 59717, + [SMALL_STATE(4526)] = 59782, + [SMALL_STATE(4527)] = 59847, + [SMALL_STATE(4528)] = 59912, + [SMALL_STATE(4529)] = 59977, + [SMALL_STATE(4530)] = 60042, + [SMALL_STATE(4531)] = 60107, + [SMALL_STATE(4532)] = 60172, + [SMALL_STATE(4533)] = 60237, + [SMALL_STATE(4534)] = 60302, + [SMALL_STATE(4535)] = 60367, + [SMALL_STATE(4536)] = 60432, + [SMALL_STATE(4537)] = 60497, + [SMALL_STATE(4538)] = 60562, + [SMALL_STATE(4539)] = 60627, + [SMALL_STATE(4540)] = 60692, + [SMALL_STATE(4541)] = 60757, + [SMALL_STATE(4542)] = 60822, + [SMALL_STATE(4543)] = 60887, + [SMALL_STATE(4544)] = 60952, + [SMALL_STATE(4545)] = 61017, + [SMALL_STATE(4546)] = 61082, + [SMALL_STATE(4547)] = 61147, + [SMALL_STATE(4548)] = 61212, + [SMALL_STATE(4549)] = 61277, + [SMALL_STATE(4550)] = 61342, + [SMALL_STATE(4551)] = 61407, + [SMALL_STATE(4552)] = 61472, + [SMALL_STATE(4553)] = 61537, + [SMALL_STATE(4554)] = 61602, + [SMALL_STATE(4555)] = 61667, + [SMALL_STATE(4556)] = 61732, + [SMALL_STATE(4557)] = 61797, + [SMALL_STATE(4558)] = 61862, + [SMALL_STATE(4559)] = 61927, + [SMALL_STATE(4560)] = 61992, + [SMALL_STATE(4561)] = 62057, + [SMALL_STATE(4562)] = 62122, + [SMALL_STATE(4563)] = 62187, + [SMALL_STATE(4564)] = 62252, + [SMALL_STATE(4565)] = 62317, + [SMALL_STATE(4566)] = 62382, + [SMALL_STATE(4567)] = 62447, + [SMALL_STATE(4568)] = 62512, + [SMALL_STATE(4569)] = 62577, + [SMALL_STATE(4570)] = 62642, + [SMALL_STATE(4571)] = 62707, + [SMALL_STATE(4572)] = 62772, + [SMALL_STATE(4573)] = 62837, + [SMALL_STATE(4574)] = 62902, + [SMALL_STATE(4575)] = 62967, + [SMALL_STATE(4576)] = 63032, + [SMALL_STATE(4577)] = 63097, + [SMALL_STATE(4578)] = 63162, + [SMALL_STATE(4579)] = 63227, + [SMALL_STATE(4580)] = 63292, + [SMALL_STATE(4581)] = 63357, + [SMALL_STATE(4582)] = 63422, + [SMALL_STATE(4583)] = 63487, + [SMALL_STATE(4584)] = 63552, + [SMALL_STATE(4585)] = 63617, + [SMALL_STATE(4586)] = 63682, + [SMALL_STATE(4587)] = 63747, + [SMALL_STATE(4588)] = 63812, + [SMALL_STATE(4589)] = 63877, + [SMALL_STATE(4590)] = 63942, + [SMALL_STATE(4591)] = 64007, + [SMALL_STATE(4592)] = 64072, + [SMALL_STATE(4593)] = 64137, + [SMALL_STATE(4594)] = 64202, + [SMALL_STATE(4595)] = 64267, + [SMALL_STATE(4596)] = 64332, + [SMALL_STATE(4597)] = 64397, + [SMALL_STATE(4598)] = 64462, + [SMALL_STATE(4599)] = 64527, + [SMALL_STATE(4600)] = 64592, + [SMALL_STATE(4601)] = 64657, + [SMALL_STATE(4602)] = 64722, + [SMALL_STATE(4603)] = 64787, + [SMALL_STATE(4604)] = 64852, + [SMALL_STATE(4605)] = 64917, + [SMALL_STATE(4606)] = 64982, + [SMALL_STATE(4607)] = 65047, + [SMALL_STATE(4608)] = 65112, + [SMALL_STATE(4609)] = 65177, + [SMALL_STATE(4610)] = 65242, + [SMALL_STATE(4611)] = 65307, + [SMALL_STATE(4612)] = 65372, + [SMALL_STATE(4613)] = 65437, + [SMALL_STATE(4614)] = 65502, + [SMALL_STATE(4615)] = 65567, + [SMALL_STATE(4616)] = 65632, + [SMALL_STATE(4617)] = 65697, + [SMALL_STATE(4618)] = 65762, + [SMALL_STATE(4619)] = 65827, + [SMALL_STATE(4620)] = 65892, + [SMALL_STATE(4621)] = 65957, + [SMALL_STATE(4622)] = 66022, + [SMALL_STATE(4623)] = 66087, + [SMALL_STATE(4624)] = 66152, + [SMALL_STATE(4625)] = 66217, + [SMALL_STATE(4626)] = 66282, + [SMALL_STATE(4627)] = 66347, + [SMALL_STATE(4628)] = 66412, + [SMALL_STATE(4629)] = 66477, + [SMALL_STATE(4630)] = 66542, + [SMALL_STATE(4631)] = 66607, + [SMALL_STATE(4632)] = 66672, + [SMALL_STATE(4633)] = 66737, + [SMALL_STATE(4634)] = 66802, + [SMALL_STATE(4635)] = 66867, + [SMALL_STATE(4636)] = 66932, + [SMALL_STATE(4637)] = 66997, + [SMALL_STATE(4638)] = 67062, + [SMALL_STATE(4639)] = 67127, + [SMALL_STATE(4640)] = 67192, + [SMALL_STATE(4641)] = 67257, + [SMALL_STATE(4642)] = 67322, + [SMALL_STATE(4643)] = 67387, + [SMALL_STATE(4644)] = 67452, + [SMALL_STATE(4645)] = 67517, + [SMALL_STATE(4646)] = 67582, + [SMALL_STATE(4647)] = 67647, + [SMALL_STATE(4648)] = 67712, + [SMALL_STATE(4649)] = 67777, + [SMALL_STATE(4650)] = 67842, + [SMALL_STATE(4651)] = 67907, + [SMALL_STATE(4652)] = 67972, + [SMALL_STATE(4653)] = 68037, + [SMALL_STATE(4654)] = 68102, + [SMALL_STATE(4655)] = 68167, + [SMALL_STATE(4656)] = 68232, + [SMALL_STATE(4657)] = 68297, + [SMALL_STATE(4658)] = 68362, + [SMALL_STATE(4659)] = 68427, + [SMALL_STATE(4660)] = 68492, + [SMALL_STATE(4661)] = 68557, + [SMALL_STATE(4662)] = 68622, + [SMALL_STATE(4663)] = 68687, + [SMALL_STATE(4664)] = 68752, + [SMALL_STATE(4665)] = 68817, + [SMALL_STATE(4666)] = 68882, + [SMALL_STATE(4667)] = 68947, + [SMALL_STATE(4668)] = 69012, + [SMALL_STATE(4669)] = 69077, + [SMALL_STATE(4670)] = 69142, + [SMALL_STATE(4671)] = 69207, + [SMALL_STATE(4672)] = 69272, + [SMALL_STATE(4673)] = 69337, + [SMALL_STATE(4674)] = 69402, + [SMALL_STATE(4675)] = 69467, + [SMALL_STATE(4676)] = 69532, + [SMALL_STATE(4677)] = 69597, + [SMALL_STATE(4678)] = 69662, + [SMALL_STATE(4679)] = 69727, + [SMALL_STATE(4680)] = 69792, + [SMALL_STATE(4681)] = 69857, + [SMALL_STATE(4682)] = 69922, + [SMALL_STATE(4683)] = 69987, + [SMALL_STATE(4684)] = 70052, + [SMALL_STATE(4685)] = 70117, + [SMALL_STATE(4686)] = 70182, + [SMALL_STATE(4687)] = 70247, + [SMALL_STATE(4688)] = 70312, + [SMALL_STATE(4689)] = 70377, + [SMALL_STATE(4690)] = 70442, + [SMALL_STATE(4691)] = 70507, + [SMALL_STATE(4692)] = 70572, + [SMALL_STATE(4693)] = 70637, + [SMALL_STATE(4694)] = 70702, + [SMALL_STATE(4695)] = 70767, + [SMALL_STATE(4696)] = 70832, + [SMALL_STATE(4697)] = 70897, + [SMALL_STATE(4698)] = 70962, + [SMALL_STATE(4699)] = 71027, + [SMALL_STATE(4700)] = 71092, + [SMALL_STATE(4701)] = 71157, + [SMALL_STATE(4702)] = 71222, + [SMALL_STATE(4703)] = 71287, + [SMALL_STATE(4704)] = 71352, + [SMALL_STATE(4705)] = 71417, + [SMALL_STATE(4706)] = 71482, + [SMALL_STATE(4707)] = 71547, + [SMALL_STATE(4708)] = 71612, + [SMALL_STATE(4709)] = 71677, + [SMALL_STATE(4710)] = 71742, + [SMALL_STATE(4711)] = 71807, + [SMALL_STATE(4712)] = 71872, + [SMALL_STATE(4713)] = 71937, + [SMALL_STATE(4714)] = 72002, + [SMALL_STATE(4715)] = 72067, + [SMALL_STATE(4716)] = 72132, + [SMALL_STATE(4717)] = 72197, + [SMALL_STATE(4718)] = 72262, + [SMALL_STATE(4719)] = 72327, + [SMALL_STATE(4720)] = 72392, + [SMALL_STATE(4721)] = 72457, + [SMALL_STATE(4722)] = 72522, + [SMALL_STATE(4723)] = 72587, + [SMALL_STATE(4724)] = 72652, + [SMALL_STATE(4725)] = 72717, + [SMALL_STATE(4726)] = 72782, + [SMALL_STATE(4727)] = 72847, + [SMALL_STATE(4728)] = 72912, + [SMALL_STATE(4729)] = 72977, + [SMALL_STATE(4730)] = 73042, + [SMALL_STATE(4731)] = 73107, + [SMALL_STATE(4732)] = 73172, + [SMALL_STATE(4733)] = 73237, + [SMALL_STATE(4734)] = 73302, + [SMALL_STATE(4735)] = 73367, + [SMALL_STATE(4736)] = 73432, + [SMALL_STATE(4737)] = 73497, + [SMALL_STATE(4738)] = 73562, + [SMALL_STATE(4739)] = 73627, + [SMALL_STATE(4740)] = 73692, + [SMALL_STATE(4741)] = 73757, + [SMALL_STATE(4742)] = 73822, + [SMALL_STATE(4743)] = 73887, + [SMALL_STATE(4744)] = 73952, + [SMALL_STATE(4745)] = 74017, + [SMALL_STATE(4746)] = 74082, + [SMALL_STATE(4747)] = 74147, + [SMALL_STATE(4748)] = 74212, + [SMALL_STATE(4749)] = 74277, + [SMALL_STATE(4750)] = 74342, + [SMALL_STATE(4751)] = 74407, + [SMALL_STATE(4752)] = 74472, + [SMALL_STATE(4753)] = 74537, + [SMALL_STATE(4754)] = 74602, + [SMALL_STATE(4755)] = 74667, + [SMALL_STATE(4756)] = 74732, + [SMALL_STATE(4757)] = 74797, + [SMALL_STATE(4758)] = 74862, + [SMALL_STATE(4759)] = 74927, + [SMALL_STATE(4760)] = 74992, + [SMALL_STATE(4761)] = 75057, + [SMALL_STATE(4762)] = 75122, + [SMALL_STATE(4763)] = 75187, + [SMALL_STATE(4764)] = 75252, + [SMALL_STATE(4765)] = 75317, + [SMALL_STATE(4766)] = 75382, + [SMALL_STATE(4767)] = 75447, + [SMALL_STATE(4768)] = 75512, + [SMALL_STATE(4769)] = 75577, + [SMALL_STATE(4770)] = 75642, + [SMALL_STATE(4771)] = 75707, + [SMALL_STATE(4772)] = 75772, + [SMALL_STATE(4773)] = 75837, + [SMALL_STATE(4774)] = 75902, + [SMALL_STATE(4775)] = 75967, + [SMALL_STATE(4776)] = 76032, + [SMALL_STATE(4777)] = 76097, + [SMALL_STATE(4778)] = 76162, + [SMALL_STATE(4779)] = 76227, + [SMALL_STATE(4780)] = 76292, + [SMALL_STATE(4781)] = 76357, + [SMALL_STATE(4782)] = 76422, + [SMALL_STATE(4783)] = 76487, + [SMALL_STATE(4784)] = 76552, + [SMALL_STATE(4785)] = 76617, + [SMALL_STATE(4786)] = 76682, + [SMALL_STATE(4787)] = 76747, + [SMALL_STATE(4788)] = 76812, + [SMALL_STATE(4789)] = 76877, + [SMALL_STATE(4790)] = 76942, + [SMALL_STATE(4791)] = 77007, + [SMALL_STATE(4792)] = 77072, + [SMALL_STATE(4793)] = 77137, + [SMALL_STATE(4794)] = 77202, + [SMALL_STATE(4795)] = 77267, + [SMALL_STATE(4796)] = 77332, + [SMALL_STATE(4797)] = 77397, + [SMALL_STATE(4798)] = 77462, + [SMALL_STATE(4799)] = 77527, + [SMALL_STATE(4800)] = 77592, + [SMALL_STATE(4801)] = 77657, + [SMALL_STATE(4802)] = 77722, + [SMALL_STATE(4803)] = 77787, + [SMALL_STATE(4804)] = 77852, + [SMALL_STATE(4805)] = 77917, + [SMALL_STATE(4806)] = 77982, + [SMALL_STATE(4807)] = 78047, + [SMALL_STATE(4808)] = 78112, + [SMALL_STATE(4809)] = 78177, + [SMALL_STATE(4810)] = 78242, + [SMALL_STATE(4811)] = 78307, + [SMALL_STATE(4812)] = 78372, + [SMALL_STATE(4813)] = 78437, + [SMALL_STATE(4814)] = 78502, + [SMALL_STATE(4815)] = 78567, + [SMALL_STATE(4816)] = 78632, + [SMALL_STATE(4817)] = 78697, + [SMALL_STATE(4818)] = 78762, + [SMALL_STATE(4819)] = 78827, + [SMALL_STATE(4820)] = 78892, + [SMALL_STATE(4821)] = 78957, + [SMALL_STATE(4822)] = 79022, + [SMALL_STATE(4823)] = 79087, + [SMALL_STATE(4824)] = 79152, + [SMALL_STATE(4825)] = 79217, + [SMALL_STATE(4826)] = 79282, + [SMALL_STATE(4827)] = 79347, + [SMALL_STATE(4828)] = 79412, + [SMALL_STATE(4829)] = 79477, + [SMALL_STATE(4830)] = 79542, + [SMALL_STATE(4831)] = 79607, + [SMALL_STATE(4832)] = 79672, + [SMALL_STATE(4833)] = 79737, + [SMALL_STATE(4834)] = 79802, + [SMALL_STATE(4835)] = 79867, + [SMALL_STATE(4836)] = 79932, + [SMALL_STATE(4837)] = 79997, + [SMALL_STATE(4838)] = 80062, + [SMALL_STATE(4839)] = 80127, + [SMALL_STATE(4840)] = 80192, + [SMALL_STATE(4841)] = 80257, + [SMALL_STATE(4842)] = 80322, + [SMALL_STATE(4843)] = 80387, + [SMALL_STATE(4844)] = 80452, + [SMALL_STATE(4845)] = 80517, + [SMALL_STATE(4846)] = 80582, + [SMALL_STATE(4847)] = 80647, + [SMALL_STATE(4848)] = 80712, + [SMALL_STATE(4849)] = 80777, + [SMALL_STATE(4850)] = 80842, + [SMALL_STATE(4851)] = 80907, + [SMALL_STATE(4852)] = 80972, + [SMALL_STATE(4853)] = 81037, + [SMALL_STATE(4854)] = 81102, + [SMALL_STATE(4855)] = 81167, + [SMALL_STATE(4856)] = 81232, + [SMALL_STATE(4857)] = 81297, + [SMALL_STATE(4858)] = 81362, + [SMALL_STATE(4859)] = 81427, + [SMALL_STATE(4860)] = 81492, + [SMALL_STATE(4861)] = 81557, + [SMALL_STATE(4862)] = 81622, + [SMALL_STATE(4863)] = 81687, + [SMALL_STATE(4864)] = 81752, + [SMALL_STATE(4865)] = 81817, + [SMALL_STATE(4866)] = 81882, + [SMALL_STATE(4867)] = 81947, + [SMALL_STATE(4868)] = 82012, + [SMALL_STATE(4869)] = 82077, + [SMALL_STATE(4870)] = 82142, + [SMALL_STATE(4871)] = 82207, + [SMALL_STATE(4872)] = 82272, + [SMALL_STATE(4873)] = 82337, + [SMALL_STATE(4874)] = 82402, + [SMALL_STATE(4875)] = 82467, + [SMALL_STATE(4876)] = 82532, + [SMALL_STATE(4877)] = 82597, + [SMALL_STATE(4878)] = 82662, + [SMALL_STATE(4879)] = 82727, + [SMALL_STATE(4880)] = 82792, + [SMALL_STATE(4881)] = 82857, + [SMALL_STATE(4882)] = 82922, + [SMALL_STATE(4883)] = 82987, + [SMALL_STATE(4884)] = 83052, + [SMALL_STATE(4885)] = 83117, + [SMALL_STATE(4886)] = 83182, + [SMALL_STATE(4887)] = 83247, + [SMALL_STATE(4888)] = 83312, + [SMALL_STATE(4889)] = 83377, + [SMALL_STATE(4890)] = 83442, + [SMALL_STATE(4891)] = 83507, + [SMALL_STATE(4892)] = 83572, + [SMALL_STATE(4893)] = 83637, + [SMALL_STATE(4894)] = 83702, + [SMALL_STATE(4895)] = 83767, + [SMALL_STATE(4896)] = 83832, + [SMALL_STATE(4897)] = 83897, + [SMALL_STATE(4898)] = 83962, + [SMALL_STATE(4899)] = 84027, + [SMALL_STATE(4900)] = 84092, + [SMALL_STATE(4901)] = 84157, + [SMALL_STATE(4902)] = 84222, + [SMALL_STATE(4903)] = 84287, + [SMALL_STATE(4904)] = 84352, + [SMALL_STATE(4905)] = 84417, + [SMALL_STATE(4906)] = 84482, + [SMALL_STATE(4907)] = 84547, + [SMALL_STATE(4908)] = 84612, + [SMALL_STATE(4909)] = 84677, + [SMALL_STATE(4910)] = 84742, + [SMALL_STATE(4911)] = 84807, + [SMALL_STATE(4912)] = 84872, + [SMALL_STATE(4913)] = 84937, + [SMALL_STATE(4914)] = 85002, + [SMALL_STATE(4915)] = 85067, + [SMALL_STATE(4916)] = 85132, + [SMALL_STATE(4917)] = 85197, + [SMALL_STATE(4918)] = 85262, + [SMALL_STATE(4919)] = 85327, + [SMALL_STATE(4920)] = 85392, + [SMALL_STATE(4921)] = 85457, + [SMALL_STATE(4922)] = 85522, + [SMALL_STATE(4923)] = 85587, + [SMALL_STATE(4924)] = 85652, + [SMALL_STATE(4925)] = 85717, + [SMALL_STATE(4926)] = 85782, + [SMALL_STATE(4927)] = 85847, + [SMALL_STATE(4928)] = 85912, + [SMALL_STATE(4929)] = 85977, + [SMALL_STATE(4930)] = 86042, + [SMALL_STATE(4931)] = 86107, + [SMALL_STATE(4932)] = 86172, + [SMALL_STATE(4933)] = 86237, + [SMALL_STATE(4934)] = 86302, + [SMALL_STATE(4935)] = 86367, + [SMALL_STATE(4936)] = 86432, + [SMALL_STATE(4937)] = 86497, + [SMALL_STATE(4938)] = 86562, + [SMALL_STATE(4939)] = 86627, + [SMALL_STATE(4940)] = 86692, + [SMALL_STATE(4941)] = 86757, + [SMALL_STATE(4942)] = 86822, + [SMALL_STATE(4943)] = 86887, + [SMALL_STATE(4944)] = 86952, + [SMALL_STATE(4945)] = 87017, + [SMALL_STATE(4946)] = 87082, + [SMALL_STATE(4947)] = 87147, + [SMALL_STATE(4948)] = 87212, + [SMALL_STATE(4949)] = 87277, + [SMALL_STATE(4950)] = 87342, + [SMALL_STATE(4951)] = 87407, + [SMALL_STATE(4952)] = 87472, + [SMALL_STATE(4953)] = 87537, + [SMALL_STATE(4954)] = 87602, + [SMALL_STATE(4955)] = 87667, + [SMALL_STATE(4956)] = 87732, + [SMALL_STATE(4957)] = 87797, + [SMALL_STATE(4958)] = 87862, + [SMALL_STATE(4959)] = 87927, + [SMALL_STATE(4960)] = 87992, + [SMALL_STATE(4961)] = 88057, + [SMALL_STATE(4962)] = 88122, + [SMALL_STATE(4963)] = 88187, + [SMALL_STATE(4964)] = 88252, + [SMALL_STATE(4965)] = 88317, + [SMALL_STATE(4966)] = 88382, + [SMALL_STATE(4967)] = 88447, + [SMALL_STATE(4968)] = 88512, + [SMALL_STATE(4969)] = 88577, + [SMALL_STATE(4970)] = 88642, + [SMALL_STATE(4971)] = 88707, + [SMALL_STATE(4972)] = 88772, + [SMALL_STATE(4973)] = 88837, + [SMALL_STATE(4974)] = 88902, + [SMALL_STATE(4975)] = 88967, + [SMALL_STATE(4976)] = 89032, + [SMALL_STATE(4977)] = 89097, + [SMALL_STATE(4978)] = 89162, + [SMALL_STATE(4979)] = 89227, + [SMALL_STATE(4980)] = 89292, + [SMALL_STATE(4981)] = 89357, + [SMALL_STATE(4982)] = 89422, + [SMALL_STATE(4983)] = 89487, + [SMALL_STATE(4984)] = 89552, + [SMALL_STATE(4985)] = 89617, + [SMALL_STATE(4986)] = 89682, + [SMALL_STATE(4987)] = 89747, + [SMALL_STATE(4988)] = 89812, + [SMALL_STATE(4989)] = 89877, + [SMALL_STATE(4990)] = 89942, + [SMALL_STATE(4991)] = 90007, + [SMALL_STATE(4992)] = 90072, + [SMALL_STATE(4993)] = 90137, + [SMALL_STATE(4994)] = 90202, + [SMALL_STATE(4995)] = 90267, + [SMALL_STATE(4996)] = 90332, + [SMALL_STATE(4997)] = 90397, + [SMALL_STATE(4998)] = 90462, + [SMALL_STATE(4999)] = 90527, + [SMALL_STATE(5000)] = 90592, + [SMALL_STATE(5001)] = 90657, + [SMALL_STATE(5002)] = 90722, + [SMALL_STATE(5003)] = 90787, + [SMALL_STATE(5004)] = 90852, + [SMALL_STATE(5005)] = 90917, + [SMALL_STATE(5006)] = 90982, + [SMALL_STATE(5007)] = 91047, + [SMALL_STATE(5008)] = 91112, + [SMALL_STATE(5009)] = 91177, + [SMALL_STATE(5010)] = 91242, + [SMALL_STATE(5011)] = 91307, + [SMALL_STATE(5012)] = 91372, + [SMALL_STATE(5013)] = 91437, + [SMALL_STATE(5014)] = 91502, + [SMALL_STATE(5015)] = 91567, + [SMALL_STATE(5016)] = 91632, + [SMALL_STATE(5017)] = 91697, + [SMALL_STATE(5018)] = 91762, + [SMALL_STATE(5019)] = 91827, + [SMALL_STATE(5020)] = 91892, + [SMALL_STATE(5021)] = 91957, + [SMALL_STATE(5022)] = 92022, + [SMALL_STATE(5023)] = 92087, + [SMALL_STATE(5024)] = 92152, + [SMALL_STATE(5025)] = 92217, + [SMALL_STATE(5026)] = 92282, + [SMALL_STATE(5027)] = 92347, + [SMALL_STATE(5028)] = 92412, + [SMALL_STATE(5029)] = 92477, + [SMALL_STATE(5030)] = 92542, + [SMALL_STATE(5031)] = 92607, + [SMALL_STATE(5032)] = 92672, + [SMALL_STATE(5033)] = 92737, + [SMALL_STATE(5034)] = 92802, + [SMALL_STATE(5035)] = 92867, + [SMALL_STATE(5036)] = 92932, + [SMALL_STATE(5037)] = 92997, + [SMALL_STATE(5038)] = 93062, + [SMALL_STATE(5039)] = 93127, + [SMALL_STATE(5040)] = 93192, + [SMALL_STATE(5041)] = 93257, + [SMALL_STATE(5042)] = 93322, + [SMALL_STATE(5043)] = 93387, + [SMALL_STATE(5044)] = 93452, + [SMALL_STATE(5045)] = 93517, + [SMALL_STATE(5046)] = 93582, + [SMALL_STATE(5047)] = 93647, + [SMALL_STATE(5048)] = 93712, + [SMALL_STATE(5049)] = 93777, + [SMALL_STATE(5050)] = 93842, + [SMALL_STATE(5051)] = 93907, + [SMALL_STATE(5052)] = 93972, + [SMALL_STATE(5053)] = 94037, + [SMALL_STATE(5054)] = 94102, + [SMALL_STATE(5055)] = 94167, + [SMALL_STATE(5056)] = 94232, + [SMALL_STATE(5057)] = 94297, + [SMALL_STATE(5058)] = 94362, + [SMALL_STATE(5059)] = 94427, + [SMALL_STATE(5060)] = 94492, + [SMALL_STATE(5061)] = 94557, + [SMALL_STATE(5062)] = 94622, + [SMALL_STATE(5063)] = 94687, + [SMALL_STATE(5064)] = 94752, + [SMALL_STATE(5065)] = 94817, + [SMALL_STATE(5066)] = 94882, + [SMALL_STATE(5067)] = 94947, + [SMALL_STATE(5068)] = 95012, + [SMALL_STATE(5069)] = 95077, + [SMALL_STATE(5070)] = 95142, + [SMALL_STATE(5071)] = 95207, + [SMALL_STATE(5072)] = 95272, + [SMALL_STATE(5073)] = 95337, + [SMALL_STATE(5074)] = 95402, + [SMALL_STATE(5075)] = 95467, + [SMALL_STATE(5076)] = 95532, + [SMALL_STATE(5077)] = 95597, + [SMALL_STATE(5078)] = 95662, + [SMALL_STATE(5079)] = 95727, + [SMALL_STATE(5080)] = 95792, + [SMALL_STATE(5081)] = 95857, + [SMALL_STATE(5082)] = 95922, + [SMALL_STATE(5083)] = 95987, + [SMALL_STATE(5084)] = 96052, + [SMALL_STATE(5085)] = 96117, + [SMALL_STATE(5086)] = 96182, + [SMALL_STATE(5087)] = 96247, + [SMALL_STATE(5088)] = 96312, + [SMALL_STATE(5089)] = 96377, + [SMALL_STATE(5090)] = 96442, + [SMALL_STATE(5091)] = 96507, + [SMALL_STATE(5092)] = 96572, + [SMALL_STATE(5093)] = 96637, + [SMALL_STATE(5094)] = 96702, + [SMALL_STATE(5095)] = 96767, + [SMALL_STATE(5096)] = 96832, + [SMALL_STATE(5097)] = 96897, + [SMALL_STATE(5098)] = 96962, + [SMALL_STATE(5099)] = 97027, + [SMALL_STATE(5100)] = 97092, + [SMALL_STATE(5101)] = 97157, + [SMALL_STATE(5102)] = 97222, + [SMALL_STATE(5103)] = 97287, + [SMALL_STATE(5104)] = 97352, + [SMALL_STATE(5105)] = 97417, + [SMALL_STATE(5106)] = 97482, + [SMALL_STATE(5107)] = 97547, + [SMALL_STATE(5108)] = 97612, + [SMALL_STATE(5109)] = 97677, + [SMALL_STATE(5110)] = 97742, + [SMALL_STATE(5111)] = 97807, + [SMALL_STATE(5112)] = 97872, + [SMALL_STATE(5113)] = 97937, + [SMALL_STATE(5114)] = 98002, + [SMALL_STATE(5115)] = 98067, + [SMALL_STATE(5116)] = 98132, + [SMALL_STATE(5117)] = 98197, + [SMALL_STATE(5118)] = 98262, + [SMALL_STATE(5119)] = 98327, + [SMALL_STATE(5120)] = 98392, + [SMALL_STATE(5121)] = 98457, + [SMALL_STATE(5122)] = 98522, + [SMALL_STATE(5123)] = 98587, + [SMALL_STATE(5124)] = 98652, + [SMALL_STATE(5125)] = 98717, + [SMALL_STATE(5126)] = 98782, + [SMALL_STATE(5127)] = 98847, + [SMALL_STATE(5128)] = 98912, + [SMALL_STATE(5129)] = 98977, + [SMALL_STATE(5130)] = 99042, + [SMALL_STATE(5131)] = 99107, + [SMALL_STATE(5132)] = 99172, + [SMALL_STATE(5133)] = 99237, + [SMALL_STATE(5134)] = 99302, + [SMALL_STATE(5135)] = 99367, + [SMALL_STATE(5136)] = 99432, + [SMALL_STATE(5137)] = 99497, + [SMALL_STATE(5138)] = 99562, + [SMALL_STATE(5139)] = 99627, + [SMALL_STATE(5140)] = 99692, + [SMALL_STATE(5141)] = 99757, + [SMALL_STATE(5142)] = 99822, + [SMALL_STATE(5143)] = 99887, + [SMALL_STATE(5144)] = 99952, + [SMALL_STATE(5145)] = 100017, + [SMALL_STATE(5146)] = 100082, + [SMALL_STATE(5147)] = 100147, + [SMALL_STATE(5148)] = 100212, + [SMALL_STATE(5149)] = 100277, + [SMALL_STATE(5150)] = 100342, + [SMALL_STATE(5151)] = 100407, + [SMALL_STATE(5152)] = 100472, + [SMALL_STATE(5153)] = 100537, + [SMALL_STATE(5154)] = 100602, + [SMALL_STATE(5155)] = 100667, + [SMALL_STATE(5156)] = 100732, + [SMALL_STATE(5157)] = 100797, + [SMALL_STATE(5158)] = 100862, + [SMALL_STATE(5159)] = 100927, + [SMALL_STATE(5160)] = 100992, + [SMALL_STATE(5161)] = 101057, + [SMALL_STATE(5162)] = 101122, + [SMALL_STATE(5163)] = 101187, + [SMALL_STATE(5164)] = 101252, + [SMALL_STATE(5165)] = 101317, + [SMALL_STATE(5166)] = 101382, + [SMALL_STATE(5167)] = 101447, + [SMALL_STATE(5168)] = 101512, + [SMALL_STATE(5169)] = 101577, + [SMALL_STATE(5170)] = 101642, + [SMALL_STATE(5171)] = 101707, + [SMALL_STATE(5172)] = 101772, + [SMALL_STATE(5173)] = 101837, + [SMALL_STATE(5174)] = 101902, + [SMALL_STATE(5175)] = 101967, + [SMALL_STATE(5176)] = 102032, + [SMALL_STATE(5177)] = 102097, + [SMALL_STATE(5178)] = 102162, + [SMALL_STATE(5179)] = 102227, + [SMALL_STATE(5180)] = 102292, + [SMALL_STATE(5181)] = 102357, + [SMALL_STATE(5182)] = 102422, + [SMALL_STATE(5183)] = 102487, + [SMALL_STATE(5184)] = 102552, + [SMALL_STATE(5185)] = 102617, + [SMALL_STATE(5186)] = 102682, + [SMALL_STATE(5187)] = 102747, + [SMALL_STATE(5188)] = 102812, + [SMALL_STATE(5189)] = 102877, + [SMALL_STATE(5190)] = 102942, + [SMALL_STATE(5191)] = 103007, + [SMALL_STATE(5192)] = 103072, + [SMALL_STATE(5193)] = 103137, + [SMALL_STATE(5194)] = 103202, + [SMALL_STATE(5195)] = 103267, + [SMALL_STATE(5196)] = 103332, + [SMALL_STATE(5197)] = 103397, + [SMALL_STATE(5198)] = 103462, + [SMALL_STATE(5199)] = 103527, + [SMALL_STATE(5200)] = 103592, + [SMALL_STATE(5201)] = 103657, + [SMALL_STATE(5202)] = 103722, + [SMALL_STATE(5203)] = 103787, + [SMALL_STATE(5204)] = 103852, + [SMALL_STATE(5205)] = 103917, + [SMALL_STATE(5206)] = 103982, + [SMALL_STATE(5207)] = 104047, + [SMALL_STATE(5208)] = 104112, + [SMALL_STATE(5209)] = 104177, + [SMALL_STATE(5210)] = 104242, + [SMALL_STATE(5211)] = 104307, + [SMALL_STATE(5212)] = 104372, + [SMALL_STATE(5213)] = 104437, + [SMALL_STATE(5214)] = 104502, + [SMALL_STATE(5215)] = 104567, + [SMALL_STATE(5216)] = 104632, + [SMALL_STATE(5217)] = 104697, + [SMALL_STATE(5218)] = 104762, + [SMALL_STATE(5219)] = 104827, + [SMALL_STATE(5220)] = 104892, + [SMALL_STATE(5221)] = 104957, + [SMALL_STATE(5222)] = 105022, + [SMALL_STATE(5223)] = 105087, + [SMALL_STATE(5224)] = 105152, + [SMALL_STATE(5225)] = 105217, + [SMALL_STATE(5226)] = 105282, + [SMALL_STATE(5227)] = 105347, + [SMALL_STATE(5228)] = 105412, + [SMALL_STATE(5229)] = 105477, + [SMALL_STATE(5230)] = 105542, + [SMALL_STATE(5231)] = 105607, + [SMALL_STATE(5232)] = 105672, + [SMALL_STATE(5233)] = 105737, + [SMALL_STATE(5234)] = 105802, + [SMALL_STATE(5235)] = 105867, + [SMALL_STATE(5236)] = 105932, + [SMALL_STATE(5237)] = 105997, + [SMALL_STATE(5238)] = 106062, + [SMALL_STATE(5239)] = 106127, + [SMALL_STATE(5240)] = 106192, + [SMALL_STATE(5241)] = 106257, + [SMALL_STATE(5242)] = 106322, + [SMALL_STATE(5243)] = 106387, + [SMALL_STATE(5244)] = 106452, + [SMALL_STATE(5245)] = 106517, + [SMALL_STATE(5246)] = 106582, + [SMALL_STATE(5247)] = 106647, + [SMALL_STATE(5248)] = 106712, + [SMALL_STATE(5249)] = 106777, + [SMALL_STATE(5250)] = 106842, + [SMALL_STATE(5251)] = 106907, + [SMALL_STATE(5252)] = 106972, + [SMALL_STATE(5253)] = 107037, + [SMALL_STATE(5254)] = 107102, + [SMALL_STATE(5255)] = 107167, + [SMALL_STATE(5256)] = 107232, + [SMALL_STATE(5257)] = 107297, + [SMALL_STATE(5258)] = 107362, + [SMALL_STATE(5259)] = 107427, + [SMALL_STATE(5260)] = 107492, + [SMALL_STATE(5261)] = 107557, + [SMALL_STATE(5262)] = 107622, + [SMALL_STATE(5263)] = 107687, + [SMALL_STATE(5264)] = 107752, + [SMALL_STATE(5265)] = 107817, + [SMALL_STATE(5266)] = 107882, + [SMALL_STATE(5267)] = 107947, + [SMALL_STATE(5268)] = 108012, + [SMALL_STATE(5269)] = 108077, + [SMALL_STATE(5270)] = 108142, + [SMALL_STATE(5271)] = 108207, + [SMALL_STATE(5272)] = 108272, + [SMALL_STATE(5273)] = 108337, + [SMALL_STATE(5274)] = 108402, + [SMALL_STATE(5275)] = 108467, + [SMALL_STATE(5276)] = 108532, + [SMALL_STATE(5277)] = 108597, + [SMALL_STATE(5278)] = 108662, + [SMALL_STATE(5279)] = 108727, + [SMALL_STATE(5280)] = 108792, + [SMALL_STATE(5281)] = 108857, + [SMALL_STATE(5282)] = 108922, + [SMALL_STATE(5283)] = 108987, + [SMALL_STATE(5284)] = 109052, + [SMALL_STATE(5285)] = 109117, + [SMALL_STATE(5286)] = 109182, + [SMALL_STATE(5287)] = 109247, + [SMALL_STATE(5288)] = 109312, + [SMALL_STATE(5289)] = 109377, + [SMALL_STATE(5290)] = 109442, + [SMALL_STATE(5291)] = 109507, + [SMALL_STATE(5292)] = 109572, + [SMALL_STATE(5293)] = 109637, + [SMALL_STATE(5294)] = 109702, + [SMALL_STATE(5295)] = 109767, + [SMALL_STATE(5296)] = 109832, + [SMALL_STATE(5297)] = 109903, + [SMALL_STATE(5298)] = 109968, + [SMALL_STATE(5299)] = 110033, + [SMALL_STATE(5300)] = 110098, + [SMALL_STATE(5301)] = 110163, + [SMALL_STATE(5302)] = 110228, + [SMALL_STATE(5303)] = 110293, + [SMALL_STATE(5304)] = 110358, + [SMALL_STATE(5305)] = 110423, + [SMALL_STATE(5306)] = 110488, + [SMALL_STATE(5307)] = 110553, + [SMALL_STATE(5308)] = 110618, + [SMALL_STATE(5309)] = 110683, + [SMALL_STATE(5310)] = 110748, + [SMALL_STATE(5311)] = 110813, + [SMALL_STATE(5312)] = 110878, + [SMALL_STATE(5313)] = 110943, + [SMALL_STATE(5314)] = 111008, + [SMALL_STATE(5315)] = 111073, + [SMALL_STATE(5316)] = 111138, + [SMALL_STATE(5317)] = 111203, + [SMALL_STATE(5318)] = 111268, + [SMALL_STATE(5319)] = 111333, + [SMALL_STATE(5320)] = 111398, + [SMALL_STATE(5321)] = 111463, + [SMALL_STATE(5322)] = 111528, + [SMALL_STATE(5323)] = 111593, + [SMALL_STATE(5324)] = 111658, + [SMALL_STATE(5325)] = 111723, + [SMALL_STATE(5326)] = 111788, + [SMALL_STATE(5327)] = 111853, + [SMALL_STATE(5328)] = 111918, + [SMALL_STATE(5329)] = 111983, + [SMALL_STATE(5330)] = 112048, + [SMALL_STATE(5331)] = 112113, + [SMALL_STATE(5332)] = 112178, + [SMALL_STATE(5333)] = 112243, + [SMALL_STATE(5334)] = 112308, + [SMALL_STATE(5335)] = 112373, + [SMALL_STATE(5336)] = 112438, + [SMALL_STATE(5337)] = 112503, + [SMALL_STATE(5338)] = 112568, + [SMALL_STATE(5339)] = 112633, + [SMALL_STATE(5340)] = 112698, + [SMALL_STATE(5341)] = 112763, + [SMALL_STATE(5342)] = 112828, + [SMALL_STATE(5343)] = 112893, + [SMALL_STATE(5344)] = 112958, + [SMALL_STATE(5345)] = 113023, + [SMALL_STATE(5346)] = 113088, + [SMALL_STATE(5347)] = 113153, + [SMALL_STATE(5348)] = 113218, + [SMALL_STATE(5349)] = 113283, + [SMALL_STATE(5350)] = 113348, + [SMALL_STATE(5351)] = 113413, + [SMALL_STATE(5352)] = 113478, + [SMALL_STATE(5353)] = 113543, + [SMALL_STATE(5354)] = 113608, + [SMALL_STATE(5355)] = 113673, + [SMALL_STATE(5356)] = 113738, + [SMALL_STATE(5357)] = 113803, + [SMALL_STATE(5358)] = 113868, + [SMALL_STATE(5359)] = 113933, + [SMALL_STATE(5360)] = 113998, + [SMALL_STATE(5361)] = 114063, + [SMALL_STATE(5362)] = 114128, + [SMALL_STATE(5363)] = 114193, + [SMALL_STATE(5364)] = 114258, + [SMALL_STATE(5365)] = 114323, + [SMALL_STATE(5366)] = 114388, + [SMALL_STATE(5367)] = 114453, + [SMALL_STATE(5368)] = 114518, + [SMALL_STATE(5369)] = 114583, + [SMALL_STATE(5370)] = 114648, + [SMALL_STATE(5371)] = 114713, + [SMALL_STATE(5372)] = 114778, + [SMALL_STATE(5373)] = 114843, + [SMALL_STATE(5374)] = 114908, + [SMALL_STATE(5375)] = 114973, + [SMALL_STATE(5376)] = 115038, + [SMALL_STATE(5377)] = 115103, + [SMALL_STATE(5378)] = 115168, + [SMALL_STATE(5379)] = 115233, + [SMALL_STATE(5380)] = 115298, + [SMALL_STATE(5381)] = 115363, + [SMALL_STATE(5382)] = 115428, + [SMALL_STATE(5383)] = 115493, + [SMALL_STATE(5384)] = 115558, + [SMALL_STATE(5385)] = 115623, + [SMALL_STATE(5386)] = 115688, + [SMALL_STATE(5387)] = 115753, + [SMALL_STATE(5388)] = 115818, + [SMALL_STATE(5389)] = 115883, + [SMALL_STATE(5390)] = 115948, + [SMALL_STATE(5391)] = 116013, + [SMALL_STATE(5392)] = 116078, + [SMALL_STATE(5393)] = 116143, + [SMALL_STATE(5394)] = 116208, + [SMALL_STATE(5395)] = 116273, + [SMALL_STATE(5396)] = 116338, + [SMALL_STATE(5397)] = 116403, + [SMALL_STATE(5398)] = 116468, + [SMALL_STATE(5399)] = 116533, + [SMALL_STATE(5400)] = 116598, + [SMALL_STATE(5401)] = 116663, + [SMALL_STATE(5402)] = 116728, + [SMALL_STATE(5403)] = 116793, + [SMALL_STATE(5404)] = 116858, + [SMALL_STATE(5405)] = 116923, + [SMALL_STATE(5406)] = 116988, + [SMALL_STATE(5407)] = 117053, + [SMALL_STATE(5408)] = 117118, + [SMALL_STATE(5409)] = 117183, + [SMALL_STATE(5410)] = 117248, + [SMALL_STATE(5411)] = 117313, + [SMALL_STATE(5412)] = 117378, + [SMALL_STATE(5413)] = 117443, + [SMALL_STATE(5414)] = 117508, + [SMALL_STATE(5415)] = 117573, + [SMALL_STATE(5416)] = 117638, + [SMALL_STATE(5417)] = 117703, + [SMALL_STATE(5418)] = 117768, + [SMALL_STATE(5419)] = 117833, + [SMALL_STATE(5420)] = 117898, + [SMALL_STATE(5421)] = 117963, + [SMALL_STATE(5422)] = 118028, + [SMALL_STATE(5423)] = 118093, + [SMALL_STATE(5424)] = 118158, + [SMALL_STATE(5425)] = 118223, + [SMALL_STATE(5426)] = 118288, + [SMALL_STATE(5427)] = 118353, + [SMALL_STATE(5428)] = 118418, + [SMALL_STATE(5429)] = 118483, + [SMALL_STATE(5430)] = 118548, + [SMALL_STATE(5431)] = 118613, + [SMALL_STATE(5432)] = 118678, + [SMALL_STATE(5433)] = 118743, + [SMALL_STATE(5434)] = 118808, + [SMALL_STATE(5435)] = 118873, + [SMALL_STATE(5436)] = 118938, + [SMALL_STATE(5437)] = 119003, + [SMALL_STATE(5438)] = 119068, + [SMALL_STATE(5439)] = 119133, + [SMALL_STATE(5440)] = 119198, + [SMALL_STATE(5441)] = 119263, + [SMALL_STATE(5442)] = 119328, + [SMALL_STATE(5443)] = 119393, + [SMALL_STATE(5444)] = 119458, + [SMALL_STATE(5445)] = 119523, + [SMALL_STATE(5446)] = 119588, + [SMALL_STATE(5447)] = 119653, + [SMALL_STATE(5448)] = 119718, + [SMALL_STATE(5449)] = 119783, + [SMALL_STATE(5450)] = 119848, + [SMALL_STATE(5451)] = 119913, + [SMALL_STATE(5452)] = 119978, + [SMALL_STATE(5453)] = 120043, + [SMALL_STATE(5454)] = 120108, + [SMALL_STATE(5455)] = 120173, + [SMALL_STATE(5456)] = 120238, + [SMALL_STATE(5457)] = 120303, + [SMALL_STATE(5458)] = 120368, + [SMALL_STATE(5459)] = 120433, + [SMALL_STATE(5460)] = 120498, + [SMALL_STATE(5461)] = 120563, + [SMALL_STATE(5462)] = 120628, + [SMALL_STATE(5463)] = 120693, + [SMALL_STATE(5464)] = 120758, + [SMALL_STATE(5465)] = 120823, + [SMALL_STATE(5466)] = 120888, + [SMALL_STATE(5467)] = 120953, + [SMALL_STATE(5468)] = 121018, + [SMALL_STATE(5469)] = 121083, + [SMALL_STATE(5470)] = 121148, + [SMALL_STATE(5471)] = 121213, + [SMALL_STATE(5472)] = 121278, + [SMALL_STATE(5473)] = 121343, + [SMALL_STATE(5474)] = 121408, + [SMALL_STATE(5475)] = 121473, + [SMALL_STATE(5476)] = 121538, + [SMALL_STATE(5477)] = 121603, + [SMALL_STATE(5478)] = 121668, + [SMALL_STATE(5479)] = 121733, + [SMALL_STATE(5480)] = 121798, + [SMALL_STATE(5481)] = 121863, + [SMALL_STATE(5482)] = 121928, + [SMALL_STATE(5483)] = 121993, + [SMALL_STATE(5484)] = 122058, + [SMALL_STATE(5485)] = 122123, + [SMALL_STATE(5486)] = 122188, + [SMALL_STATE(5487)] = 122253, + [SMALL_STATE(5488)] = 122318, + [SMALL_STATE(5489)] = 122383, + [SMALL_STATE(5490)] = 122448, + [SMALL_STATE(5491)] = 122513, + [SMALL_STATE(5492)] = 122578, + [SMALL_STATE(5493)] = 122643, + [SMALL_STATE(5494)] = 122708, + [SMALL_STATE(5495)] = 122773, + [SMALL_STATE(5496)] = 122838, + [SMALL_STATE(5497)] = 122903, + [SMALL_STATE(5498)] = 122968, + [SMALL_STATE(5499)] = 123033, + [SMALL_STATE(5500)] = 123098, + [SMALL_STATE(5501)] = 123163, + [SMALL_STATE(5502)] = 123228, + [SMALL_STATE(5503)] = 123293, + [SMALL_STATE(5504)] = 123358, + [SMALL_STATE(5505)] = 123423, + [SMALL_STATE(5506)] = 123488, + [SMALL_STATE(5507)] = 123553, + [SMALL_STATE(5508)] = 123618, + [SMALL_STATE(5509)] = 123683, + [SMALL_STATE(5510)] = 123748, + [SMALL_STATE(5511)] = 123813, + [SMALL_STATE(5512)] = 123878, + [SMALL_STATE(5513)] = 123943, + [SMALL_STATE(5514)] = 124008, + [SMALL_STATE(5515)] = 124073, + [SMALL_STATE(5516)] = 124138, + [SMALL_STATE(5517)] = 124203, + [SMALL_STATE(5518)] = 124268, + [SMALL_STATE(5519)] = 124333, + [SMALL_STATE(5520)] = 124398, + [SMALL_STATE(5521)] = 124463, + [SMALL_STATE(5522)] = 124528, + [SMALL_STATE(5523)] = 124593, + [SMALL_STATE(5524)] = 124658, + [SMALL_STATE(5525)] = 124723, + [SMALL_STATE(5526)] = 124788, + [SMALL_STATE(5527)] = 124853, + [SMALL_STATE(5528)] = 124918, + [SMALL_STATE(5529)] = 124983, + [SMALL_STATE(5530)] = 125048, + [SMALL_STATE(5531)] = 125113, + [SMALL_STATE(5532)] = 125178, + [SMALL_STATE(5533)] = 125243, + [SMALL_STATE(5534)] = 125308, + [SMALL_STATE(5535)] = 125373, + [SMALL_STATE(5536)] = 125438, + [SMALL_STATE(5537)] = 125503, + [SMALL_STATE(5538)] = 125568, + [SMALL_STATE(5539)] = 125633, + [SMALL_STATE(5540)] = 125698, + [SMALL_STATE(5541)] = 125763, + [SMALL_STATE(5542)] = 125828, + [SMALL_STATE(5543)] = 125893, + [SMALL_STATE(5544)] = 125958, + [SMALL_STATE(5545)] = 126023, + [SMALL_STATE(5546)] = 126088, + [SMALL_STATE(5547)] = 126153, + [SMALL_STATE(5548)] = 126218, + [SMALL_STATE(5549)] = 126283, + [SMALL_STATE(5550)] = 126348, + [SMALL_STATE(5551)] = 126413, + [SMALL_STATE(5552)] = 126478, + [SMALL_STATE(5553)] = 126543, + [SMALL_STATE(5554)] = 126608, + [SMALL_STATE(5555)] = 126673, + [SMALL_STATE(5556)] = 126738, + [SMALL_STATE(5557)] = 126803, + [SMALL_STATE(5558)] = 126868, + [SMALL_STATE(5559)] = 126933, + [SMALL_STATE(5560)] = 126998, + [SMALL_STATE(5561)] = 127063, + [SMALL_STATE(5562)] = 127128, + [SMALL_STATE(5563)] = 127193, + [SMALL_STATE(5564)] = 127258, + [SMALL_STATE(5565)] = 127323, + [SMALL_STATE(5566)] = 127388, + [SMALL_STATE(5567)] = 127453, + [SMALL_STATE(5568)] = 127518, + [SMALL_STATE(5569)] = 127583, + [SMALL_STATE(5570)] = 127648, + [SMALL_STATE(5571)] = 127713, + [SMALL_STATE(5572)] = 127778, + [SMALL_STATE(5573)] = 127843, + [SMALL_STATE(5574)] = 127908, + [SMALL_STATE(5575)] = 127973, + [SMALL_STATE(5576)] = 128038, + [SMALL_STATE(5577)] = 128103, + [SMALL_STATE(5578)] = 128168, + [SMALL_STATE(5579)] = 128233, + [SMALL_STATE(5580)] = 128298, + [SMALL_STATE(5581)] = 128363, + [SMALL_STATE(5582)] = 128428, + [SMALL_STATE(5583)] = 128493, + [SMALL_STATE(5584)] = 128558, + [SMALL_STATE(5585)] = 128623, + [SMALL_STATE(5586)] = 128688, + [SMALL_STATE(5587)] = 128753, + [SMALL_STATE(5588)] = 128818, + [SMALL_STATE(5589)] = 128883, + [SMALL_STATE(5590)] = 128948, + [SMALL_STATE(5591)] = 129013, + [SMALL_STATE(5592)] = 129078, + [SMALL_STATE(5593)] = 129143, + [SMALL_STATE(5594)] = 129208, + [SMALL_STATE(5595)] = 129273, + [SMALL_STATE(5596)] = 129338, + [SMALL_STATE(5597)] = 129403, + [SMALL_STATE(5598)] = 129468, + [SMALL_STATE(5599)] = 129533, + [SMALL_STATE(5600)] = 129598, + [SMALL_STATE(5601)] = 129663, + [SMALL_STATE(5602)] = 129728, + [SMALL_STATE(5603)] = 129793, + [SMALL_STATE(5604)] = 129858, + [SMALL_STATE(5605)] = 129923, + [SMALL_STATE(5606)] = 129988, + [SMALL_STATE(5607)] = 130053, + [SMALL_STATE(5608)] = 130118, + [SMALL_STATE(5609)] = 130183, + [SMALL_STATE(5610)] = 130248, + [SMALL_STATE(5611)] = 130313, + [SMALL_STATE(5612)] = 130378, + [SMALL_STATE(5613)] = 130443, + [SMALL_STATE(5614)] = 130508, + [SMALL_STATE(5615)] = 130573, + [SMALL_STATE(5616)] = 130638, + [SMALL_STATE(5617)] = 130703, + [SMALL_STATE(5618)] = 130768, + [SMALL_STATE(5619)] = 130833, + [SMALL_STATE(5620)] = 130898, + [SMALL_STATE(5621)] = 130963, + [SMALL_STATE(5622)] = 131028, + [SMALL_STATE(5623)] = 131093, + [SMALL_STATE(5624)] = 131158, + [SMALL_STATE(5625)] = 131223, + [SMALL_STATE(5626)] = 131288, + [SMALL_STATE(5627)] = 131353, + [SMALL_STATE(5628)] = 131418, + [SMALL_STATE(5629)] = 131483, + [SMALL_STATE(5630)] = 131548, + [SMALL_STATE(5631)] = 131613, + [SMALL_STATE(5632)] = 131678, + [SMALL_STATE(5633)] = 131743, + [SMALL_STATE(5634)] = 131808, + [SMALL_STATE(5635)] = 131873, + [SMALL_STATE(5636)] = 131938, + [SMALL_STATE(5637)] = 132003, + [SMALL_STATE(5638)] = 132068, + [SMALL_STATE(5639)] = 132133, + [SMALL_STATE(5640)] = 132198, + [SMALL_STATE(5641)] = 132263, + [SMALL_STATE(5642)] = 132328, + [SMALL_STATE(5643)] = 132393, + [SMALL_STATE(5644)] = 132458, + [SMALL_STATE(5645)] = 132523, + [SMALL_STATE(5646)] = 132588, + [SMALL_STATE(5647)] = 132653, + [SMALL_STATE(5648)] = 132718, + [SMALL_STATE(5649)] = 132783, + [SMALL_STATE(5650)] = 132848, + [SMALL_STATE(5651)] = 132913, + [SMALL_STATE(5652)] = 132978, + [SMALL_STATE(5653)] = 133043, + [SMALL_STATE(5654)] = 133108, + [SMALL_STATE(5655)] = 133173, + [SMALL_STATE(5656)] = 133238, + [SMALL_STATE(5657)] = 133303, + [SMALL_STATE(5658)] = 133368, + [SMALL_STATE(5659)] = 133433, + [SMALL_STATE(5660)] = 133498, + [SMALL_STATE(5661)] = 133563, + [SMALL_STATE(5662)] = 133628, + [SMALL_STATE(5663)] = 133693, + [SMALL_STATE(5664)] = 133758, + [SMALL_STATE(5665)] = 133823, + [SMALL_STATE(5666)] = 133888, + [SMALL_STATE(5667)] = 133953, + [SMALL_STATE(5668)] = 134018, + [SMALL_STATE(5669)] = 134083, + [SMALL_STATE(5670)] = 134148, + [SMALL_STATE(5671)] = 134213, + [SMALL_STATE(5672)] = 134278, + [SMALL_STATE(5673)] = 134343, + [SMALL_STATE(5674)] = 134408, + [SMALL_STATE(5675)] = 134473, + [SMALL_STATE(5676)] = 134538, + [SMALL_STATE(5677)] = 134603, + [SMALL_STATE(5678)] = 134668, + [SMALL_STATE(5679)] = 134733, + [SMALL_STATE(5680)] = 134798, + [SMALL_STATE(5681)] = 134863, + [SMALL_STATE(5682)] = 134928, + [SMALL_STATE(5683)] = 134993, + [SMALL_STATE(5684)] = 135058, + [SMALL_STATE(5685)] = 135123, + [SMALL_STATE(5686)] = 135188, + [SMALL_STATE(5687)] = 135253, + [SMALL_STATE(5688)] = 135318, + [SMALL_STATE(5689)] = 135383, + [SMALL_STATE(5690)] = 135448, + [SMALL_STATE(5691)] = 135513, + [SMALL_STATE(5692)] = 135578, + [SMALL_STATE(5693)] = 135643, + [SMALL_STATE(5694)] = 135708, + [SMALL_STATE(5695)] = 135773, + [SMALL_STATE(5696)] = 135838, + [SMALL_STATE(5697)] = 135903, + [SMALL_STATE(5698)] = 135968, + [SMALL_STATE(5699)] = 136033, + [SMALL_STATE(5700)] = 136098, + [SMALL_STATE(5701)] = 136163, + [SMALL_STATE(5702)] = 136228, + [SMALL_STATE(5703)] = 136293, + [SMALL_STATE(5704)] = 136358, + [SMALL_STATE(5705)] = 136423, + [SMALL_STATE(5706)] = 136488, + [SMALL_STATE(5707)] = 136553, + [SMALL_STATE(5708)] = 136618, + [SMALL_STATE(5709)] = 136683, + [SMALL_STATE(5710)] = 136748, + [SMALL_STATE(5711)] = 136813, + [SMALL_STATE(5712)] = 136878, + [SMALL_STATE(5713)] = 136943, + [SMALL_STATE(5714)] = 137008, + [SMALL_STATE(5715)] = 137073, + [SMALL_STATE(5716)] = 137138, + [SMALL_STATE(5717)] = 137203, + [SMALL_STATE(5718)] = 137268, + [SMALL_STATE(5719)] = 137333, + [SMALL_STATE(5720)] = 137398, + [SMALL_STATE(5721)] = 137463, + [SMALL_STATE(5722)] = 137528, + [SMALL_STATE(5723)] = 137593, + [SMALL_STATE(5724)] = 137658, + [SMALL_STATE(5725)] = 137723, + [SMALL_STATE(5726)] = 137788, + [SMALL_STATE(5727)] = 137853, + [SMALL_STATE(5728)] = 137918, + [SMALL_STATE(5729)] = 137983, + [SMALL_STATE(5730)] = 138048, + [SMALL_STATE(5731)] = 138113, + [SMALL_STATE(5732)] = 138178, + [SMALL_STATE(5733)] = 138243, + [SMALL_STATE(5734)] = 138308, + [SMALL_STATE(5735)] = 138373, + [SMALL_STATE(5736)] = 138438, + [SMALL_STATE(5737)] = 138503, + [SMALL_STATE(5738)] = 138568, + [SMALL_STATE(5739)] = 138633, + [SMALL_STATE(5740)] = 138698, + [SMALL_STATE(5741)] = 138763, + [SMALL_STATE(5742)] = 138828, + [SMALL_STATE(5743)] = 138893, + [SMALL_STATE(5744)] = 138958, + [SMALL_STATE(5745)] = 139023, + [SMALL_STATE(5746)] = 139088, + [SMALL_STATE(5747)] = 139153, + [SMALL_STATE(5748)] = 139218, + [SMALL_STATE(5749)] = 139283, + [SMALL_STATE(5750)] = 139348, + [SMALL_STATE(5751)] = 139413, + [SMALL_STATE(5752)] = 139478, + [SMALL_STATE(5753)] = 139543, + [SMALL_STATE(5754)] = 139608, + [SMALL_STATE(5755)] = 139673, + [SMALL_STATE(5756)] = 139738, + [SMALL_STATE(5757)] = 139803, + [SMALL_STATE(5758)] = 139868, + [SMALL_STATE(5759)] = 139933, + [SMALL_STATE(5760)] = 139998, + [SMALL_STATE(5761)] = 140063, + [SMALL_STATE(5762)] = 140128, + [SMALL_STATE(5763)] = 140193, + [SMALL_STATE(5764)] = 140258, + [SMALL_STATE(5765)] = 140323, + [SMALL_STATE(5766)] = 140388, + [SMALL_STATE(5767)] = 140453, + [SMALL_STATE(5768)] = 140518, + [SMALL_STATE(5769)] = 140583, + [SMALL_STATE(5770)] = 140648, + [SMALL_STATE(5771)] = 140713, + [SMALL_STATE(5772)] = 140778, + [SMALL_STATE(5773)] = 140843, + [SMALL_STATE(5774)] = 140908, + [SMALL_STATE(5775)] = 140973, + [SMALL_STATE(5776)] = 141038, + [SMALL_STATE(5777)] = 141103, + [SMALL_STATE(5778)] = 141168, + [SMALL_STATE(5779)] = 141233, + [SMALL_STATE(5780)] = 141298, + [SMALL_STATE(5781)] = 141363, + [SMALL_STATE(5782)] = 141428, + [SMALL_STATE(5783)] = 141493, + [SMALL_STATE(5784)] = 141558, + [SMALL_STATE(5785)] = 141623, + [SMALL_STATE(5786)] = 141688, + [SMALL_STATE(5787)] = 141753, + [SMALL_STATE(5788)] = 141818, + [SMALL_STATE(5789)] = 141883, + [SMALL_STATE(5790)] = 141948, + [SMALL_STATE(5791)] = 142013, + [SMALL_STATE(5792)] = 142078, + [SMALL_STATE(5793)] = 142143, + [SMALL_STATE(5794)] = 142208, + [SMALL_STATE(5795)] = 142273, + [SMALL_STATE(5796)] = 142338, + [SMALL_STATE(5797)] = 142403, + [SMALL_STATE(5798)] = 142468, + [SMALL_STATE(5799)] = 142533, + [SMALL_STATE(5800)] = 142598, + [SMALL_STATE(5801)] = 142663, + [SMALL_STATE(5802)] = 142728, + [SMALL_STATE(5803)] = 142793, + [SMALL_STATE(5804)] = 142858, + [SMALL_STATE(5805)] = 142923, + [SMALL_STATE(5806)] = 142988, + [SMALL_STATE(5807)] = 143053, + [SMALL_STATE(5808)] = 143118, + [SMALL_STATE(5809)] = 143183, + [SMALL_STATE(5810)] = 143248, + [SMALL_STATE(5811)] = 143313, + [SMALL_STATE(5812)] = 143378, + [SMALL_STATE(5813)] = 143443, + [SMALL_STATE(5814)] = 143508, + [SMALL_STATE(5815)] = 143573, + [SMALL_STATE(5816)] = 143638, + [SMALL_STATE(5817)] = 143703, + [SMALL_STATE(5818)] = 143768, + [SMALL_STATE(5819)] = 143833, + [SMALL_STATE(5820)] = 143898, + [SMALL_STATE(5821)] = 143963, + [SMALL_STATE(5822)] = 144028, + [SMALL_STATE(5823)] = 144093, + [SMALL_STATE(5824)] = 144158, + [SMALL_STATE(5825)] = 144223, + [SMALL_STATE(5826)] = 144288, + [SMALL_STATE(5827)] = 144353, + [SMALL_STATE(5828)] = 144418, + [SMALL_STATE(5829)] = 144483, + [SMALL_STATE(5830)] = 144548, + [SMALL_STATE(5831)] = 144613, + [SMALL_STATE(5832)] = 144678, + [SMALL_STATE(5833)] = 144743, + [SMALL_STATE(5834)] = 144808, + [SMALL_STATE(5835)] = 144873, + [SMALL_STATE(5836)] = 144938, + [SMALL_STATE(5837)] = 145003, + [SMALL_STATE(5838)] = 145068, + [SMALL_STATE(5839)] = 145133, + [SMALL_STATE(5840)] = 145198, + [SMALL_STATE(5841)] = 145263, + [SMALL_STATE(5842)] = 145328, + [SMALL_STATE(5843)] = 145393, + [SMALL_STATE(5844)] = 145458, + [SMALL_STATE(5845)] = 145523, + [SMALL_STATE(5846)] = 145588, + [SMALL_STATE(5847)] = 145653, + [SMALL_STATE(5848)] = 145718, + [SMALL_STATE(5849)] = 145783, + [SMALL_STATE(5850)] = 145848, + [SMALL_STATE(5851)] = 145913, + [SMALL_STATE(5852)] = 145978, + [SMALL_STATE(5853)] = 146043, + [SMALL_STATE(5854)] = 146108, + [SMALL_STATE(5855)] = 146173, + [SMALL_STATE(5856)] = 146238, + [SMALL_STATE(5857)] = 146303, + [SMALL_STATE(5858)] = 146368, + [SMALL_STATE(5859)] = 146433, + [SMALL_STATE(5860)] = 146498, + [SMALL_STATE(5861)] = 146563, + [SMALL_STATE(5862)] = 146628, + [SMALL_STATE(5863)] = 146693, + [SMALL_STATE(5864)] = 146758, + [SMALL_STATE(5865)] = 146823, + [SMALL_STATE(5866)] = 146888, + [SMALL_STATE(5867)] = 146953, + [SMALL_STATE(5868)] = 147018, + [SMALL_STATE(5869)] = 147083, + [SMALL_STATE(5870)] = 147148, + [SMALL_STATE(5871)] = 147213, + [SMALL_STATE(5872)] = 147278, + [SMALL_STATE(5873)] = 147343, + [SMALL_STATE(5874)] = 147408, + [SMALL_STATE(5875)] = 147473, + [SMALL_STATE(5876)] = 147538, + [SMALL_STATE(5877)] = 147603, + [SMALL_STATE(5878)] = 147668, + [SMALL_STATE(5879)] = 147733, + [SMALL_STATE(5880)] = 147798, + [SMALL_STATE(5881)] = 147863, + [SMALL_STATE(5882)] = 147928, + [SMALL_STATE(5883)] = 147993, + [SMALL_STATE(5884)] = 148058, + [SMALL_STATE(5885)] = 148123, + [SMALL_STATE(5886)] = 148188, + [SMALL_STATE(5887)] = 148253, + [SMALL_STATE(5888)] = 148318, + [SMALL_STATE(5889)] = 148383, + [SMALL_STATE(5890)] = 148448, + [SMALL_STATE(5891)] = 148513, + [SMALL_STATE(5892)] = 148578, + [SMALL_STATE(5893)] = 148643, + [SMALL_STATE(5894)] = 148708, + [SMALL_STATE(5895)] = 148773, + [SMALL_STATE(5896)] = 148838, + [SMALL_STATE(5897)] = 148903, + [SMALL_STATE(5898)] = 148968, + [SMALL_STATE(5899)] = 149033, + [SMALL_STATE(5900)] = 149098, + [SMALL_STATE(5901)] = 149163, + [SMALL_STATE(5902)] = 149228, + [SMALL_STATE(5903)] = 149293, + [SMALL_STATE(5904)] = 149358, + [SMALL_STATE(5905)] = 149423, + [SMALL_STATE(5906)] = 149488, + [SMALL_STATE(5907)] = 149553, + [SMALL_STATE(5908)] = 149618, + [SMALL_STATE(5909)] = 149683, + [SMALL_STATE(5910)] = 149748, + [SMALL_STATE(5911)] = 149813, + [SMALL_STATE(5912)] = 149878, + [SMALL_STATE(5913)] = 149943, + [SMALL_STATE(5914)] = 150008, + [SMALL_STATE(5915)] = 150073, + [SMALL_STATE(5916)] = 150138, + [SMALL_STATE(5917)] = 150203, + [SMALL_STATE(5918)] = 150268, + [SMALL_STATE(5919)] = 150333, + [SMALL_STATE(5920)] = 150398, + [SMALL_STATE(5921)] = 150463, + [SMALL_STATE(5922)] = 150528, + [SMALL_STATE(5923)] = 150593, + [SMALL_STATE(5924)] = 150658, + [SMALL_STATE(5925)] = 150723, + [SMALL_STATE(5926)] = 150788, + [SMALL_STATE(5927)] = 150853, + [SMALL_STATE(5928)] = 150918, + [SMALL_STATE(5929)] = 150983, + [SMALL_STATE(5930)] = 151048, + [SMALL_STATE(5931)] = 151113, + [SMALL_STATE(5932)] = 151178, + [SMALL_STATE(5933)] = 151243, + [SMALL_STATE(5934)] = 151308, + [SMALL_STATE(5935)] = 151373, + [SMALL_STATE(5936)] = 151438, + [SMALL_STATE(5937)] = 151503, + [SMALL_STATE(5938)] = 151568, + [SMALL_STATE(5939)] = 151633, + [SMALL_STATE(5940)] = 151698, + [SMALL_STATE(5941)] = 151763, + [SMALL_STATE(5942)] = 151828, + [SMALL_STATE(5943)] = 151893, + [SMALL_STATE(5944)] = 151958, + [SMALL_STATE(5945)] = 152023, + [SMALL_STATE(5946)] = 152088, + [SMALL_STATE(5947)] = 152153, + [SMALL_STATE(5948)] = 152218, + [SMALL_STATE(5949)] = 152283, + [SMALL_STATE(5950)] = 152348, + [SMALL_STATE(5951)] = 152413, + [SMALL_STATE(5952)] = 152478, + [SMALL_STATE(5953)] = 152543, + [SMALL_STATE(5954)] = 152608, + [SMALL_STATE(5955)] = 152673, + [SMALL_STATE(5956)] = 152738, + [SMALL_STATE(5957)] = 152803, + [SMALL_STATE(5958)] = 152868, + [SMALL_STATE(5959)] = 152933, + [SMALL_STATE(5960)] = 152998, + [SMALL_STATE(5961)] = 153063, + [SMALL_STATE(5962)] = 153128, + [SMALL_STATE(5963)] = 153193, + [SMALL_STATE(5964)] = 153258, + [SMALL_STATE(5965)] = 153323, + [SMALL_STATE(5966)] = 153388, + [SMALL_STATE(5967)] = 153453, + [SMALL_STATE(5968)] = 153518, + [SMALL_STATE(5969)] = 153583, + [SMALL_STATE(5970)] = 153648, + [SMALL_STATE(5971)] = 153713, + [SMALL_STATE(5972)] = 153778, + [SMALL_STATE(5973)] = 153843, + [SMALL_STATE(5974)] = 153908, + [SMALL_STATE(5975)] = 153973, + [SMALL_STATE(5976)] = 154038, + [SMALL_STATE(5977)] = 154103, + [SMALL_STATE(5978)] = 154168, + [SMALL_STATE(5979)] = 154233, + [SMALL_STATE(5980)] = 154298, + [SMALL_STATE(5981)] = 154363, + [SMALL_STATE(5982)] = 154428, + [SMALL_STATE(5983)] = 154493, + [SMALL_STATE(5984)] = 154558, + [SMALL_STATE(5985)] = 154623, + [SMALL_STATE(5986)] = 154688, + [SMALL_STATE(5987)] = 154753, + [SMALL_STATE(5988)] = 154818, + [SMALL_STATE(5989)] = 154883, + [SMALL_STATE(5990)] = 154948, + [SMALL_STATE(5991)] = 155013, + [SMALL_STATE(5992)] = 155078, + [SMALL_STATE(5993)] = 155143, + [SMALL_STATE(5994)] = 155208, + [SMALL_STATE(5995)] = 155273, + [SMALL_STATE(5996)] = 155338, + [SMALL_STATE(5997)] = 155403, + [SMALL_STATE(5998)] = 155468, + [SMALL_STATE(5999)] = 155533, + [SMALL_STATE(6000)] = 155598, + [SMALL_STATE(6001)] = 155663, + [SMALL_STATE(6002)] = 155728, + [SMALL_STATE(6003)] = 155793, + [SMALL_STATE(6004)] = 155858, + [SMALL_STATE(6005)] = 155923, + [SMALL_STATE(6006)] = 155988, + [SMALL_STATE(6007)] = 156053, + [SMALL_STATE(6008)] = 156118, + [SMALL_STATE(6009)] = 156183, + [SMALL_STATE(6010)] = 156248, + [SMALL_STATE(6011)] = 156313, + [SMALL_STATE(6012)] = 156378, + [SMALL_STATE(6013)] = 156443, + [SMALL_STATE(6014)] = 156508, + [SMALL_STATE(6015)] = 156573, + [SMALL_STATE(6016)] = 156638, + [SMALL_STATE(6017)] = 156703, + [SMALL_STATE(6018)] = 156768, + [SMALL_STATE(6019)] = 156833, + [SMALL_STATE(6020)] = 156898, + [SMALL_STATE(6021)] = 156963, + [SMALL_STATE(6022)] = 157028, + [SMALL_STATE(6023)] = 157093, + [SMALL_STATE(6024)] = 157158, + [SMALL_STATE(6025)] = 157223, + [SMALL_STATE(6026)] = 157288, + [SMALL_STATE(6027)] = 157353, + [SMALL_STATE(6028)] = 157418, + [SMALL_STATE(6029)] = 157483, + [SMALL_STATE(6030)] = 157548, + [SMALL_STATE(6031)] = 157613, + [SMALL_STATE(6032)] = 157678, + [SMALL_STATE(6033)] = 157743, + [SMALL_STATE(6034)] = 157808, + [SMALL_STATE(6035)] = 157873, + [SMALL_STATE(6036)] = 157938, + [SMALL_STATE(6037)] = 158003, + [SMALL_STATE(6038)] = 158068, + [SMALL_STATE(6039)] = 158133, + [SMALL_STATE(6040)] = 158198, + [SMALL_STATE(6041)] = 158263, + [SMALL_STATE(6042)] = 158328, + [SMALL_STATE(6043)] = 158393, + [SMALL_STATE(6044)] = 158458, + [SMALL_STATE(6045)] = 158523, + [SMALL_STATE(6046)] = 158588, + [SMALL_STATE(6047)] = 158653, + [SMALL_STATE(6048)] = 158718, + [SMALL_STATE(6049)] = 158783, + [SMALL_STATE(6050)] = 158848, + [SMALL_STATE(6051)] = 158913, + [SMALL_STATE(6052)] = 158978, + [SMALL_STATE(6053)] = 159043, + [SMALL_STATE(6054)] = 159108, + [SMALL_STATE(6055)] = 159173, + [SMALL_STATE(6056)] = 159238, + [SMALL_STATE(6057)] = 159303, + [SMALL_STATE(6058)] = 159368, + [SMALL_STATE(6059)] = 159433, + [SMALL_STATE(6060)] = 159498, + [SMALL_STATE(6061)] = 159563, + [SMALL_STATE(6062)] = 159628, + [SMALL_STATE(6063)] = 159693, + [SMALL_STATE(6064)] = 159758, + [SMALL_STATE(6065)] = 159823, + [SMALL_STATE(6066)] = 159888, + [SMALL_STATE(6067)] = 159953, + [SMALL_STATE(6068)] = 160018, + [SMALL_STATE(6069)] = 160083, + [SMALL_STATE(6070)] = 160148, + [SMALL_STATE(6071)] = 160213, + [SMALL_STATE(6072)] = 160278, + [SMALL_STATE(6073)] = 160343, + [SMALL_STATE(6074)] = 160408, + [SMALL_STATE(6075)] = 160473, + [SMALL_STATE(6076)] = 160538, + [SMALL_STATE(6077)] = 160603, + [SMALL_STATE(6078)] = 160668, + [SMALL_STATE(6079)] = 160733, + [SMALL_STATE(6080)] = 160798, + [SMALL_STATE(6081)] = 160863, + [SMALL_STATE(6082)] = 160928, + [SMALL_STATE(6083)] = 160993, + [SMALL_STATE(6084)] = 161058, + [SMALL_STATE(6085)] = 161123, + [SMALL_STATE(6086)] = 161188, + [SMALL_STATE(6087)] = 161253, + [SMALL_STATE(6088)] = 161318, + [SMALL_STATE(6089)] = 161383, + [SMALL_STATE(6090)] = 161448, + [SMALL_STATE(6091)] = 161513, + [SMALL_STATE(6092)] = 161578, + [SMALL_STATE(6093)] = 161643, + [SMALL_STATE(6094)] = 161708, + [SMALL_STATE(6095)] = 161773, + [SMALL_STATE(6096)] = 161838, + [SMALL_STATE(6097)] = 161903, + [SMALL_STATE(6098)] = 161968, + [SMALL_STATE(6099)] = 162033, + [SMALL_STATE(6100)] = 162098, + [SMALL_STATE(6101)] = 162163, + [SMALL_STATE(6102)] = 162228, + [SMALL_STATE(6103)] = 162293, + [SMALL_STATE(6104)] = 162358, + [SMALL_STATE(6105)] = 162423, + [SMALL_STATE(6106)] = 162488, + [SMALL_STATE(6107)] = 162553, + [SMALL_STATE(6108)] = 162618, + [SMALL_STATE(6109)] = 162683, + [SMALL_STATE(6110)] = 162748, + [SMALL_STATE(6111)] = 162813, + [SMALL_STATE(6112)] = 162878, + [SMALL_STATE(6113)] = 162943, + [SMALL_STATE(6114)] = 163008, + [SMALL_STATE(6115)] = 163073, + [SMALL_STATE(6116)] = 163138, + [SMALL_STATE(6117)] = 163203, + [SMALL_STATE(6118)] = 163268, + [SMALL_STATE(6119)] = 163333, + [SMALL_STATE(6120)] = 163398, + [SMALL_STATE(6121)] = 163463, + [SMALL_STATE(6122)] = 163528, + [SMALL_STATE(6123)] = 163593, + [SMALL_STATE(6124)] = 163658, + [SMALL_STATE(6125)] = 163723, + [SMALL_STATE(6126)] = 163788, + [SMALL_STATE(6127)] = 163853, + [SMALL_STATE(6128)] = 163918, + [SMALL_STATE(6129)] = 163983, + [SMALL_STATE(6130)] = 164048, + [SMALL_STATE(6131)] = 164113, + [SMALL_STATE(6132)] = 164178, + [SMALL_STATE(6133)] = 164243, + [SMALL_STATE(6134)] = 164308, + [SMALL_STATE(6135)] = 164373, + [SMALL_STATE(6136)] = 164438, + [SMALL_STATE(6137)] = 164503, + [SMALL_STATE(6138)] = 164568, + [SMALL_STATE(6139)] = 164633, + [SMALL_STATE(6140)] = 164698, + [SMALL_STATE(6141)] = 164763, + [SMALL_STATE(6142)] = 164828, + [SMALL_STATE(6143)] = 164893, + [SMALL_STATE(6144)] = 164958, + [SMALL_STATE(6145)] = 165023, + [SMALL_STATE(6146)] = 165088, + [SMALL_STATE(6147)] = 165153, + [SMALL_STATE(6148)] = 165218, + [SMALL_STATE(6149)] = 165283, + [SMALL_STATE(6150)] = 165348, + [SMALL_STATE(6151)] = 165413, + [SMALL_STATE(6152)] = 165478, + [SMALL_STATE(6153)] = 165543, + [SMALL_STATE(6154)] = 165608, + [SMALL_STATE(6155)] = 165673, + [SMALL_STATE(6156)] = 165738, + [SMALL_STATE(6157)] = 165803, + [SMALL_STATE(6158)] = 165868, + [SMALL_STATE(6159)] = 165933, + [SMALL_STATE(6160)] = 165998, + [SMALL_STATE(6161)] = 166063, + [SMALL_STATE(6162)] = 166128, + [SMALL_STATE(6163)] = 166193, + [SMALL_STATE(6164)] = 166258, + [SMALL_STATE(6165)] = 166323, + [SMALL_STATE(6166)] = 166388, + [SMALL_STATE(6167)] = 166453, + [SMALL_STATE(6168)] = 166518, + [SMALL_STATE(6169)] = 166583, + [SMALL_STATE(6170)] = 166648, + [SMALL_STATE(6171)] = 166713, + [SMALL_STATE(6172)] = 166778, + [SMALL_STATE(6173)] = 166843, + [SMALL_STATE(6174)] = 166908, + [SMALL_STATE(6175)] = 166973, + [SMALL_STATE(6176)] = 167038, + [SMALL_STATE(6177)] = 167103, + [SMALL_STATE(6178)] = 167168, + [SMALL_STATE(6179)] = 167233, + [SMALL_STATE(6180)] = 167298, + [SMALL_STATE(6181)] = 167363, + [SMALL_STATE(6182)] = 167428, + [SMALL_STATE(6183)] = 167493, + [SMALL_STATE(6184)] = 167558, + [SMALL_STATE(6185)] = 167623, + [SMALL_STATE(6186)] = 167688, + [SMALL_STATE(6187)] = 167753, + [SMALL_STATE(6188)] = 167818, + [SMALL_STATE(6189)] = 167883, + [SMALL_STATE(6190)] = 167948, + [SMALL_STATE(6191)] = 168013, + [SMALL_STATE(6192)] = 168078, + [SMALL_STATE(6193)] = 168143, + [SMALL_STATE(6194)] = 168208, + [SMALL_STATE(6195)] = 168273, + [SMALL_STATE(6196)] = 168338, + [SMALL_STATE(6197)] = 168403, + [SMALL_STATE(6198)] = 168468, + [SMALL_STATE(6199)] = 168533, + [SMALL_STATE(6200)] = 168598, + [SMALL_STATE(6201)] = 168663, + [SMALL_STATE(6202)] = 168728, + [SMALL_STATE(6203)] = 168793, + [SMALL_STATE(6204)] = 168858, + [SMALL_STATE(6205)] = 168923, + [SMALL_STATE(6206)] = 168988, + [SMALL_STATE(6207)] = 169053, + [SMALL_STATE(6208)] = 169118, + [SMALL_STATE(6209)] = 169183, + [SMALL_STATE(6210)] = 169248, + [SMALL_STATE(6211)] = 169313, + [SMALL_STATE(6212)] = 169378, + [SMALL_STATE(6213)] = 169443, + [SMALL_STATE(6214)] = 169508, + [SMALL_STATE(6215)] = 169573, + [SMALL_STATE(6216)] = 169638, + [SMALL_STATE(6217)] = 169703, + [SMALL_STATE(6218)] = 169768, + [SMALL_STATE(6219)] = 169833, + [SMALL_STATE(6220)] = 169898, + [SMALL_STATE(6221)] = 169963, + [SMALL_STATE(6222)] = 170028, + [SMALL_STATE(6223)] = 170093, + [SMALL_STATE(6224)] = 170158, + [SMALL_STATE(6225)] = 170223, + [SMALL_STATE(6226)] = 170288, + [SMALL_STATE(6227)] = 170353, + [SMALL_STATE(6228)] = 170418, + [SMALL_STATE(6229)] = 170483, + [SMALL_STATE(6230)] = 170548, + [SMALL_STATE(6231)] = 170613, + [SMALL_STATE(6232)] = 170678, + [SMALL_STATE(6233)] = 170743, + [SMALL_STATE(6234)] = 170808, + [SMALL_STATE(6235)] = 170873, + [SMALL_STATE(6236)] = 170938, + [SMALL_STATE(6237)] = 171003, + [SMALL_STATE(6238)] = 171068, + [SMALL_STATE(6239)] = 171133, + [SMALL_STATE(6240)] = 171198, + [SMALL_STATE(6241)] = 171263, + [SMALL_STATE(6242)] = 171328, + [SMALL_STATE(6243)] = 171393, + [SMALL_STATE(6244)] = 171458, + [SMALL_STATE(6245)] = 171523, + [SMALL_STATE(6246)] = 171588, + [SMALL_STATE(6247)] = 171653, + [SMALL_STATE(6248)] = 171718, + [SMALL_STATE(6249)] = 171783, + [SMALL_STATE(6250)] = 171848, + [SMALL_STATE(6251)] = 171913, + [SMALL_STATE(6252)] = 171978, + [SMALL_STATE(6253)] = 172043, + [SMALL_STATE(6254)] = 172108, + [SMALL_STATE(6255)] = 172173, + [SMALL_STATE(6256)] = 172238, + [SMALL_STATE(6257)] = 172303, + [SMALL_STATE(6258)] = 172368, + [SMALL_STATE(6259)] = 172433, + [SMALL_STATE(6260)] = 172498, + [SMALL_STATE(6261)] = 172563, + [SMALL_STATE(6262)] = 172628, + [SMALL_STATE(6263)] = 172693, + [SMALL_STATE(6264)] = 172758, + [SMALL_STATE(6265)] = 172823, + [SMALL_STATE(6266)] = 172888, + [SMALL_STATE(6267)] = 172953, + [SMALL_STATE(6268)] = 173018, + [SMALL_STATE(6269)] = 173083, + [SMALL_STATE(6270)] = 173148, + [SMALL_STATE(6271)] = 173213, + [SMALL_STATE(6272)] = 173278, + [SMALL_STATE(6273)] = 173343, + [SMALL_STATE(6274)] = 173408, + [SMALL_STATE(6275)] = 173473, + [SMALL_STATE(6276)] = 173538, + [SMALL_STATE(6277)] = 173603, + [SMALL_STATE(6278)] = 173668, + [SMALL_STATE(6279)] = 173733, + [SMALL_STATE(6280)] = 173798, + [SMALL_STATE(6281)] = 173863, + [SMALL_STATE(6282)] = 173928, + [SMALL_STATE(6283)] = 173993, + [SMALL_STATE(6284)] = 174058, + [SMALL_STATE(6285)] = 174123, + [SMALL_STATE(6286)] = 174188, + [SMALL_STATE(6287)] = 174253, + [SMALL_STATE(6288)] = 174318, + [SMALL_STATE(6289)] = 174383, + [SMALL_STATE(6290)] = 174448, + [SMALL_STATE(6291)] = 174513, + [SMALL_STATE(6292)] = 174578, + [SMALL_STATE(6293)] = 174643, + [SMALL_STATE(6294)] = 174708, + [SMALL_STATE(6295)] = 174773, + [SMALL_STATE(6296)] = 174838, + [SMALL_STATE(6297)] = 174903, + [SMALL_STATE(6298)] = 174968, + [SMALL_STATE(6299)] = 175033, + [SMALL_STATE(6300)] = 175098, + [SMALL_STATE(6301)] = 175163, + [SMALL_STATE(6302)] = 175228, + [SMALL_STATE(6303)] = 175293, + [SMALL_STATE(6304)] = 175358, + [SMALL_STATE(6305)] = 175423, + [SMALL_STATE(6306)] = 175488, + [SMALL_STATE(6307)] = 175553, + [SMALL_STATE(6308)] = 175618, + [SMALL_STATE(6309)] = 175683, + [SMALL_STATE(6310)] = 175748, + [SMALL_STATE(6311)] = 175813, + [SMALL_STATE(6312)] = 175878, + [SMALL_STATE(6313)] = 175943, + [SMALL_STATE(6314)] = 176008, + [SMALL_STATE(6315)] = 176073, + [SMALL_STATE(6316)] = 176138, + [SMALL_STATE(6317)] = 176203, + [SMALL_STATE(6318)] = 176268, + [SMALL_STATE(6319)] = 176333, + [SMALL_STATE(6320)] = 176398, + [SMALL_STATE(6321)] = 176463, + [SMALL_STATE(6322)] = 176528, + [SMALL_STATE(6323)] = 176593, + [SMALL_STATE(6324)] = 176658, + [SMALL_STATE(6325)] = 176723, + [SMALL_STATE(6326)] = 176788, + [SMALL_STATE(6327)] = 176853, + [SMALL_STATE(6328)] = 176918, + [SMALL_STATE(6329)] = 176983, + [SMALL_STATE(6330)] = 177048, + [SMALL_STATE(6331)] = 177113, + [SMALL_STATE(6332)] = 177178, + [SMALL_STATE(6333)] = 177243, + [SMALL_STATE(6334)] = 177308, + [SMALL_STATE(6335)] = 177373, + [SMALL_STATE(6336)] = 177438, + [SMALL_STATE(6337)] = 177503, + [SMALL_STATE(6338)] = 177568, + [SMALL_STATE(6339)] = 177633, + [SMALL_STATE(6340)] = 177698, + [SMALL_STATE(6341)] = 177763, + [SMALL_STATE(6342)] = 177828, + [SMALL_STATE(6343)] = 177893, + [SMALL_STATE(6344)] = 177958, + [SMALL_STATE(6345)] = 178023, + [SMALL_STATE(6346)] = 178088, + [SMALL_STATE(6347)] = 178153, + [SMALL_STATE(6348)] = 178218, + [SMALL_STATE(6349)] = 178283, + [SMALL_STATE(6350)] = 178348, + [SMALL_STATE(6351)] = 178413, + [SMALL_STATE(6352)] = 178478, + [SMALL_STATE(6353)] = 178543, + [SMALL_STATE(6354)] = 178608, + [SMALL_STATE(6355)] = 178673, + [SMALL_STATE(6356)] = 178738, + [SMALL_STATE(6357)] = 178803, + [SMALL_STATE(6358)] = 178868, + [SMALL_STATE(6359)] = 178933, + [SMALL_STATE(6360)] = 178998, + [SMALL_STATE(6361)] = 179063, + [SMALL_STATE(6362)] = 179128, + [SMALL_STATE(6363)] = 179193, + [SMALL_STATE(6364)] = 179258, + [SMALL_STATE(6365)] = 179323, + [SMALL_STATE(6366)] = 179388, + [SMALL_STATE(6367)] = 179453, + [SMALL_STATE(6368)] = 179518, + [SMALL_STATE(6369)] = 179583, + [SMALL_STATE(6370)] = 179648, + [SMALL_STATE(6371)] = 179713, + [SMALL_STATE(6372)] = 179778, + [SMALL_STATE(6373)] = 179843, + [SMALL_STATE(6374)] = 179908, + [SMALL_STATE(6375)] = 179973, + [SMALL_STATE(6376)] = 180038, + [SMALL_STATE(6377)] = 180103, + [SMALL_STATE(6378)] = 180168, + [SMALL_STATE(6379)] = 180233, + [SMALL_STATE(6380)] = 180298, + [SMALL_STATE(6381)] = 180363, + [SMALL_STATE(6382)] = 180428, + [SMALL_STATE(6383)] = 180493, + [SMALL_STATE(6384)] = 180558, + [SMALL_STATE(6385)] = 180623, + [SMALL_STATE(6386)] = 180688, + [SMALL_STATE(6387)] = 180753, + [SMALL_STATE(6388)] = 180818, + [SMALL_STATE(6389)] = 180883, + [SMALL_STATE(6390)] = 180948, + [SMALL_STATE(6391)] = 181013, + [SMALL_STATE(6392)] = 181078, + [SMALL_STATE(6393)] = 181143, + [SMALL_STATE(6394)] = 181208, + [SMALL_STATE(6395)] = 181273, + [SMALL_STATE(6396)] = 181338, + [SMALL_STATE(6397)] = 181403, + [SMALL_STATE(6398)] = 181468, + [SMALL_STATE(6399)] = 181533, + [SMALL_STATE(6400)] = 181598, + [SMALL_STATE(6401)] = 181663, + [SMALL_STATE(6402)] = 181728, + [SMALL_STATE(6403)] = 181793, + [SMALL_STATE(6404)] = 181858, + [SMALL_STATE(6405)] = 181923, + [SMALL_STATE(6406)] = 181988, + [SMALL_STATE(6407)] = 182053, + [SMALL_STATE(6408)] = 182118, + [SMALL_STATE(6409)] = 182183, + [SMALL_STATE(6410)] = 182248, + [SMALL_STATE(6411)] = 182313, + [SMALL_STATE(6412)] = 182378, + [SMALL_STATE(6413)] = 182443, + [SMALL_STATE(6414)] = 182508, + [SMALL_STATE(6415)] = 182573, + [SMALL_STATE(6416)] = 182638, + [SMALL_STATE(6417)] = 182703, + [SMALL_STATE(6418)] = 182768, + [SMALL_STATE(6419)] = 182833, + [SMALL_STATE(6420)] = 182898, + [SMALL_STATE(6421)] = 182963, + [SMALL_STATE(6422)] = 183028, + [SMALL_STATE(6423)] = 183093, + [SMALL_STATE(6424)] = 183158, + [SMALL_STATE(6425)] = 183223, + [SMALL_STATE(6426)] = 183288, + [SMALL_STATE(6427)] = 183353, + [SMALL_STATE(6428)] = 183418, + [SMALL_STATE(6429)] = 183483, + [SMALL_STATE(6430)] = 183548, + [SMALL_STATE(6431)] = 183613, + [SMALL_STATE(6432)] = 183678, + [SMALL_STATE(6433)] = 183743, + [SMALL_STATE(6434)] = 183808, + [SMALL_STATE(6435)] = 183873, + [SMALL_STATE(6436)] = 183938, + [SMALL_STATE(6437)] = 184003, + [SMALL_STATE(6438)] = 184068, + [SMALL_STATE(6439)] = 184133, + [SMALL_STATE(6440)] = 184198, + [SMALL_STATE(6441)] = 184263, + [SMALL_STATE(6442)] = 184328, + [SMALL_STATE(6443)] = 184393, + [SMALL_STATE(6444)] = 184458, + [SMALL_STATE(6445)] = 184523, + [SMALL_STATE(6446)] = 184588, + [SMALL_STATE(6447)] = 184653, + [SMALL_STATE(6448)] = 184718, + [SMALL_STATE(6449)] = 184783, + [SMALL_STATE(6450)] = 184848, + [SMALL_STATE(6451)] = 184913, + [SMALL_STATE(6452)] = 184978, + [SMALL_STATE(6453)] = 185043, + [SMALL_STATE(6454)] = 185108, + [SMALL_STATE(6455)] = 185173, + [SMALL_STATE(6456)] = 185238, + [SMALL_STATE(6457)] = 185303, + [SMALL_STATE(6458)] = 185368, + [SMALL_STATE(6459)] = 185433, + [SMALL_STATE(6460)] = 185498, + [SMALL_STATE(6461)] = 185563, + [SMALL_STATE(6462)] = 185628, + [SMALL_STATE(6463)] = 185693, + [SMALL_STATE(6464)] = 185758, + [SMALL_STATE(6465)] = 185823, + [SMALL_STATE(6466)] = 185888, + [SMALL_STATE(6467)] = 185953, + [SMALL_STATE(6468)] = 186018, + [SMALL_STATE(6469)] = 186083, + [SMALL_STATE(6470)] = 186148, + [SMALL_STATE(6471)] = 186213, + [SMALL_STATE(6472)] = 186278, + [SMALL_STATE(6473)] = 186343, + [SMALL_STATE(6474)] = 186408, + [SMALL_STATE(6475)] = 186473, + [SMALL_STATE(6476)] = 186538, + [SMALL_STATE(6477)] = 186603, + [SMALL_STATE(6478)] = 186668, + [SMALL_STATE(6479)] = 186733, + [SMALL_STATE(6480)] = 186798, + [SMALL_STATE(6481)] = 186863, + [SMALL_STATE(6482)] = 186928, + [SMALL_STATE(6483)] = 186993, + [SMALL_STATE(6484)] = 187058, + [SMALL_STATE(6485)] = 187123, + [SMALL_STATE(6486)] = 187188, + [SMALL_STATE(6487)] = 187253, + [SMALL_STATE(6488)] = 187318, + [SMALL_STATE(6489)] = 187383, + [SMALL_STATE(6490)] = 187448, + [SMALL_STATE(6491)] = 187513, + [SMALL_STATE(6492)] = 187578, + [SMALL_STATE(6493)] = 187643, + [SMALL_STATE(6494)] = 187708, + [SMALL_STATE(6495)] = 187773, + [SMALL_STATE(6496)] = 187838, + [SMALL_STATE(6497)] = 187903, + [SMALL_STATE(6498)] = 187968, + [SMALL_STATE(6499)] = 188033, + [SMALL_STATE(6500)] = 188098, + [SMALL_STATE(6501)] = 188163, + [SMALL_STATE(6502)] = 188228, + [SMALL_STATE(6503)] = 188293, + [SMALL_STATE(6504)] = 188358, + [SMALL_STATE(6505)] = 188423, + [SMALL_STATE(6506)] = 188488, + [SMALL_STATE(6507)] = 188553, + [SMALL_STATE(6508)] = 188618, + [SMALL_STATE(6509)] = 188683, + [SMALL_STATE(6510)] = 188748, + [SMALL_STATE(6511)] = 188813, + [SMALL_STATE(6512)] = 188878, + [SMALL_STATE(6513)] = 188943, + [SMALL_STATE(6514)] = 189008, + [SMALL_STATE(6515)] = 189073, + [SMALL_STATE(6516)] = 189138, + [SMALL_STATE(6517)] = 189203, + [SMALL_STATE(6518)] = 189268, + [SMALL_STATE(6519)] = 189333, + [SMALL_STATE(6520)] = 189398, + [SMALL_STATE(6521)] = 189463, + [SMALL_STATE(6522)] = 189528, + [SMALL_STATE(6523)] = 189593, + [SMALL_STATE(6524)] = 189658, + [SMALL_STATE(6525)] = 189723, + [SMALL_STATE(6526)] = 189788, + [SMALL_STATE(6527)] = 189853, + [SMALL_STATE(6528)] = 189918, + [SMALL_STATE(6529)] = 189983, + [SMALL_STATE(6530)] = 190048, + [SMALL_STATE(6531)] = 190113, + [SMALL_STATE(6532)] = 190178, + [SMALL_STATE(6533)] = 190243, + [SMALL_STATE(6534)] = 190308, + [SMALL_STATE(6535)] = 190373, + [SMALL_STATE(6536)] = 190438, + [SMALL_STATE(6537)] = 190503, + [SMALL_STATE(6538)] = 190568, + [SMALL_STATE(6539)] = 190633, + [SMALL_STATE(6540)] = 190698, + [SMALL_STATE(6541)] = 190763, + [SMALL_STATE(6542)] = 190828, + [SMALL_STATE(6543)] = 190893, + [SMALL_STATE(6544)] = 190958, + [SMALL_STATE(6545)] = 191023, + [SMALL_STATE(6546)] = 191088, + [SMALL_STATE(6547)] = 191153, + [SMALL_STATE(6548)] = 191218, + [SMALL_STATE(6549)] = 191283, + [SMALL_STATE(6550)] = 191348, + [SMALL_STATE(6551)] = 191413, + [SMALL_STATE(6552)] = 191478, + [SMALL_STATE(6553)] = 191543, + [SMALL_STATE(6554)] = 191608, + [SMALL_STATE(6555)] = 191673, + [SMALL_STATE(6556)] = 191738, + [SMALL_STATE(6557)] = 191803, + [SMALL_STATE(6558)] = 191868, + [SMALL_STATE(6559)] = 191933, + [SMALL_STATE(6560)] = 191998, + [SMALL_STATE(6561)] = 192063, + [SMALL_STATE(6562)] = 192128, + [SMALL_STATE(6563)] = 192193, + [SMALL_STATE(6564)] = 192258, + [SMALL_STATE(6565)] = 192323, + [SMALL_STATE(6566)] = 192388, + [SMALL_STATE(6567)] = 192453, + [SMALL_STATE(6568)] = 192518, + [SMALL_STATE(6569)] = 192583, + [SMALL_STATE(6570)] = 192648, + [SMALL_STATE(6571)] = 192713, + [SMALL_STATE(6572)] = 192778, + [SMALL_STATE(6573)] = 192843, + [SMALL_STATE(6574)] = 192908, + [SMALL_STATE(6575)] = 192973, + [SMALL_STATE(6576)] = 193038, + [SMALL_STATE(6577)] = 193103, + [SMALL_STATE(6578)] = 193168, + [SMALL_STATE(6579)] = 193233, + [SMALL_STATE(6580)] = 193298, + [SMALL_STATE(6581)] = 193363, + [SMALL_STATE(6582)] = 193428, + [SMALL_STATE(6583)] = 193493, + [SMALL_STATE(6584)] = 193558, + [SMALL_STATE(6585)] = 193623, + [SMALL_STATE(6586)] = 193688, + [SMALL_STATE(6587)] = 193753, + [SMALL_STATE(6588)] = 193818, + [SMALL_STATE(6589)] = 193883, + [SMALL_STATE(6590)] = 193948, + [SMALL_STATE(6591)] = 194013, + [SMALL_STATE(6592)] = 194078, + [SMALL_STATE(6593)] = 194143, + [SMALL_STATE(6594)] = 194208, + [SMALL_STATE(6595)] = 194273, + [SMALL_STATE(6596)] = 194338, + [SMALL_STATE(6597)] = 194403, + [SMALL_STATE(6598)] = 194468, + [SMALL_STATE(6599)] = 194533, + [SMALL_STATE(6600)] = 194598, + [SMALL_STATE(6601)] = 194663, + [SMALL_STATE(6602)] = 194728, + [SMALL_STATE(6603)] = 194793, + [SMALL_STATE(6604)] = 194858, + [SMALL_STATE(6605)] = 194923, + [SMALL_STATE(6606)] = 194988, + [SMALL_STATE(6607)] = 195053, + [SMALL_STATE(6608)] = 195118, + [SMALL_STATE(6609)] = 195183, + [SMALL_STATE(6610)] = 195248, + [SMALL_STATE(6611)] = 195313, + [SMALL_STATE(6612)] = 195378, + [SMALL_STATE(6613)] = 195443, + [SMALL_STATE(6614)] = 195508, + [SMALL_STATE(6615)] = 195573, + [SMALL_STATE(6616)] = 195638, + [SMALL_STATE(6617)] = 195703, + [SMALL_STATE(6618)] = 195768, + [SMALL_STATE(6619)] = 195833, + [SMALL_STATE(6620)] = 195898, + [SMALL_STATE(6621)] = 195963, + [SMALL_STATE(6622)] = 196028, + [SMALL_STATE(6623)] = 196093, + [SMALL_STATE(6624)] = 196158, + [SMALL_STATE(6625)] = 196223, + [SMALL_STATE(6626)] = 196288, + [SMALL_STATE(6627)] = 196353, + [SMALL_STATE(6628)] = 196418, + [SMALL_STATE(6629)] = 196483, + [SMALL_STATE(6630)] = 196548, + [SMALL_STATE(6631)] = 196613, + [SMALL_STATE(6632)] = 196678, + [SMALL_STATE(6633)] = 196743, + [SMALL_STATE(6634)] = 196808, + [SMALL_STATE(6635)] = 196873, + [SMALL_STATE(6636)] = 196938, + [SMALL_STATE(6637)] = 197003, + [SMALL_STATE(6638)] = 197068, + [SMALL_STATE(6639)] = 197133, + [SMALL_STATE(6640)] = 197198, + [SMALL_STATE(6641)] = 197263, + [SMALL_STATE(6642)] = 197328, + [SMALL_STATE(6643)] = 197393, + [SMALL_STATE(6644)] = 197458, + [SMALL_STATE(6645)] = 197523, + [SMALL_STATE(6646)] = 197588, + [SMALL_STATE(6647)] = 197653, + [SMALL_STATE(6648)] = 197718, + [SMALL_STATE(6649)] = 197783, + [SMALL_STATE(6650)] = 197848, + [SMALL_STATE(6651)] = 197913, + [SMALL_STATE(6652)] = 197978, + [SMALL_STATE(6653)] = 198043, + [SMALL_STATE(6654)] = 198108, + [SMALL_STATE(6655)] = 198173, + [SMALL_STATE(6656)] = 198238, + [SMALL_STATE(6657)] = 198303, + [SMALL_STATE(6658)] = 198368, + [SMALL_STATE(6659)] = 198433, + [SMALL_STATE(6660)] = 198498, + [SMALL_STATE(6661)] = 198563, + [SMALL_STATE(6662)] = 198628, + [SMALL_STATE(6663)] = 198693, + [SMALL_STATE(6664)] = 198758, + [SMALL_STATE(6665)] = 198823, + [SMALL_STATE(6666)] = 198888, + [SMALL_STATE(6667)] = 198953, + [SMALL_STATE(6668)] = 199018, + [SMALL_STATE(6669)] = 199083, + [SMALL_STATE(6670)] = 199148, + [SMALL_STATE(6671)] = 199213, + [SMALL_STATE(6672)] = 199278, + [SMALL_STATE(6673)] = 199343, + [SMALL_STATE(6674)] = 199408, + [SMALL_STATE(6675)] = 199473, + [SMALL_STATE(6676)] = 199538, + [SMALL_STATE(6677)] = 199603, + [SMALL_STATE(6678)] = 199668, + [SMALL_STATE(6679)] = 199733, + [SMALL_STATE(6680)] = 199798, + [SMALL_STATE(6681)] = 199863, + [SMALL_STATE(6682)] = 199928, + [SMALL_STATE(6683)] = 199993, + [SMALL_STATE(6684)] = 200058, + [SMALL_STATE(6685)] = 200123, + [SMALL_STATE(6686)] = 200188, + [SMALL_STATE(6687)] = 200253, + [SMALL_STATE(6688)] = 200318, + [SMALL_STATE(6689)] = 200383, + [SMALL_STATE(6690)] = 200448, + [SMALL_STATE(6691)] = 200513, + [SMALL_STATE(6692)] = 200578, + [SMALL_STATE(6693)] = 200643, + [SMALL_STATE(6694)] = 200708, + [SMALL_STATE(6695)] = 200773, + [SMALL_STATE(6696)] = 200838, + [SMALL_STATE(6697)] = 200903, + [SMALL_STATE(6698)] = 200968, + [SMALL_STATE(6699)] = 201033, + [SMALL_STATE(6700)] = 201098, + [SMALL_STATE(6701)] = 201163, + [SMALL_STATE(6702)] = 201228, + [SMALL_STATE(6703)] = 201293, + [SMALL_STATE(6704)] = 201358, + [SMALL_STATE(6705)] = 201423, + [SMALL_STATE(6706)] = 201488, + [SMALL_STATE(6707)] = 201553, + [SMALL_STATE(6708)] = 201618, + [SMALL_STATE(6709)] = 201683, + [SMALL_STATE(6710)] = 201748, + [SMALL_STATE(6711)] = 201813, + [SMALL_STATE(6712)] = 201878, + [SMALL_STATE(6713)] = 201943, + [SMALL_STATE(6714)] = 202008, + [SMALL_STATE(6715)] = 202073, + [SMALL_STATE(6716)] = 202138, + [SMALL_STATE(6717)] = 202203, + [SMALL_STATE(6718)] = 202268, + [SMALL_STATE(6719)] = 202333, + [SMALL_STATE(6720)] = 202441, + [SMALL_STATE(6721)] = 202549, + [SMALL_STATE(6722)] = 202658, + [SMALL_STATE(6723)] = 202767, + [SMALL_STATE(6724)] = 202843, + [SMALL_STATE(6725)] = 202951, + [SMALL_STATE(6726)] = 203061, + [SMALL_STATE(6727)] = 203139, + [SMALL_STATE(6728)] = 203215, + [SMALL_STATE(6729)] = 203323, + [SMALL_STATE(6730)] = 203394, + [SMALL_STATE(6731)] = 203499, + [SMALL_STATE(6732)] = 203604, + [SMALL_STATE(6733)] = 203709, + [SMALL_STATE(6734)] = 203784, + [SMALL_STATE(6735)] = 203891, + [SMALL_STATE(6736)] = 203998, + [SMALL_STATE(6737)] = 204103, + [SMALL_STATE(6738)] = 204208, + [SMALL_STATE(6739)] = 204313, + [SMALL_STATE(6740)] = 204418, + [SMALL_STATE(6741)] = 204523, + [SMALL_STATE(6742)] = 204628, + [SMALL_STATE(6743)] = 204733, + [SMALL_STATE(6744)] = 204838, + [SMALL_STATE(6745)] = 204943, + [SMALL_STATE(6746)] = 205048, + [SMALL_STATE(6747)] = 205153, + [SMALL_STATE(6748)] = 205258, + [SMALL_STATE(6749)] = 205334, + [SMALL_STATE(6750)] = 205436, + [SMALL_STATE(6751)] = 205506, + [SMALL_STATE(6752)] = 205576, + [SMALL_STATE(6753)] = 205678, + [SMALL_STATE(6754)] = 205754, + [SMALL_STATE(6755)] = 205856, + [SMALL_STATE(6756)] = 205958, + [SMALL_STATE(6757)] = 206060, + [SMALL_STATE(6758)] = 206162, + [SMALL_STATE(6759)] = 206221, + [SMALL_STATE(6760)] = 206290, + [SMALL_STATE(6761)] = 206389, + [SMALL_STATE(6762)] = 206488, + [SMALL_STATE(6763)] = 206547, + [SMALL_STATE(6764)] = 206612, + [SMALL_STATE(6765)] = 206677, + [SMALL_STATE(6766)] = 206746, + [SMALL_STATE(6767)] = 206810, + [SMALL_STATE(6768)] = 206904, + [SMALL_STATE(6769)] = 206968, + [SMALL_STATE(6770)] = 207034, + [SMALL_STATE(6771)] = 207100, + [SMALL_STATE(6772)] = 207158, + [SMALL_STATE(6773)] = 207252, + [SMALL_STATE(6774)] = 207310, + [SMALL_STATE(6775)] = 207376, + [SMALL_STATE(6776)] = 207442, + [SMALL_STATE(6777)] = 207500, + [SMALL_STATE(6778)] = 207558, + [SMALL_STATE(6779)] = 207616, + [SMALL_STATE(6780)] = 207710, + [SMALL_STATE(6781)] = 207768, + [SMALL_STATE(6782)] = 207826, + [SMALL_STATE(6783)] = 207884, + [SMALL_STATE(6784)] = 207942, + [SMALL_STATE(6785)] = 208036, + [SMALL_STATE(6786)] = 208130, + [SMALL_STATE(6787)] = 208196, + [SMALL_STATE(6788)] = 208254, + [SMALL_STATE(6789)] = 208312, + [SMALL_STATE(6790)] = 208370, + [SMALL_STATE(6791)] = 208428, + [SMALL_STATE(6792)] = 208486, + [SMALL_STATE(6793)] = 208580, + [SMALL_STATE(6794)] = 208638, + [SMALL_STATE(6795)] = 208696, + [SMALL_STATE(6796)] = 208760, + [SMALL_STATE(6797)] = 208824, + [SMALL_STATE(6798)] = 208888, + [SMALL_STATE(6799)] = 208952, + [SMALL_STATE(6800)] = 209010, + [SMALL_STATE(6801)] = 209068, + [SMALL_STATE(6802)] = 209162, + [SMALL_STATE(6803)] = 209256, + [SMALL_STATE(6804)] = 209314, + [SMALL_STATE(6805)] = 209408, + [SMALL_STATE(6806)] = 209502, + [SMALL_STATE(6807)] = 209596, + [SMALL_STATE(6808)] = 209690, + [SMALL_STATE(6809)] = 209748, + [SMALL_STATE(6810)] = 209806, + [SMALL_STATE(6811)] = 209897, + [SMALL_STATE(6812)] = 209988, + [SMALL_STATE(6813)] = 210079, + [SMALL_STATE(6814)] = 210170, + [SMALL_STATE(6815)] = 210261, + [SMALL_STATE(6816)] = 210352, + [SMALL_STATE(6817)] = 210443, + [SMALL_STATE(6818)] = 210538, + [SMALL_STATE(6819)] = 210633, + [SMALL_STATE(6820)] = 210696, + [SMALL_STATE(6821)] = 210787, + [SMALL_STATE(6822)] = 210878, + [SMALL_STATE(6823)] = 210969, + [SMALL_STATE(6824)] = 211060, + [SMALL_STATE(6825)] = 211151, + [SMALL_STATE(6826)] = 211242, + [SMALL_STATE(6827)] = 211333, + [SMALL_STATE(6828)] = 211424, + [SMALL_STATE(6829)] = 211515, + [SMALL_STATE(6830)] = 211610, + [SMALL_STATE(6831)] = 211701, + [SMALL_STATE(6832)] = 211796, + [SMALL_STATE(6833)] = 211887, + [SMALL_STATE(6834)] = 211978, + [SMALL_STATE(6835)] = 212069, + [SMALL_STATE(6836)] = 212160, + [SMALL_STATE(6837)] = 212223, + [SMALL_STATE(6838)] = 212318, + [SMALL_STATE(6839)] = 212381, + [SMALL_STATE(6840)] = 212472, + [SMALL_STATE(6841)] = 212563, + [SMALL_STATE(6842)] = 212654, + [SMALL_STATE(6843)] = 212745, + [SMALL_STATE(6844)] = 212836, + [SMALL_STATE(6845)] = 212927, + [SMALL_STATE(6846)] = 212990, + [SMALL_STATE(6847)] = 213081, + [SMALL_STATE(6848)] = 213172, + [SMALL_STATE(6849)] = 213263, + [SMALL_STATE(6850)] = 213354, + [SMALL_STATE(6851)] = 213445, + [SMALL_STATE(6852)] = 213536, + [SMALL_STATE(6853)] = 213627, + [SMALL_STATE(6854)] = 213722, + [SMALL_STATE(6855)] = 213813, + [SMALL_STATE(6856)] = 213876, + [SMALL_STATE(6857)] = 213967, + [SMALL_STATE(6858)] = 214058, + [SMALL_STATE(6859)] = 214149, + [SMALL_STATE(6860)] = 214240, + [SMALL_STATE(6861)] = 214331, + [SMALL_STATE(6862)] = 214422, + [SMALL_STATE(6863)] = 214517, + [SMALL_STATE(6864)] = 214608, + [SMALL_STATE(6865)] = 214699, + [SMALL_STATE(6866)] = 214760, + [SMALL_STATE(6867)] = 214821, + [SMALL_STATE(6868)] = 214916, + [SMALL_STATE(6869)] = 215011, + [SMALL_STATE(6870)] = 215102, + [SMALL_STATE(6871)] = 215163, + [SMALL_STATE(6872)] = 215254, + [SMALL_STATE(6873)] = 215345, + [SMALL_STATE(6874)] = 215436, + [SMALL_STATE(6875)] = 215527, + [SMALL_STATE(6876)] = 215618, + [SMALL_STATE(6877)] = 215709, + [SMALL_STATE(6878)] = 215800, + [SMALL_STATE(6879)] = 215891, + [SMALL_STATE(6880)] = 215982, + [SMALL_STATE(6881)] = 216077, + [SMALL_STATE(6882)] = 216168, + [SMALL_STATE(6883)] = 216259, + [SMALL_STATE(6884)] = 216350, + [SMALL_STATE(6885)] = 216441, + [SMALL_STATE(6886)] = 216532, + [SMALL_STATE(6887)] = 216623, + [SMALL_STATE(6888)] = 216714, + [SMALL_STATE(6889)] = 216775, + [SMALL_STATE(6890)] = 216870, + [SMALL_STATE(6891)] = 216961, + [SMALL_STATE(6892)] = 217024, + [SMALL_STATE(6893)] = 217115, + [SMALL_STATE(6894)] = 217206, + [SMALL_STATE(6895)] = 217297, + [SMALL_STATE(6896)] = 217388, + [SMALL_STATE(6897)] = 217479, + [SMALL_STATE(6898)] = 217570, + [SMALL_STATE(6899)] = 217661, + [SMALL_STATE(6900)] = 217752, + [SMALL_STATE(6901)] = 217843, + [SMALL_STATE(6902)] = 217934, + [SMALL_STATE(6903)] = 218025, + [SMALL_STATE(6904)] = 218116, + [SMALL_STATE(6905)] = 218207, + [SMALL_STATE(6906)] = 218298, + [SMALL_STATE(6907)] = 218389, + [SMALL_STATE(6908)] = 218480, + [SMALL_STATE(6909)] = 218571, + [SMALL_STATE(6910)] = 218662, + [SMALL_STATE(6911)] = 218753, + [SMALL_STATE(6912)] = 218844, + [SMALL_STATE(6913)] = 218935, + [SMALL_STATE(6914)] = 219032, + [SMALL_STATE(6915)] = 219123, + [SMALL_STATE(6916)] = 219218, + [SMALL_STATE(6917)] = 219313, + [SMALL_STATE(6918)] = 219404, + [SMALL_STATE(6919)] = 219495, + [SMALL_STATE(6920)] = 219586, + [SMALL_STATE(6921)] = 219677, + [SMALL_STATE(6922)] = 219768, + [SMALL_STATE(6923)] = 219859, + [SMALL_STATE(6924)] = 219954, + [SMALL_STATE(6925)] = 220049, + [SMALL_STATE(6926)] = 220144, + [SMALL_STATE(6927)] = 220235, + [SMALL_STATE(6928)] = 220326, + [SMALL_STATE(6929)] = 220417, + [SMALL_STATE(6930)] = 220508, + [SMALL_STATE(6931)] = 220599, + [SMALL_STATE(6932)] = 220690, + [SMALL_STATE(6933)] = 220781, + [SMALL_STATE(6934)] = 220877, + [SMALL_STATE(6935)] = 220973, + [SMALL_STATE(6936)] = 221033, + [SMALL_STATE(6937)] = 221093, + [SMALL_STATE(6938)] = 221153, + [SMALL_STATE(6939)] = 221249, + [SMALL_STATE(6940)] = 221307, + [SMALL_STATE(6941)] = 221363, + [SMALL_STATE(6942)] = 221421, + [SMALL_STATE(6943)] = 221475, + [SMALL_STATE(6944)] = 221529, + [SMALL_STATE(6945)] = 221587, + [SMALL_STATE(6946)] = 221655, + [SMALL_STATE(6947)] = 221731, + [SMALL_STATE(6948)] = 221799, + [SMALL_STATE(6949)] = 221867, + [SMALL_STATE(6950)] = 221949, + [SMALL_STATE(6951)] = 222017, + [SMALL_STATE(6952)] = 222089, + [SMALL_STATE(6953)] = 222169, + [SMALL_STATE(6954)] = 222247, + [SMALL_STATE(6955)] = 222305, + [SMALL_STATE(6956)] = 222363, + [SMALL_STATE(6957)] = 222421, + [SMALL_STATE(6958)] = 222477, + [SMALL_STATE(6959)] = 222535, + [SMALL_STATE(6960)] = 222593, + [SMALL_STATE(6961)] = 222671, + [SMALL_STATE(6962)] = 222729, + [SMALL_STATE(6963)] = 222785, + [SMALL_STATE(6964)] = 222852, + [SMALL_STATE(6965)] = 222905, + [SMALL_STATE(6966)] = 222958, + [SMALL_STATE(6967)] = 223011, + [SMALL_STATE(6968)] = 223064, + [SMALL_STATE(6969)] = 223117, + [SMALL_STATE(6970)] = 223170, + [SMALL_STATE(6971)] = 223223, + [SMALL_STATE(6972)] = 223280, + [SMALL_STATE(6973)] = 223333, + [SMALL_STATE(6974)] = 223386, + [SMALL_STATE(6975)] = 223439, + [SMALL_STATE(6976)] = 223492, + [SMALL_STATE(6977)] = 223545, + [SMALL_STATE(6978)] = 223598, + [SMALL_STATE(6979)] = 223651, + [SMALL_STATE(6980)] = 223704, + [SMALL_STATE(6981)] = 223757, + [SMALL_STATE(6982)] = 223810, + [SMALL_STATE(6983)] = 223863, + [SMALL_STATE(6984)] = 223916, + [SMALL_STATE(6985)] = 223973, + [SMALL_STATE(6986)] = 224026, + [SMALL_STATE(6987)] = 224079, + [SMALL_STATE(6988)] = 224132, + [SMALL_STATE(6989)] = 224185, + [SMALL_STATE(6990)] = 224238, + [SMALL_STATE(6991)] = 224291, + [SMALL_STATE(6992)] = 224344, + [SMALL_STATE(6993)] = 224397, + [SMALL_STATE(6994)] = 224450, + [SMALL_STATE(6995)] = 224503, + [SMALL_STATE(6996)] = 224556, + [SMALL_STATE(6997)] = 224609, + [SMALL_STATE(6998)] = 224662, + [SMALL_STATE(6999)] = 224715, + [SMALL_STATE(7000)] = 224768, + [SMALL_STATE(7001)] = 224821, + [SMALL_STATE(7002)] = 224874, + [SMALL_STATE(7003)] = 224927, + [SMALL_STATE(7004)] = 224980, + [SMALL_STATE(7005)] = 225033, + [SMALL_STATE(7006)] = 225086, + [SMALL_STATE(7007)] = 225139, + [SMALL_STATE(7008)] = 225192, + [SMALL_STATE(7009)] = 225245, + [SMALL_STATE(7010)] = 225304, + [SMALL_STATE(7011)] = 225357, + [SMALL_STATE(7012)] = 225410, + [SMALL_STATE(7013)] = 225463, + [SMALL_STATE(7014)] = 225524, + [SMALL_STATE(7015)] = 225577, + [SMALL_STATE(7016)] = 225630, + [SMALL_STATE(7017)] = 225699, + [SMALL_STATE(7018)] = 225752, + [SMALL_STATE(7019)] = 225819, + [SMALL_STATE(7020)] = 225886, + [SMALL_STATE(7021)] = 225961, + [SMALL_STATE(7022)] = 226042, + [SMALL_STATE(7023)] = 226109, + [SMALL_STATE(7024)] = 226180, + [SMALL_STATE(7025)] = 226259, + [SMALL_STATE(7026)] = 226336, + [SMALL_STATE(7027)] = 226413, + [SMALL_STATE(7028)] = 226466, + [SMALL_STATE(7029)] = 226533, + [SMALL_STATE(7030)] = 226608, + [SMALL_STATE(7031)] = 226689, + [SMALL_STATE(7032)] = 226756, + [SMALL_STATE(7033)] = 226827, + [SMALL_STATE(7034)] = 226906, + [SMALL_STATE(7035)] = 226983, + [SMALL_STATE(7036)] = 227060, + [SMALL_STATE(7037)] = 227117, + [SMALL_STATE(7038)] = 227184, + [SMALL_STATE(7039)] = 227241, + [SMALL_STATE(7040)] = 227308, + [SMALL_STATE(7041)] = 227375, + [SMALL_STATE(7042)] = 227428, + [SMALL_STATE(7043)] = 227495, + [SMALL_STATE(7044)] = 227570, + [SMALL_STATE(7045)] = 227623, + [SMALL_STATE(7046)] = 227686, + [SMALL_STATE(7047)] = 227767, + [SMALL_STATE(7048)] = 227834, + [SMALL_STATE(7049)] = 227905, + [SMALL_STATE(7050)] = 227958, + [SMALL_STATE(7051)] = 228011, + [SMALL_STATE(7052)] = 228090, + [SMALL_STATE(7053)] = 228157, + [SMALL_STATE(7054)] = 228234, + [SMALL_STATE(7055)] = 228311, + [SMALL_STATE(7056)] = 228364, + [SMALL_STATE(7057)] = 228417, + [SMALL_STATE(7058)] = 228470, + [SMALL_STATE(7059)] = 228523, + [SMALL_STATE(7060)] = 228586, + [SMALL_STATE(7061)] = 228651, + [SMALL_STATE(7062)] = 228704, + [SMALL_STATE(7063)] = 228757, + [SMALL_STATE(7064)] = 228822, + [SMALL_STATE(7065)] = 228875, + [SMALL_STATE(7066)] = 228928, + [SMALL_STATE(7067)] = 228981, + [SMALL_STATE(7068)] = 229041, + [SMALL_STATE(7069)] = 229099, + [SMALL_STATE(7070)] = 229161, + [SMALL_STATE(7071)] = 229225, + [SMALL_STATE(7072)] = 229289, + [SMALL_STATE(7073)] = 229379, + [SMALL_STATE(7074)] = 229443, + [SMALL_STATE(7075)] = 229505, + [SMALL_STATE(7076)] = 229563, + [SMALL_STATE(7077)] = 229617, + [SMALL_STATE(7078)] = 229675, + [SMALL_STATE(7079)] = 229727, + [SMALL_STATE(7080)] = 229785, + [SMALL_STATE(7081)] = 229837, + [SMALL_STATE(7082)] = 229889, + [SMALL_STATE(7083)] = 229941, + [SMALL_STATE(7084)] = 229995, + [SMALL_STATE(7085)] = 230047, + [SMALL_STATE(7086)] = 230115, + [SMALL_STATE(7087)] = 230177, + [SMALL_STATE(7088)] = 230241, + [SMALL_STATE(7089)] = 230303, + [SMALL_STATE(7090)] = 230357, + [SMALL_STATE(7091)] = 230411, + [SMALL_STATE(7092)] = 230479, + [SMALL_STATE(7093)] = 230531, + [SMALL_STATE(7094)] = 230583, + [SMALL_STATE(7095)] = 230637, + [SMALL_STATE(7096)] = 230689, + [SMALL_STATE(7097)] = 230741, + [SMALL_STATE(7098)] = 230795, + [SMALL_STATE(7099)] = 230847, + [SMALL_STATE(7100)] = 230899, + [SMALL_STATE(7101)] = 230967, + [SMALL_STATE(7102)] = 231029, + [SMALL_STATE(7103)] = 231081, + [SMALL_STATE(7104)] = 231133, + [SMALL_STATE(7105)] = 231187, + [SMALL_STATE(7106)] = 231241, + [SMALL_STATE(7107)] = 231299, + [SMALL_STATE(7108)] = 231389, + [SMALL_STATE(7109)] = 231449, + [SMALL_STATE(7110)] = 231513, + [SMALL_STATE(7111)] = 231577, + [SMALL_STATE(7112)] = 231637, + [SMALL_STATE(7113)] = 231691, + [SMALL_STATE(7114)] = 231746, + [SMALL_STATE(7115)] = 231797, + [SMALL_STATE(7116)] = 231848, + [SMALL_STATE(7117)] = 231899, + [SMALL_STATE(7118)] = 231950, + [SMALL_STATE(7119)] = 232001, + [SMALL_STATE(7120)] = 232056, + [SMALL_STATE(7121)] = 232107, + [SMALL_STATE(7122)] = 232158, + [SMALL_STATE(7123)] = 232209, + [SMALL_STATE(7124)] = 232260, + [SMALL_STATE(7125)] = 232311, + [SMALL_STATE(7126)] = 232362, + [SMALL_STATE(7127)] = 232413, + [SMALL_STATE(7128)] = 232464, + [SMALL_STATE(7129)] = 232515, + [SMALL_STATE(7130)] = 232566, + [SMALL_STATE(7131)] = 232617, + [SMALL_STATE(7132)] = 232668, + [SMALL_STATE(7133)] = 232723, + [SMALL_STATE(7134)] = 232774, + [SMALL_STATE(7135)] = 232825, + [SMALL_STATE(7136)] = 232876, + [SMALL_STATE(7137)] = 232927, + [SMALL_STATE(7138)] = 232978, + [SMALL_STATE(7139)] = 233029, + [SMALL_STATE(7140)] = 233080, + [SMALL_STATE(7141)] = 233131, + [SMALL_STATE(7142)] = 233182, + [SMALL_STATE(7143)] = 233233, + [SMALL_STATE(7144)] = 233284, + [SMALL_STATE(7145)] = 233335, + [SMALL_STATE(7146)] = 233386, + [SMALL_STATE(7147)] = 233437, + [SMALL_STATE(7148)] = 233488, + [SMALL_STATE(7149)] = 233539, + [SMALL_STATE(7150)] = 233590, + [SMALL_STATE(7151)] = 233641, + [SMALL_STATE(7152)] = 233696, + [SMALL_STATE(7153)] = 233751, + [SMALL_STATE(7154)] = 233802, + [SMALL_STATE(7155)] = 233853, + [SMALL_STATE(7156)] = 233904, + [SMALL_STATE(7157)] = 233959, + [SMALL_STATE(7158)] = 234010, + [SMALL_STATE(7159)] = 234061, + [SMALL_STATE(7160)] = 234112, + [SMALL_STATE(7161)] = 234163, + [SMALL_STATE(7162)] = 234214, + [SMALL_STATE(7163)] = 234265, + [SMALL_STATE(7164)] = 234316, + [SMALL_STATE(7165)] = 234367, + [SMALL_STATE(7166)] = 234418, + [SMALL_STATE(7167)] = 234469, + [SMALL_STATE(7168)] = 234520, + [SMALL_STATE(7169)] = 234571, + [SMALL_STATE(7170)] = 234622, + [SMALL_STATE(7171)] = 234673, + [SMALL_STATE(7172)] = 234724, + [SMALL_STATE(7173)] = 234775, + [SMALL_STATE(7174)] = 234826, + [SMALL_STATE(7175)] = 234877, + [SMALL_STATE(7176)] = 234928, + [SMALL_STATE(7177)] = 234979, + [SMALL_STATE(7178)] = 235036, + [SMALL_STATE(7179)] = 235093, + [SMALL_STATE(7180)] = 235144, + [SMALL_STATE(7181)] = 235195, + [SMALL_STATE(7182)] = 235246, + [SMALL_STATE(7183)] = 235297, + [SMALL_STATE(7184)] = 235348, + [SMALL_STATE(7185)] = 235399, + [SMALL_STATE(7186)] = 235450, + [SMALL_STATE(7187)] = 235501, + [SMALL_STATE(7188)] = 235552, + [SMALL_STATE(7189)] = 235603, + [SMALL_STATE(7190)] = 235654, + [SMALL_STATE(7191)] = 235705, + [SMALL_STATE(7192)] = 235756, + [SMALL_STATE(7193)] = 235807, + [SMALL_STATE(7194)] = 235858, + [SMALL_STATE(7195)] = 235909, + [SMALL_STATE(7196)] = 235960, + [SMALL_STATE(7197)] = 236011, + [SMALL_STATE(7198)] = 236062, + [SMALL_STATE(7199)] = 236113, + [SMALL_STATE(7200)] = 236164, + [SMALL_STATE(7201)] = 236215, + [SMALL_STATE(7202)] = 236266, + [SMALL_STATE(7203)] = 236317, + [SMALL_STATE(7204)] = 236368, + [SMALL_STATE(7205)] = 236419, + [SMALL_STATE(7206)] = 236470, + [SMALL_STATE(7207)] = 236521, + [SMALL_STATE(7208)] = 236572, + [SMALL_STATE(7209)] = 236623, + [SMALL_STATE(7210)] = 236674, + [SMALL_STATE(7211)] = 236725, + [SMALL_STATE(7212)] = 236776, + [SMALL_STATE(7213)] = 236827, + [SMALL_STATE(7214)] = 236878, + [SMALL_STATE(7215)] = 236929, + [SMALL_STATE(7216)] = 236980, + [SMALL_STATE(7217)] = 237031, + [SMALL_STATE(7218)] = 237082, + [SMALL_STATE(7219)] = 237133, + [SMALL_STATE(7220)] = 237184, + [SMALL_STATE(7221)] = 237235, + [SMALL_STATE(7222)] = 237290, + [SMALL_STATE(7223)] = 237341, + [SMALL_STATE(7224)] = 237392, + [SMALL_STATE(7225)] = 237447, + [SMALL_STATE(7226)] = 237498, + [SMALL_STATE(7227)] = 237553, + [SMALL_STATE(7228)] = 237608, + [SMALL_STATE(7229)] = 237659, + [SMALL_STATE(7230)] = 237710, + [SMALL_STATE(7231)] = 237761, + [SMALL_STATE(7232)] = 237812, + [SMALL_STATE(7233)] = 237863, + [SMALL_STATE(7234)] = 237914, + [SMALL_STATE(7235)] = 237965, + [SMALL_STATE(7236)] = 238016, + [SMALL_STATE(7237)] = 238067, + [SMALL_STATE(7238)] = 238118, + [SMALL_STATE(7239)] = 238169, + [SMALL_STATE(7240)] = 238220, + [SMALL_STATE(7241)] = 238271, + [SMALL_STATE(7242)] = 238322, + [SMALL_STATE(7243)] = 238373, + [SMALL_STATE(7244)] = 238424, + [SMALL_STATE(7245)] = 238475, + [SMALL_STATE(7246)] = 238526, + [SMALL_STATE(7247)] = 238577, + [SMALL_STATE(7248)] = 238628, + [SMALL_STATE(7249)] = 238679, + [SMALL_STATE(7250)] = 238730, + [SMALL_STATE(7251)] = 238781, + [SMALL_STATE(7252)] = 238832, + [SMALL_STATE(7253)] = 238883, + [SMALL_STATE(7254)] = 238934, + [SMALL_STATE(7255)] = 238985, + [SMALL_STATE(7256)] = 239036, + [SMALL_STATE(7257)] = 239087, + [SMALL_STATE(7258)] = 239138, + [SMALL_STATE(7259)] = 239189, + [SMALL_STATE(7260)] = 239240, + [SMALL_STATE(7261)] = 239291, + [SMALL_STATE(7262)] = 239342, + [SMALL_STATE(7263)] = 239399, + [SMALL_STATE(7264)] = 239456, + [SMALL_STATE(7265)] = 239507, + [SMALL_STATE(7266)] = 239558, + [SMALL_STATE(7267)] = 239609, + [SMALL_STATE(7268)] = 239660, + [SMALL_STATE(7269)] = 239711, + [SMALL_STATE(7270)] = 239768, + [SMALL_STATE(7271)] = 239819, + [SMALL_STATE(7272)] = 239870, + [SMALL_STATE(7273)] = 239925, + [SMALL_STATE(7274)] = 239980, + [SMALL_STATE(7275)] = 240031, + [SMALL_STATE(7276)] = 240082, + [SMALL_STATE(7277)] = 240139, + [SMALL_STATE(7278)] = 240190, + [SMALL_STATE(7279)] = 240241, + [SMALL_STATE(7280)] = 240292, + [SMALL_STATE(7281)] = 240343, + [SMALL_STATE(7282)] = 240394, + [SMALL_STATE(7283)] = 240449, + [SMALL_STATE(7284)] = 240500, + [SMALL_STATE(7285)] = 240551, + [SMALL_STATE(7286)] = 240602, + [SMALL_STATE(7287)] = 240659, + [SMALL_STATE(7288)] = 240710, + [SMALL_STATE(7289)] = 240761, + [SMALL_STATE(7290)] = 240812, + [SMALL_STATE(7291)] = 240863, + [SMALL_STATE(7292)] = 240914, + [SMALL_STATE(7293)] = 240971, + [SMALL_STATE(7294)] = 241022, + [SMALL_STATE(7295)] = 241073, + [SMALL_STATE(7296)] = 241124, + [SMALL_STATE(7297)] = 241179, + [SMALL_STATE(7298)] = 241230, + [SMALL_STATE(7299)] = 241285, + [SMALL_STATE(7300)] = 241336, + [SMALL_STATE(7301)] = 241387, + [SMALL_STATE(7302)] = 241442, + [SMALL_STATE(7303)] = 241493, + [SMALL_STATE(7304)] = 241544, + [SMALL_STATE(7305)] = 241595, + [SMALL_STATE(7306)] = 241651, + [SMALL_STATE(7307)] = 241739, + [SMALL_STATE(7308)] = 241793, + [SMALL_STATE(7309)] = 241847, + [SMALL_STATE(7310)] = 241901, + [SMALL_STATE(7311)] = 241955, + [SMALL_STATE(7312)] = 242011, + [SMALL_STATE(7313)] = 242065, + [SMALL_STATE(7314)] = 242119, + [SMALL_STATE(7315)] = 242173, + [SMALL_STATE(7316)] = 242261, + [SMALL_STATE(7317)] = 242315, + [SMALL_STATE(7318)] = 242403, + [SMALL_STATE(7319)] = 242491, + [SMALL_STATE(7320)] = 242547, + [SMALL_STATE(7321)] = 242601, + [SMALL_STATE(7322)] = 242655, + [SMALL_STATE(7323)] = 242709, + [SMALL_STATE(7324)] = 242763, + [SMALL_STATE(7325)] = 242819, + [SMALL_STATE(7326)] = 242907, + [SMALL_STATE(7327)] = 242993, + [SMALL_STATE(7328)] = 243049, + [SMALL_STATE(7329)] = 243105, + [SMALL_STATE(7330)] = 243168, + [SMALL_STATE(7331)] = 243231, + [SMALL_STATE(7332)] = 243302, + [SMALL_STATE(7333)] = 243375, + [SMALL_STATE(7334)] = 243442, + [SMALL_STATE(7335)] = 243495, + [SMALL_STATE(7336)] = 243558, + [SMALL_STATE(7337)] = 243627, + [SMALL_STATE(7338)] = 243698, + [SMALL_STATE(7339)] = 243751, + [SMALL_STATE(7340)] = 243838, + [SMALL_STATE(7341)] = 243909, + [SMALL_STATE(7342)] = 243972, + [SMALL_STATE(7343)] = 244039, + [SMALL_STATE(7344)] = 244114, + [SMALL_STATE(7345)] = 244177, + [SMALL_STATE(7346)] = 244240, + [SMALL_STATE(7347)] = 244313, + [SMALL_STATE(7348)] = 244366, + [SMALL_STATE(7349)] = 244435, + [SMALL_STATE(7350)] = 244498, + [SMALL_STATE(7351)] = 244573, + [SMALL_STATE(7352)] = 244644, + [SMALL_STATE(7353)] = 244707, + [SMALL_STATE(7354)] = 244767, + [SMALL_STATE(7355)] = 244823, + [SMALL_STATE(7356)] = 244907, + [SMALL_STATE(7357)] = 244969, + [SMALL_STATE(7358)] = 245027, + [SMALL_STATE(7359)] = 245081, + [SMALL_STATE(7360)] = 245148, + [SMALL_STATE(7361)] = 245199, + [SMALL_STATE(7362)] = 245264, + [SMALL_STATE(7363)] = 245337, + [SMALL_STATE(7364)] = 245398, + [SMALL_STATE(7365)] = 245459, + [SMALL_STATE(7366)] = 245520, + [SMALL_STATE(7367)] = 245581, + [SMALL_STATE(7368)] = 245632, + [SMALL_STATE(7369)] = 245697, + [SMALL_STATE(7370)] = 245768, + [SMALL_STATE(7371)] = 245819, + [SMALL_STATE(7372)] = 245880, + [SMALL_STATE(7373)] = 245941, + [SMALL_STATE(7374)] = 246008, + [SMALL_STATE(7375)] = 246055, + [SMALL_STATE(7376)] = 246124, + [SMALL_STATE(7377)] = 246185, + [SMALL_STATE(7378)] = 246254, + [SMALL_STATE(7379)] = 246323, + [SMALL_STATE(7380)] = 246384, + [SMALL_STATE(7381)] = 246455, + [SMALL_STATE(7382)] = 246504, + [SMALL_STATE(7383)] = 246577, + [SMALL_STATE(7384)] = 246632, + [SMALL_STATE(7385)] = 246701, + [SMALL_STATE(7386)] = 246762, + [SMALL_STATE(7387)] = 246823, + [SMALL_STATE(7388)] = 246890, + [SMALL_STATE(7389)] = 246963, + [SMALL_STATE(7390)] = 247024, + [SMALL_STATE(7391)] = 247089, + [SMALL_STATE(7392)] = 247140, + [SMALL_STATE(7393)] = 247201, + [SMALL_STATE(7394)] = 247272, + [SMALL_STATE(7395)] = 247333, + [SMALL_STATE(7396)] = 247404, + [SMALL_STATE(7397)] = 247473, + [SMALL_STATE(7398)] = 247540, + [SMALL_STATE(7399)] = 247591, + [SMALL_STATE(7400)] = 247642, + [SMALL_STATE(7401)] = 247703, + [SMALL_STATE(7402)] = 247772, + [SMALL_STATE(7403)] = 247833, + [SMALL_STATE(7404)] = 247898, + [SMALL_STATE(7405)] = 247947, + [SMALL_STATE(7406)] = 248018, + [SMALL_STATE(7407)] = 248079, + [SMALL_STATE(7408)] = 248144, + [SMALL_STATE(7409)] = 248227, + [SMALL_STATE(7410)] = 248288, + [SMALL_STATE(7411)] = 248371, + [SMALL_STATE(7412)] = 248432, + [SMALL_STATE(7413)] = 248505, + [SMALL_STATE(7414)] = 248578, + [SMALL_STATE(7415)] = 248631, + [SMALL_STATE(7416)] = 248692, + [SMALL_STATE(7417)] = 248741, + [SMALL_STATE(7418)] = 248802, + [SMALL_STATE(7419)] = 248871, + [SMALL_STATE(7420)] = 248938, + [SMALL_STATE(7421)] = 248985, + [SMALL_STATE(7422)] = 249054, + [SMALL_STATE(7423)] = 249107, + [SMALL_STATE(7424)] = 249176, + [SMALL_STATE(7425)] = 249245, + [SMALL_STATE(7426)] = 249291, + [SMALL_STATE(7427)] = 249337, + [SMALL_STATE(7428)] = 249383, + [SMALL_STATE(7429)] = 249429, + [SMALL_STATE(7430)] = 249475, + [SMALL_STATE(7431)] = 249521, + [SMALL_STATE(7432)] = 249567, + [SMALL_STATE(7433)] = 249613, + [SMALL_STATE(7434)] = 249659, + [SMALL_STATE(7435)] = 249705, + [SMALL_STATE(7436)] = 249751, + [SMALL_STATE(7437)] = 249797, + [SMALL_STATE(7438)] = 249843, + [SMALL_STATE(7439)] = 249889, + [SMALL_STATE(7440)] = 249935, + [SMALL_STATE(7441)] = 249981, + [SMALL_STATE(7442)] = 250027, + [SMALL_STATE(7443)] = 250073, + [SMALL_STATE(7444)] = 250119, + [SMALL_STATE(7445)] = 250165, + [SMALL_STATE(7446)] = 250211, + [SMALL_STATE(7447)] = 250257, + [SMALL_STATE(7448)] = 250303, + [SMALL_STATE(7449)] = 250349, + [SMALL_STATE(7450)] = 250395, + [SMALL_STATE(7451)] = 250441, + [SMALL_STATE(7452)] = 250511, + [SMALL_STATE(7453)] = 250569, + [SMALL_STATE(7454)] = 250615, + [SMALL_STATE(7455)] = 250675, + [SMALL_STATE(7456)] = 250741, + [SMALL_STATE(7457)] = 250813, + [SMALL_STATE(7458)] = 250863, + [SMALL_STATE(7459)] = 250923, + [SMALL_STATE(7460)] = 250987, + [SMALL_STATE(7461)] = 251033, + [SMALL_STATE(7462)] = 251079, + [SMALL_STATE(7463)] = 251139, + [SMALL_STATE(7464)] = 251185, + [SMALL_STATE(7465)] = 251231, + [SMALL_STATE(7466)] = 251277, + [SMALL_STATE(7467)] = 251337, + [SMALL_STATE(7468)] = 251383, + [SMALL_STATE(7469)] = 251429, + [SMALL_STATE(7470)] = 251475, + [SMALL_STATE(7471)] = 251521, + [SMALL_STATE(7472)] = 251603, + [SMALL_STATE(7473)] = 251649, + [SMALL_STATE(7474)] = 251717, + [SMALL_STATE(7475)] = 251763, + [SMALL_STATE(7476)] = 251845, + [SMALL_STATE(7477)] = 251891, + [SMALL_STATE(7478)] = 251937, + [SMALL_STATE(7479)] = 251987, + [SMALL_STATE(7480)] = 252037, + [SMALL_STATE(7481)] = 252087, + [SMALL_STATE(7482)] = 252133, + [SMALL_STATE(7483)] = 252183, + [SMALL_STATE(7484)] = 252265, + [SMALL_STATE(7485)] = 252311, + [SMALL_STATE(7486)] = 252357, + [SMALL_STATE(7487)] = 252403, + [SMALL_STATE(7488)] = 252449, + [SMALL_STATE(7489)] = 252495, + [SMALL_STATE(7490)] = 252541, + [SMALL_STATE(7491)] = 252609, + [SMALL_STATE(7492)] = 252655, + [SMALL_STATE(7493)] = 252701, + [SMALL_STATE(7494)] = 252747, + [SMALL_STATE(7495)] = 252793, + [SMALL_STATE(7496)] = 252839, + [SMALL_STATE(7497)] = 252885, + [SMALL_STATE(7498)] = 252931, + [SMALL_STATE(7499)] = 252977, + [SMALL_STATE(7500)] = 253029, + [SMALL_STATE(7501)] = 253081, + [SMALL_STATE(7502)] = 253127, + [SMALL_STATE(7503)] = 253173, + [SMALL_STATE(7504)] = 253219, + [SMALL_STATE(7505)] = 253265, + [SMALL_STATE(7506)] = 253311, + [SMALL_STATE(7507)] = 253361, + [SMALL_STATE(7508)] = 253411, + [SMALL_STATE(7509)] = 253469, + [SMALL_STATE(7510)] = 253519, + [SMALL_STATE(7511)] = 253565, + [SMALL_STATE(7512)] = 253611, + [SMALL_STATE(7513)] = 253657, + [SMALL_STATE(7514)] = 253739, + [SMALL_STATE(7515)] = 253797, + [SMALL_STATE(7516)] = 253847, + [SMALL_STATE(7517)] = 253893, + [SMALL_STATE(7518)] = 253943, + [SMALL_STATE(7519)] = 253989, + [SMALL_STATE(7520)] = 254035, + [SMALL_STATE(7521)] = 254081, + [SMALL_STATE(7522)] = 254139, + [SMALL_STATE(7523)] = 254186, + [SMALL_STATE(7524)] = 254241, + [SMALL_STATE(7525)] = 254288, + [SMALL_STATE(7526)] = 254335, + [SMALL_STATE(7527)] = 254384, + [SMALL_STATE(7528)] = 254439, + [SMALL_STATE(7529)] = 254484, + [SMALL_STATE(7530)] = 254539, + [SMALL_STATE(7531)] = 254594, + [SMALL_STATE(7532)] = 254643, + [SMALL_STATE(7533)] = 254688, + [SMALL_STATE(7534)] = 254737, + [SMALL_STATE(7535)] = 254786, + [SMALL_STATE(7536)] = 254841, + [SMALL_STATE(7537)] = 254890, + [SMALL_STATE(7538)] = 254941, + [SMALL_STATE(7539)] = 254996, + [SMALL_STATE(7540)] = 255047, + [SMALL_STATE(7541)] = 255098, + [SMALL_STATE(7542)] = 255153, + [SMALL_STATE(7543)] = 255198, + [SMALL_STATE(7544)] = 255253, + [SMALL_STATE(7545)] = 255300, + [SMALL_STATE(7546)] = 255355, + [SMALL_STATE(7547)] = 255404, + [SMALL_STATE(7548)] = 255449, + [SMALL_STATE(7549)] = 255496, + [SMALL_STATE(7550)] = 255549, + [SMALL_STATE(7551)] = 255598, + [SMALL_STATE(7552)] = 255653, + [SMALL_STATE(7553)] = 255700, + [SMALL_STATE(7554)] = 255744, + [SMALL_STATE(7555)] = 255788, + [SMALL_STATE(7556)] = 255832, + [SMALL_STATE(7557)] = 255876, + [SMALL_STATE(7558)] = 255920, + [SMALL_STATE(7559)] = 255968, + [SMALL_STATE(7560)] = 256016, + [SMALL_STATE(7561)] = 256060, + [SMALL_STATE(7562)] = 256104, + [SMALL_STATE(7563)] = 256148, + [SMALL_STATE(7564)] = 256196, + [SMALL_STATE(7565)] = 256242, + [SMALL_STATE(7566)] = 256286, + [SMALL_STATE(7567)] = 256332, + [SMALL_STATE(7568)] = 256376, + [SMALL_STATE(7569)] = 256420, + [SMALL_STATE(7570)] = 256464, + [SMALL_STATE(7571)] = 256508, + [SMALL_STATE(7572)] = 256552, + [SMALL_STATE(7573)] = 256600, + [SMALL_STATE(7574)] = 256644, + [SMALL_STATE(7575)] = 256688, + [SMALL_STATE(7576)] = 256732, + [SMALL_STATE(7577)] = 256776, + [SMALL_STATE(7578)] = 256820, + [SMALL_STATE(7579)] = 256864, + [SMALL_STATE(7580)] = 256912, + [SMALL_STATE(7581)] = 256958, + [SMALL_STATE(7582)] = 257002, + [SMALL_STATE(7583)] = 257050, + [SMALL_STATE(7584)] = 257094, + [SMALL_STATE(7585)] = 257142, + [SMALL_STATE(7586)] = 257186, + [SMALL_STATE(7587)] = 257230, + [SMALL_STATE(7588)] = 257278, + [SMALL_STATE(7589)] = 257322, + [SMALL_STATE(7590)] = 257366, + [SMALL_STATE(7591)] = 257410, + [SMALL_STATE(7592)] = 257454, + [SMALL_STATE(7593)] = 257498, + [SMALL_STATE(7594)] = 257542, + [SMALL_STATE(7595)] = 257586, + [SMALL_STATE(7596)] = 257630, + [SMALL_STATE(7597)] = 257678, + [SMALL_STATE(7598)] = 257722, + [SMALL_STATE(7599)] = 257766, + [SMALL_STATE(7600)] = 257810, + [SMALL_STATE(7601)] = 257854, + [SMALL_STATE(7602)] = 257898, + [SMALL_STATE(7603)] = 257942, + [SMALL_STATE(7604)] = 257986, + [SMALL_STATE(7605)] = 258030, + [SMALL_STATE(7606)] = 258074, + [SMALL_STATE(7607)] = 258118, + [SMALL_STATE(7608)] = 258162, + [SMALL_STATE(7609)] = 258206, + [SMALL_STATE(7610)] = 258250, + [SMALL_STATE(7611)] = 258294, + [SMALL_STATE(7612)] = 258338, + [SMALL_STATE(7613)] = 258386, + [SMALL_STATE(7614)] = 258430, + [SMALL_STATE(7615)] = 258474, + [SMALL_STATE(7616)] = 258518, + [SMALL_STATE(7617)] = 258562, + [SMALL_STATE(7618)] = 258610, + [SMALL_STATE(7619)] = 258654, + [SMALL_STATE(7620)] = 258698, + [SMALL_STATE(7621)] = 258742, + [SMALL_STATE(7622)] = 258786, + [SMALL_STATE(7623)] = 258830, + [SMALL_STATE(7624)] = 258874, + [SMALL_STATE(7625)] = 258918, + [SMALL_STATE(7626)] = 258962, + [SMALL_STATE(7627)] = 259006, + [SMALL_STATE(7628)] = 259054, + [SMALL_STATE(7629)] = 259098, + [SMALL_STATE(7630)] = 259142, + [SMALL_STATE(7631)] = 259186, + [SMALL_STATE(7632)] = 259230, + [SMALL_STATE(7633)] = 259274, + [SMALL_STATE(7634)] = 259318, + [SMALL_STATE(7635)] = 259364, + [SMALL_STATE(7636)] = 259408, + [SMALL_STATE(7637)] = 259452, + [SMALL_STATE(7638)] = 259496, + [SMALL_STATE(7639)] = 259540, + [SMALL_STATE(7640)] = 259584, + [SMALL_STATE(7641)] = 259628, + [SMALL_STATE(7642)] = 259676, + [SMALL_STATE(7643)] = 259724, + [SMALL_STATE(7644)] = 259768, + [SMALL_STATE(7645)] = 259812, + [SMALL_STATE(7646)] = 259856, + [SMALL_STATE(7647)] = 259906, + [SMALL_STATE(7648)] = 259950, + [SMALL_STATE(7649)] = 259994, + [SMALL_STATE(7650)] = 260038, + [SMALL_STATE(7651)] = 260082, + [SMALL_STATE(7652)] = 260126, + [SMALL_STATE(7653)] = 260170, + [SMALL_STATE(7654)] = 260214, + [SMALL_STATE(7655)] = 260262, + [SMALL_STATE(7656)] = 260308, + [SMALL_STATE(7657)] = 260352, + [SMALL_STATE(7658)] = 260396, + [SMALL_STATE(7659)] = 260442, + [SMALL_STATE(7660)] = 260486, + [SMALL_STATE(7661)] = 260530, + [SMALL_STATE(7662)] = 260574, + [SMALL_STATE(7663)] = 260618, + [SMALL_STATE(7664)] = 260664, + [SMALL_STATE(7665)] = 260708, + [SMALL_STATE(7666)] = 260752, + [SMALL_STATE(7667)] = 260796, + [SMALL_STATE(7668)] = 260840, + [SMALL_STATE(7669)] = 260884, + [SMALL_STATE(7670)] = 260928, + [SMALL_STATE(7671)] = 260972, + [SMALL_STATE(7672)] = 261016, + [SMALL_STATE(7673)] = 261064, + [SMALL_STATE(7674)] = 261108, + [SMALL_STATE(7675)] = 261156, + [SMALL_STATE(7676)] = 261204, + [SMALL_STATE(7677)] = 261248, + [SMALL_STATE(7678)] = 261294, + [SMALL_STATE(7679)] = 261338, + [SMALL_STATE(7680)] = 261384, + [SMALL_STATE(7681)] = 261428, + [SMALL_STATE(7682)] = 261472, + [SMALL_STATE(7683)] = 261516, + [SMALL_STATE(7684)] = 261562, + [SMALL_STATE(7685)] = 261606, + [SMALL_STATE(7686)] = 261650, + [SMALL_STATE(7687)] = 261694, + [SMALL_STATE(7688)] = 261738, + [SMALL_STATE(7689)] = 261782, + [SMALL_STATE(7690)] = 261830, + [SMALL_STATE(7691)] = 261878, + [SMALL_STATE(7692)] = 261922, + [SMALL_STATE(7693)] = 261966, + [SMALL_STATE(7694)] = 262010, + [SMALL_STATE(7695)] = 262058, + [SMALL_STATE(7696)] = 262102, + [SMALL_STATE(7697)] = 262146, + [SMALL_STATE(7698)] = 262190, + [SMALL_STATE(7699)] = 262234, + [SMALL_STATE(7700)] = 262282, + [SMALL_STATE(7701)] = 262330, + [SMALL_STATE(7702)] = 262374, + [SMALL_STATE(7703)] = 262422, + [SMALL_STATE(7704)] = 262470, + [SMALL_STATE(7705)] = 262518, + [SMALL_STATE(7706)] = 262561, + [SMALL_STATE(7707)] = 262606, + [SMALL_STATE(7708)] = 262649, + [SMALL_STATE(7709)] = 262694, + [SMALL_STATE(7710)] = 262737, + [SMALL_STATE(7711)] = 262784, + [SMALL_STATE(7712)] = 262827, + [SMALL_STATE(7713)] = 262870, + [SMALL_STATE(7714)] = 262913, + [SMALL_STATE(7715)] = 262956, + [SMALL_STATE(7716)] = 262999, + [SMALL_STATE(7717)] = 263044, + [SMALL_STATE(7718)] = 263089, + [SMALL_STATE(7719)] = 263132, + [SMALL_STATE(7720)] = 263175, + [SMALL_STATE(7721)] = 263218, + [SMALL_STATE(7722)] = 263265, + [SMALL_STATE(7723)] = 263312, + [SMALL_STATE(7724)] = 263355, + [SMALL_STATE(7725)] = 263398, + [SMALL_STATE(7726)] = 263443, + [SMALL_STATE(7727)] = 263486, + [SMALL_STATE(7728)] = 263529, + [SMALL_STATE(7729)] = 263574, + [SMALL_STATE(7730)] = 263619, + [SMALL_STATE(7731)] = 263664, + [SMALL_STATE(7732)] = 263709, + [SMALL_STATE(7733)] = 263754, + [SMALL_STATE(7734)] = 263799, + [SMALL_STATE(7735)] = 263846, + [SMALL_STATE(7736)] = 263893, + [SMALL_STATE(7737)] = 263940, + [SMALL_STATE(7738)] = 263987, + [SMALL_STATE(7739)] = 264032, + [SMALL_STATE(7740)] = 264077, + [SMALL_STATE(7741)] = 264120, + [SMALL_STATE(7742)] = 264163, + [SMALL_STATE(7743)] = 264210, + [SMALL_STATE(7744)] = 264253, + [SMALL_STATE(7745)] = 264296, + [SMALL_STATE(7746)] = 264341, + [SMALL_STATE(7747)] = 264384, + [SMALL_STATE(7748)] = 264427, + [SMALL_STATE(7749)] = 264470, + [SMALL_STATE(7750)] = 264517, + [SMALL_STATE(7751)] = 264562, + [SMALL_STATE(7752)] = 264607, + [SMALL_STATE(7753)] = 264652, + [SMALL_STATE(7754)] = 264695, + [SMALL_STATE(7755)] = 264738, + [SMALL_STATE(7756)] = 264783, + [SMALL_STATE(7757)] = 264828, + [SMALL_STATE(7758)] = 264871, + [SMALL_STATE(7759)] = 264914, + [SMALL_STATE(7760)] = 264959, + [SMALL_STATE(7761)] = 265006, + [SMALL_STATE(7762)] = 265049, + [SMALL_STATE(7763)] = 265096, + [SMALL_STATE(7764)] = 265143, + [SMALL_STATE(7765)] = 265190, + [SMALL_STATE(7766)] = 265233, + [SMALL_STATE(7767)] = 265278, + [SMALL_STATE(7768)] = 265323, + [SMALL_STATE(7769)] = 265368, + [SMALL_STATE(7770)] = 265415, + [SMALL_STATE(7771)] = 265462, + [SMALL_STATE(7772)] = 265509, + [SMALL_STATE(7773)] = 265556, + [SMALL_STATE(7774)] = 265599, + [SMALL_STATE(7775)] = 265642, + [SMALL_STATE(7776)] = 265689, + [SMALL_STATE(7777)] = 265736, + [SMALL_STATE(7778)] = 265781, + [SMALL_STATE(7779)] = 265824, + [SMALL_STATE(7780)] = 265872, + [SMALL_STATE(7781)] = 265916, + [SMALL_STATE(7782)] = 265958, + [SMALL_STATE(7783)] = 266006, + [SMALL_STATE(7784)] = 266050, + [SMALL_STATE(7785)] = 266096, + [SMALL_STATE(7786)] = 266140, + [SMALL_STATE(7787)] = 266184, + [SMALL_STATE(7788)] = 266226, + [SMALL_STATE(7789)] = 266274, + [SMALL_STATE(7790)] = 266316, + [SMALL_STATE(7791)] = 266360, + [SMALL_STATE(7792)] = 266401, + [SMALL_STATE(7793)] = 266444, + [SMALL_STATE(7794)] = 266487, + [SMALL_STATE(7795)] = 266528, + [SMALL_STATE(7796)] = 266569, + [SMALL_STATE(7797)] = 266610, + [SMALL_STATE(7798)] = 266651, + [SMALL_STATE(7799)] = 266692, + [SMALL_STATE(7800)] = 266733, + [SMALL_STATE(7801)] = 266774, + [SMALL_STATE(7802)] = 266815, + [SMALL_STATE(7803)] = 266856, + [SMALL_STATE(7804)] = 266897, + [SMALL_STATE(7805)] = 266938, + [SMALL_STATE(7806)] = 266979, + [SMALL_STATE(7807)] = 267020, + [SMALL_STATE(7808)] = 267061, + [SMALL_STATE(7809)] = 267102, + [SMALL_STATE(7810)] = 267143, + [SMALL_STATE(7811)] = 267184, + [SMALL_STATE(7812)] = 267227, + [SMALL_STATE(7813)] = 267270, + [SMALL_STATE(7814)] = 267313, + [SMALL_STATE(7815)] = 267356, + [SMALL_STATE(7816)] = 267399, + [SMALL_STATE(7817)] = 267442, + [SMALL_STATE(7818)] = 267483, + [SMALL_STATE(7819)] = 267526, + [SMALL_STATE(7820)] = 267567, + [SMALL_STATE(7821)] = 267610, + [SMALL_STATE(7822)] = 267653, + [SMALL_STATE(7823)] = 267727, + [SMALL_STATE(7824)] = 267801, + [SMALL_STATE(7825)] = 267853, + [SMALL_STATE(7826)] = 267905, + [SMALL_STATE(7827)] = 267956, + [SMALL_STATE(7828)] = 268025, + [SMALL_STATE(7829)] = 268076, + [SMALL_STATE(7830)] = 268145, + [SMALL_STATE(7831)] = 268196, + [SMALL_STATE(7832)] = 268265, + [SMALL_STATE(7833)] = 268334, + [SMALL_STATE(7834)] = 268385, + [SMALL_STATE(7835)] = 268454, + [SMALL_STATE(7836)] = 268505, + [SMALL_STATE(7837)] = 268574, + [SMALL_STATE(7838)] = 268643, + [SMALL_STATE(7839)] = 268712, + [SMALL_STATE(7840)] = 268781, + [SMALL_STATE(7841)] = 268850, + [SMALL_STATE(7842)] = 268919, + [SMALL_STATE(7843)] = 268988, + [SMALL_STATE(7844)] = 269057, + [SMALL_STATE(7845)] = 269126, + [SMALL_STATE(7846)] = 269195, + [SMALL_STATE(7847)] = 269246, + [SMALL_STATE(7848)] = 269314, + [SMALL_STATE(7849)] = 269382, + [SMALL_STATE(7850)] = 269450, + [SMALL_STATE(7851)] = 269518, + [SMALL_STATE(7852)] = 269586, + [SMALL_STATE(7853)] = 269654, + [SMALL_STATE(7854)] = 269722, + [SMALL_STATE(7855)] = 269790, + [SMALL_STATE(7856)] = 269858, + [SMALL_STATE(7857)] = 269926, + [SMALL_STATE(7858)] = 269994, + [SMALL_STATE(7859)] = 270062, + [SMALL_STATE(7860)] = 270130, + [SMALL_STATE(7861)] = 270198, + [SMALL_STATE(7862)] = 270264, + [SMALL_STATE(7863)] = 270332, + [SMALL_STATE(7864)] = 270400, + [SMALL_STATE(7865)] = 270468, + [SMALL_STATE(7866)] = 270536, + [SMALL_STATE(7867)] = 270604, + [SMALL_STATE(7868)] = 270672, + [SMALL_STATE(7869)] = 270740, + [SMALL_STATE(7870)] = 270808, + [SMALL_STATE(7871)] = 270876, + [SMALL_STATE(7872)] = 270944, + [SMALL_STATE(7873)] = 271012, + [SMALL_STATE(7874)] = 271080, + [SMALL_STATE(7875)] = 271148, + [SMALL_STATE(7876)] = 271214, + [SMALL_STATE(7877)] = 271282, + [SMALL_STATE(7878)] = 271350, + [SMALL_STATE(7879)] = 271390, + [SMALL_STATE(7880)] = 271458, + [SMALL_STATE(7881)] = 271526, + [SMALL_STATE(7882)] = 271564, + [SMALL_STATE(7883)] = 271602, + [SMALL_STATE(7884)] = 271670, + [SMALL_STATE(7885)] = 271708, + [SMALL_STATE(7886)] = 271776, + [SMALL_STATE(7887)] = 271814, + [SMALL_STATE(7888)] = 271882, + [SMALL_STATE(7889)] = 271950, + [SMALL_STATE(7890)] = 272018, + [SMALL_STATE(7891)] = 272083, + [SMALL_STATE(7892)] = 272148, + [SMALL_STATE(7893)] = 272211, + [SMALL_STATE(7894)] = 272276, + [SMALL_STATE(7895)] = 272341, + [SMALL_STATE(7896)] = 272406, + [SMALL_STATE(7897)] = 272469, + [SMALL_STATE(7898)] = 272532, + [SMALL_STATE(7899)] = 272595, + [SMALL_STATE(7900)] = 272661, + [SMALL_STATE(7901)] = 272727, + [SMALL_STATE(7902)] = 272793, + [SMALL_STATE(7903)] = 272859, + [SMALL_STATE(7904)] = 272925, + [SMALL_STATE(7905)] = 272985, + [SMALL_STATE(7906)] = 273051, + [SMALL_STATE(7907)] = 273117, + [SMALL_STATE(7908)] = 273183, + [SMALL_STATE(7909)] = 273243, + [SMALL_STATE(7910)] = 273309, + [SMALL_STATE(7911)] = 273375, + [SMALL_STATE(7912)] = 273441, + [SMALL_STATE(7913)] = 273507, + [SMALL_STATE(7914)] = 273573, + [SMALL_STATE(7915)] = 273639, + [SMALL_STATE(7916)] = 273705, + [SMALL_STATE(7917)] = 273771, + [SMALL_STATE(7918)] = 273837, + [SMALL_STATE(7919)] = 273903, + [SMALL_STATE(7920)] = 273969, + [SMALL_STATE(7921)] = 274035, + [SMALL_STATE(7922)] = 274082, + [SMALL_STATE(7923)] = 274145, + [SMALL_STATE(7924)] = 274192, + [SMALL_STATE(7925)] = 274239, + [SMALL_STATE(7926)] = 274286, + [SMALL_STATE(7927)] = 274344, + [SMALL_STATE(7928)] = 274402, + [SMALL_STATE(7929)] = 274436, + [SMALL_STATE(7930)] = 274494, + [SMALL_STATE(7931)] = 274528, + [SMALL_STATE(7932)] = 274562, + [SMALL_STATE(7933)] = 274620, + [SMALL_STATE(7934)] = 274654, + [SMALL_STATE(7935)] = 274690, + [SMALL_STATE(7936)] = 274724, + [SMALL_STATE(7937)] = 274758, + [SMALL_STATE(7938)] = 274816, + [SMALL_STATE(7939)] = 274874, + [SMALL_STATE(7940)] = 274932, + [SMALL_STATE(7941)] = 274990, + [SMALL_STATE(7942)] = 275035, + [SMALL_STATE(7943)] = 275080, + [SMALL_STATE(7944)] = 275125, + [SMALL_STATE(7945)] = 275170, + [SMALL_STATE(7946)] = 275215, + [SMALL_STATE(7947)] = 275260, + [SMALL_STATE(7948)] = 275303, + [SMALL_STATE(7949)] = 275346, + [SMALL_STATE(7950)] = 275389, + [SMALL_STATE(7951)] = 275432, + [SMALL_STATE(7952)] = 275464, + [SMALL_STATE(7953)] = 275506, + [SMALL_STATE(7954)] = 275544, + [SMALL_STATE(7955)] = 275576, + [SMALL_STATE(7956)] = 275618, + [SMALL_STATE(7957)] = 275652, + [SMALL_STATE(7958)] = 275686, + [SMALL_STATE(7959)] = 275718, + [SMALL_STATE(7960)] = 275756, + [SMALL_STATE(7961)] = 275788, + [SMALL_STATE(7962)] = 275820, + [SMALL_STATE(7963)] = 275852, + [SMALL_STATE(7964)] = 275884, + [SMALL_STATE(7965)] = 275917, + [SMALL_STATE(7966)] = 275950, + [SMALL_STATE(7967)] = 275985, + [SMALL_STATE(7968)] = 276020, + [SMALL_STATE(7969)] = 276055, + [SMALL_STATE(7970)] = 276082, + [SMALL_STATE(7971)] = 276109, + [SMALL_STATE(7972)] = 276140, + [SMALL_STATE(7973)] = 276171, + [SMALL_STATE(7974)] = 276202, + [SMALL_STATE(7975)] = 276233, + [SMALL_STATE(7976)] = 276268, + [SMALL_STATE(7977)] = 276303, + [SMALL_STATE(7978)] = 276330, + [SMALL_STATE(7979)] = 276361, + [SMALL_STATE(7980)] = 276396, + [SMALL_STATE(7981)] = 276431, + [SMALL_STATE(7982)] = 276466, + [SMALL_STATE(7983)] = 276497, + [SMALL_STATE(7984)] = 276532, + [SMALL_STATE(7985)] = 276567, + [SMALL_STATE(7986)] = 276602, + [SMALL_STATE(7987)] = 276637, + [SMALL_STATE(7988)] = 276672, + [SMALL_STATE(7989)] = 276707, + [SMALL_STATE(7990)] = 276742, + [SMALL_STATE(7991)] = 276777, + [SMALL_STATE(7992)] = 276808, + [SMALL_STATE(7993)] = 276838, + [SMALL_STATE(7994)] = 276868, + [SMALL_STATE(7995)] = 276898, + [SMALL_STATE(7996)] = 276928, + [SMALL_STATE(7997)] = 276958, + [SMALL_STATE(7998)] = 277008, + [SMALL_STATE(7999)] = 277058, + [SMALL_STATE(8000)] = 277088, + [SMALL_STATE(8001)] = 277118, + [SMALL_STATE(8002)] = 277168, + [SMALL_STATE(8003)] = 277198, + [SMALL_STATE(8004)] = 277248, + [SMALL_STATE(8005)] = 277298, + [SMALL_STATE(8006)] = 277348, + [SMALL_STATE(8007)] = 277398, + [SMALL_STATE(8008)] = 277448, + [SMALL_STATE(8009)] = 277498, + [SMALL_STATE(8010)] = 277548, + [SMALL_STATE(8011)] = 277578, + [SMALL_STATE(8012)] = 277608, + [SMALL_STATE(8013)] = 277641, + [SMALL_STATE(8014)] = 277674, + [SMALL_STATE(8015)] = 277707, + [SMALL_STATE(8016)] = 277738, + [SMALL_STATE(8017)] = 277767, + [SMALL_STATE(8018)] = 277794, + [SMALL_STATE(8019)] = 277823, + [SMALL_STATE(8020)] = 277856, + [SMALL_STATE(8021)] = 277881, + [SMALL_STATE(8022)] = 277910, + [SMALL_STATE(8023)] = 277939, + [SMALL_STATE(8024)] = 277968, + [SMALL_STATE(8025)] = 277997, + [SMALL_STATE(8026)] = 278026, + [SMALL_STATE(8027)] = 278055, + [SMALL_STATE(8028)] = 278084, + [SMALL_STATE(8029)] = 278113, + [SMALL_STATE(8030)] = 278142, + [SMALL_STATE(8031)] = 278175, + [SMALL_STATE(8032)] = 278206, + [SMALL_STATE(8033)] = 278231, + [SMALL_STATE(8034)] = 278256, + [SMALL_STATE(8035)] = 278281, + [SMALL_STATE(8036)] = 278306, + [SMALL_STATE(8037)] = 278331, + [SMALL_STATE(8038)] = 278360, + [SMALL_STATE(8039)] = 278389, + [SMALL_STATE(8040)] = 278418, + [SMALL_STATE(8041)] = 278447, + [SMALL_STATE(8042)] = 278472, + [SMALL_STATE(8043)] = 278501, + [SMALL_STATE(8044)] = 278530, + [SMALL_STATE(8045)] = 278563, + [SMALL_STATE(8046)] = 278598, + [SMALL_STATE(8047)] = 278633, + [SMALL_STATE(8048)] = 278658, + [SMALL_STATE(8049)] = 278689, + [SMALL_STATE(8050)] = 278718, + [SMALL_STATE(8051)] = 278747, + [SMALL_STATE(8052)] = 278772, + [SMALL_STATE(8053)] = 278797, + [SMALL_STATE(8054)] = 278822, + [SMALL_STATE(8055)] = 278851, + [SMALL_STATE(8056)] = 278884, + [SMALL_STATE(8057)] = 278909, + [SMALL_STATE(8058)] = 278938, + [SMALL_STATE(8059)] = 278967, + [SMALL_STATE(8060)] = 278996, + [SMALL_STATE(8061)] = 279021, + [SMALL_STATE(8062)] = 279049, + [SMALL_STATE(8063)] = 279089, + [SMALL_STATE(8064)] = 279129, + [SMALL_STATE(8065)] = 279169, + [SMALL_STATE(8066)] = 279209, + [SMALL_STATE(8067)] = 279241, + [SMALL_STATE(8068)] = 279271, + [SMALL_STATE(8069)] = 279299, + [SMALL_STATE(8070)] = 279325, + [SMALL_STATE(8071)] = 279357, + [SMALL_STATE(8072)] = 279389, + [SMALL_STATE(8073)] = 279423, + [SMALL_STATE(8074)] = 279457, + [SMALL_STATE(8075)] = 279481, + [SMALL_STATE(8076)] = 279515, + [SMALL_STATE(8077)] = 279549, + [SMALL_STATE(8078)] = 279581, + [SMALL_STATE(8079)] = 279609, + [SMALL_STATE(8080)] = 279639, + [SMALL_STATE(8081)] = 279667, + [SMALL_STATE(8082)] = 279699, + [SMALL_STATE(8083)] = 279731, + [SMALL_STATE(8084)] = 279761, + [SMALL_STATE(8085)] = 279793, + [SMALL_STATE(8086)] = 279825, + [SMALL_STATE(8087)] = 279857, + [SMALL_STATE(8088)] = 279889, + [SMALL_STATE(8089)] = 279917, + [SMALL_STATE(8090)] = 279949, + [SMALL_STATE(8091)] = 279979, + [SMALL_STATE(8092)] = 280007, + [SMALL_STATE(8093)] = 280033, + [SMALL_STATE(8094)] = 280061, + [SMALL_STATE(8095)] = 280087, + [SMALL_STATE(8096)] = 280119, + [SMALL_STATE(8097)] = 280151, + [SMALL_STATE(8098)] = 280179, + [SMALL_STATE(8099)] = 280219, + [SMALL_STATE(8100)] = 280251, + [SMALL_STATE(8101)] = 280279, + [SMALL_STATE(8102)] = 280303, + [SMALL_STATE(8103)] = 280331, + [SMALL_STATE(8104)] = 280363, + [SMALL_STATE(8105)] = 280395, + [SMALL_STATE(8106)] = 280435, + [SMALL_STATE(8107)] = 280467, + [SMALL_STATE(8108)] = 280507, + [SMALL_STATE(8109)] = 280547, + [SMALL_STATE(8110)] = 280579, + [SMALL_STATE(8111)] = 280611, + [SMALL_STATE(8112)] = 280651, + [SMALL_STATE(8113)] = 280691, + [SMALL_STATE(8114)] = 280731, + [SMALL_STATE(8115)] = 280771, + [SMALL_STATE(8116)] = 280811, + [SMALL_STATE(8117)] = 280851, + [SMALL_STATE(8118)] = 280891, + [SMALL_STATE(8119)] = 280931, + [SMALL_STATE(8120)] = 280971, + [SMALL_STATE(8121)] = 281011, + [SMALL_STATE(8122)] = 281051, + [SMALL_STATE(8123)] = 281091, + [SMALL_STATE(8124)] = 281131, + [SMALL_STATE(8125)] = 281171, + [SMALL_STATE(8126)] = 281211, + [SMALL_STATE(8127)] = 281251, + [SMALL_STATE(8128)] = 281291, + [SMALL_STATE(8129)] = 281331, + [SMALL_STATE(8130)] = 281371, + [SMALL_STATE(8131)] = 281411, + [SMALL_STATE(8132)] = 281451, + [SMALL_STATE(8133)] = 281491, + [SMALL_STATE(8134)] = 281531, + [SMALL_STATE(8135)] = 281571, + [SMALL_STATE(8136)] = 281611, + [SMALL_STATE(8137)] = 281651, + [SMALL_STATE(8138)] = 281691, + [SMALL_STATE(8139)] = 281731, + [SMALL_STATE(8140)] = 281771, + [SMALL_STATE(8141)] = 281811, + [SMALL_STATE(8142)] = 281851, + [SMALL_STATE(8143)] = 281891, + [SMALL_STATE(8144)] = 281931, + [SMALL_STATE(8145)] = 281971, + [SMALL_STATE(8146)] = 282011, + [SMALL_STATE(8147)] = 282051, + [SMALL_STATE(8148)] = 282091, + [SMALL_STATE(8149)] = 282131, + [SMALL_STATE(8150)] = 282171, + [SMALL_STATE(8151)] = 282211, + [SMALL_STATE(8152)] = 282239, + [SMALL_STATE(8153)] = 282267, + [SMALL_STATE(8154)] = 282291, + [SMALL_STATE(8155)] = 282319, + [SMALL_STATE(8156)] = 282347, + [SMALL_STATE(8157)] = 282387, + [SMALL_STATE(8158)] = 282427, + [SMALL_STATE(8159)] = 282455, + [SMALL_STATE(8160)] = 282479, + [SMALL_STATE(8161)] = 282519, + [SMALL_STATE(8162)] = 282559, + [SMALL_STATE(8163)] = 282599, + [SMALL_STATE(8164)] = 282627, + [SMALL_STATE(8165)] = 282659, + [SMALL_STATE(8166)] = 282691, + [SMALL_STATE(8167)] = 282731, + [SMALL_STATE(8168)] = 282763, + [SMALL_STATE(8169)] = 282795, + [SMALL_STATE(8170)] = 282835, + [SMALL_STATE(8171)] = 282865, + [SMALL_STATE(8172)] = 282905, + [SMALL_STATE(8173)] = 282945, + [SMALL_STATE(8174)] = 282977, + [SMALL_STATE(8175)] = 283017, + [SMALL_STATE(8176)] = 283057, + [SMALL_STATE(8177)] = 283097, + [SMALL_STATE(8178)] = 283137, + [SMALL_STATE(8179)] = 283177, + [SMALL_STATE(8180)] = 283217, + [SMALL_STATE(8181)] = 283245, + [SMALL_STATE(8182)] = 283285, + [SMALL_STATE(8183)] = 283325, + [SMALL_STATE(8184)] = 283359, + [SMALL_STATE(8185)] = 283393, + [SMALL_STATE(8186)] = 283421, + [SMALL_STATE(8187)] = 283461, + [SMALL_STATE(8188)] = 283489, + [SMALL_STATE(8189)] = 283519, + [SMALL_STATE(8190)] = 283547, + [SMALL_STATE(8191)] = 283587, + [SMALL_STATE(8192)] = 283627, + [SMALL_STATE(8193)] = 283667, + [SMALL_STATE(8194)] = 283707, + [SMALL_STATE(8195)] = 283747, + [SMALL_STATE(8196)] = 283787, + [SMALL_STATE(8197)] = 283826, + [SMALL_STATE(8198)] = 283873, + [SMALL_STATE(8199)] = 283920, + [SMALL_STATE(8200)] = 283967, + [SMALL_STATE(8201)] = 283990, + [SMALL_STATE(8202)] = 284029, + [SMALL_STATE(8203)] = 284052, + [SMALL_STATE(8204)] = 284091, + [SMALL_STATE(8205)] = 284130, + [SMALL_STATE(8206)] = 284169, + [SMALL_STATE(8207)] = 284192, + [SMALL_STATE(8208)] = 284215, + [SMALL_STATE(8209)] = 284238, + [SMALL_STATE(8210)] = 284277, + [SMALL_STATE(8211)] = 284316, + [SMALL_STATE(8212)] = 284339, + [SMALL_STATE(8213)] = 284378, + [SMALL_STATE(8214)] = 284417, + [SMALL_STATE(8215)] = 284456, + [SMALL_STATE(8216)] = 284495, + [SMALL_STATE(8217)] = 284534, + [SMALL_STATE(8218)] = 284581, + [SMALL_STATE(8219)] = 284620, + [SMALL_STATE(8220)] = 284659, + [SMALL_STATE(8221)] = 284688, + [SMALL_STATE(8222)] = 284727, + [SMALL_STATE(8223)] = 284766, + [SMALL_STATE(8224)] = 284805, + [SMALL_STATE(8225)] = 284844, + [SMALL_STATE(8226)] = 284883, + [SMALL_STATE(8227)] = 284912, + [SMALL_STATE(8228)] = 284951, + [SMALL_STATE(8229)] = 284990, + [SMALL_STATE(8230)] = 285029, + [SMALL_STATE(8231)] = 285068, + [SMALL_STATE(8232)] = 285107, + [SMALL_STATE(8233)] = 285146, + [SMALL_STATE(8234)] = 285187, + [SMALL_STATE(8235)] = 285210, + [SMALL_STATE(8236)] = 285243, + [SMALL_STATE(8237)] = 285276, + [SMALL_STATE(8238)] = 285323, + [SMALL_STATE(8239)] = 285362, + [SMALL_STATE(8240)] = 285401, + [SMALL_STATE(8241)] = 285428, + [SMALL_STATE(8242)] = 285467, + [SMALL_STATE(8243)] = 285490, + [SMALL_STATE(8244)] = 285513, + [SMALL_STATE(8245)] = 285560, + [SMALL_STATE(8246)] = 285583, + [SMALL_STATE(8247)] = 285630, + [SMALL_STATE(8248)] = 285677, + [SMALL_STATE(8249)] = 285708, + [SMALL_STATE(8250)] = 285747, + [SMALL_STATE(8251)] = 285794, + [SMALL_STATE(8252)] = 285833, + [SMALL_STATE(8253)] = 285880, + [SMALL_STATE(8254)] = 285927, + [SMALL_STATE(8255)] = 285974, + [SMALL_STATE(8256)] = 286021, + [SMALL_STATE(8257)] = 286060, + [SMALL_STATE(8258)] = 286099, + [SMALL_STATE(8259)] = 286138, + [SMALL_STATE(8260)] = 286177, + [SMALL_STATE(8261)] = 286216, + [SMALL_STATE(8262)] = 286255, + [SMALL_STATE(8263)] = 286294, + [SMALL_STATE(8264)] = 286333, + [SMALL_STATE(8265)] = 286372, + [SMALL_STATE(8266)] = 286419, + [SMALL_STATE(8267)] = 286466, + [SMALL_STATE(8268)] = 286513, + [SMALL_STATE(8269)] = 286552, + [SMALL_STATE(8270)] = 286591, + [SMALL_STATE(8271)] = 286630, + [SMALL_STATE(8272)] = 286677, + [SMALL_STATE(8273)] = 286716, + [SMALL_STATE(8274)] = 286755, + [SMALL_STATE(8275)] = 286794, + [SMALL_STATE(8276)] = 286833, + [SMALL_STATE(8277)] = 286872, + [SMALL_STATE(8278)] = 286911, + [SMALL_STATE(8279)] = 286950, + [SMALL_STATE(8280)] = 286989, + [SMALL_STATE(8281)] = 287028, + [SMALL_STATE(8282)] = 287067, + [SMALL_STATE(8283)] = 287106, + [SMALL_STATE(8284)] = 287145, + [SMALL_STATE(8285)] = 287184, + [SMALL_STATE(8286)] = 287223, + [SMALL_STATE(8287)] = 287262, + [SMALL_STATE(8288)] = 287291, + [SMALL_STATE(8289)] = 287330, + [SMALL_STATE(8290)] = 287369, + [SMALL_STATE(8291)] = 287408, + [SMALL_STATE(8292)] = 287447, + [SMALL_STATE(8293)] = 287478, + [SMALL_STATE(8294)] = 287517, + [SMALL_STATE(8295)] = 287556, + [SMALL_STATE(8296)] = 287595, + [SMALL_STATE(8297)] = 287634, + [SMALL_STATE(8298)] = 287673, + [SMALL_STATE(8299)] = 287712, + [SMALL_STATE(8300)] = 287735, + [SMALL_STATE(8301)] = 287774, + [SMALL_STATE(8302)] = 287813, + [SMALL_STATE(8303)] = 287852, + [SMALL_STATE(8304)] = 287875, + [SMALL_STATE(8305)] = 287914, + [SMALL_STATE(8306)] = 287937, + [SMALL_STATE(8307)] = 287984, + [SMALL_STATE(8308)] = 288007, + [SMALL_STATE(8309)] = 288046, + [SMALL_STATE(8310)] = 288069, + [SMALL_STATE(8311)] = 288108, + [SMALL_STATE(8312)] = 288147, + [SMALL_STATE(8313)] = 288186, + [SMALL_STATE(8314)] = 288225, + [SMALL_STATE(8315)] = 288264, + [SMALL_STATE(8316)] = 288303, + [SMALL_STATE(8317)] = 288330, + [SMALL_STATE(8318)] = 288369, + [SMALL_STATE(8319)] = 288408, + [SMALL_STATE(8320)] = 288447, + [SMALL_STATE(8321)] = 288486, + [SMALL_STATE(8322)] = 288525, + [SMALL_STATE(8323)] = 288564, + [SMALL_STATE(8324)] = 288603, + [SMALL_STATE(8325)] = 288642, + [SMALL_STATE(8326)] = 288675, + [SMALL_STATE(8327)] = 288708, + [SMALL_STATE(8328)] = 288747, + [SMALL_STATE(8329)] = 288776, + [SMALL_STATE(8330)] = 288799, + [SMALL_STATE(8331)] = 288822, + [SMALL_STATE(8332)] = 288845, + [SMALL_STATE(8333)] = 288868, + [SMALL_STATE(8334)] = 288891, + [SMALL_STATE(8335)] = 288914, + [SMALL_STATE(8336)] = 288937, + [SMALL_STATE(8337)] = 288960, + [SMALL_STATE(8338)] = 288999, + [SMALL_STATE(8339)] = 289022, + [SMALL_STATE(8340)] = 289045, + [SMALL_STATE(8341)] = 289092, + [SMALL_STATE(8342)] = 289115, + [SMALL_STATE(8343)] = 289138, + [SMALL_STATE(8344)] = 289161, + [SMALL_STATE(8345)] = 289184, + [SMALL_STATE(8346)] = 289223, + [SMALL_STATE(8347)] = 289262, + [SMALL_STATE(8348)] = 289301, + [SMALL_STATE(8349)] = 289340, + [SMALL_STATE(8350)] = 289379, + [SMALL_STATE(8351)] = 289418, + [SMALL_STATE(8352)] = 289451, + [SMALL_STATE(8353)] = 289490, + [SMALL_STATE(8354)] = 289537, + [SMALL_STATE(8355)] = 289584, + [SMALL_STATE(8356)] = 289623, + [SMALL_STATE(8357)] = 289662, + [SMALL_STATE(8358)] = 289701, + [SMALL_STATE(8359)] = 289740, + [SMALL_STATE(8360)] = 289787, + [SMALL_STATE(8361)] = 289826, + [SMALL_STATE(8362)] = 289851, + [SMALL_STATE(8363)] = 289880, + [SMALL_STATE(8364)] = 289919, + [SMALL_STATE(8365)] = 289958, + [SMALL_STATE(8366)] = 289997, + [SMALL_STATE(8367)] = 290036, + [SMALL_STATE(8368)] = 290075, + [SMALL_STATE(8369)] = 290114, + [SMALL_STATE(8370)] = 290153, + [SMALL_STATE(8371)] = 290192, + [SMALL_STATE(8372)] = 290231, + [SMALL_STATE(8373)] = 290270, + [SMALL_STATE(8374)] = 290309, + [SMALL_STATE(8375)] = 290348, + [SMALL_STATE(8376)] = 290387, + [SMALL_STATE(8377)] = 290426, + [SMALL_STATE(8378)] = 290465, + [SMALL_STATE(8379)] = 290504, + [SMALL_STATE(8380)] = 290543, + [SMALL_STATE(8381)] = 290582, + [SMALL_STATE(8382)] = 290621, + [SMALL_STATE(8383)] = 290660, + [SMALL_STATE(8384)] = 290699, + [SMALL_STATE(8385)] = 290738, + [SMALL_STATE(8386)] = 290777, + [SMALL_STATE(8387)] = 290816, + [SMALL_STATE(8388)] = 290855, + [SMALL_STATE(8389)] = 290894, + [SMALL_STATE(8390)] = 290933, + [SMALL_STATE(8391)] = 290972, + [SMALL_STATE(8392)] = 291011, + [SMALL_STATE(8393)] = 291050, + [SMALL_STATE(8394)] = 291089, + [SMALL_STATE(8395)] = 291128, + [SMALL_STATE(8396)] = 291167, + [SMALL_STATE(8397)] = 291206, + [SMALL_STATE(8398)] = 291245, + [SMALL_STATE(8399)] = 291284, + [SMALL_STATE(8400)] = 291323, + [SMALL_STATE(8401)] = 291362, + [SMALL_STATE(8402)] = 291401, + [SMALL_STATE(8403)] = 291440, + [SMALL_STATE(8404)] = 291479, + [SMALL_STATE(8405)] = 291518, + [SMALL_STATE(8406)] = 291547, + [SMALL_STATE(8407)] = 291594, + [SMALL_STATE(8408)] = 291633, + [SMALL_STATE(8409)] = 291672, + [SMALL_STATE(8410)] = 291711, + [SMALL_STATE(8411)] = 291750, + [SMALL_STATE(8412)] = 291789, + [SMALL_STATE(8413)] = 291828, + [SMALL_STATE(8414)] = 291867, + [SMALL_STATE(8415)] = 291906, + [SMALL_STATE(8416)] = 291945, + [SMALL_STATE(8417)] = 291984, + [SMALL_STATE(8418)] = 292023, + [SMALL_STATE(8419)] = 292062, + [SMALL_STATE(8420)] = 292101, + [SMALL_STATE(8421)] = 292140, + [SMALL_STATE(8422)] = 292179, + [SMALL_STATE(8423)] = 292218, + [SMALL_STATE(8424)] = 292257, + [SMALL_STATE(8425)] = 292296, + [SMALL_STATE(8426)] = 292335, + [SMALL_STATE(8427)] = 292374, + [SMALL_STATE(8428)] = 292413, + [SMALL_STATE(8429)] = 292452, + [SMALL_STATE(8430)] = 292491, + [SMALL_STATE(8431)] = 292530, + [SMALL_STATE(8432)] = 292569, + [SMALL_STATE(8433)] = 292608, + [SMALL_STATE(8434)] = 292647, + [SMALL_STATE(8435)] = 292686, + [SMALL_STATE(8436)] = 292725, + [SMALL_STATE(8437)] = 292764, + [SMALL_STATE(8438)] = 292803, + [SMALL_STATE(8439)] = 292842, + [SMALL_STATE(8440)] = 292881, + [SMALL_STATE(8441)] = 292920, + [SMALL_STATE(8442)] = 292959, + [SMALL_STATE(8443)] = 292998, + [SMALL_STATE(8444)] = 293037, + [SMALL_STATE(8445)] = 293076, + [SMALL_STATE(8446)] = 293115, + [SMALL_STATE(8447)] = 293154, + [SMALL_STATE(8448)] = 293193, + [SMALL_STATE(8449)] = 293232, + [SMALL_STATE(8450)] = 293271, + [SMALL_STATE(8451)] = 293310, + [SMALL_STATE(8452)] = 293349, + [SMALL_STATE(8453)] = 293388, + [SMALL_STATE(8454)] = 293427, + [SMALL_STATE(8455)] = 293466, + [SMALL_STATE(8456)] = 293505, + [SMALL_STATE(8457)] = 293544, + [SMALL_STATE(8458)] = 293583, + [SMALL_STATE(8459)] = 293622, + [SMALL_STATE(8460)] = 293661, + [SMALL_STATE(8461)] = 293700, + [SMALL_STATE(8462)] = 293739, + [SMALL_STATE(8463)] = 293778, + [SMALL_STATE(8464)] = 293817, + [SMALL_STATE(8465)] = 293856, + [SMALL_STATE(8466)] = 293895, + [SMALL_STATE(8467)] = 293934, + [SMALL_STATE(8468)] = 293973, + [SMALL_STATE(8469)] = 294012, + [SMALL_STATE(8470)] = 294051, + [SMALL_STATE(8471)] = 294090, + [SMALL_STATE(8472)] = 294129, + [SMALL_STATE(8473)] = 294168, + [SMALL_STATE(8474)] = 294207, + [SMALL_STATE(8475)] = 294246, + [SMALL_STATE(8476)] = 294285, + [SMALL_STATE(8477)] = 294324, + [SMALL_STATE(8478)] = 294363, + [SMALL_STATE(8479)] = 294402, + [SMALL_STATE(8480)] = 294449, + [SMALL_STATE(8481)] = 294480, + [SMALL_STATE(8482)] = 294503, + [SMALL_STATE(8483)] = 294526, + [SMALL_STATE(8484)] = 294549, + [SMALL_STATE(8485)] = 294572, + [SMALL_STATE(8486)] = 294595, + [SMALL_STATE(8487)] = 294618, + [SMALL_STATE(8488)] = 294657, + [SMALL_STATE(8489)] = 294696, + [SMALL_STATE(8490)] = 294719, + [SMALL_STATE(8491)] = 294741, + [SMALL_STATE(8492)] = 294763, + [SMALL_STATE(8493)] = 294785, + [SMALL_STATE(8494)] = 294807, + [SMALL_STATE(8495)] = 294829, + [SMALL_STATE(8496)] = 294851, + [SMALL_STATE(8497)] = 294873, + [SMALL_STATE(8498)] = 294895, + [SMALL_STATE(8499)] = 294921, + [SMALL_STATE(8500)] = 294943, + [SMALL_STATE(8501)] = 294969, + [SMALL_STATE(8502)] = 294991, + [SMALL_STATE(8503)] = 295017, + [SMALL_STATE(8504)] = 295049, + [SMALL_STATE(8505)] = 295071, + [SMALL_STATE(8506)] = 295093, + [SMALL_STATE(8507)] = 295115, + [SMALL_STATE(8508)] = 295137, + [SMALL_STATE(8509)] = 295159, + [SMALL_STATE(8510)] = 295181, + [SMALL_STATE(8511)] = 295203, + [SMALL_STATE(8512)] = 295225, + [SMALL_STATE(8513)] = 295247, + [SMALL_STATE(8514)] = 295269, + [SMALL_STATE(8515)] = 295291, + [SMALL_STATE(8516)] = 295313, + [SMALL_STATE(8517)] = 295335, + [SMALL_STATE(8518)] = 295357, + [SMALL_STATE(8519)] = 295379, + [SMALL_STATE(8520)] = 295401, + [SMALL_STATE(8521)] = 295423, + [SMALL_STATE(8522)] = 295445, + [SMALL_STATE(8523)] = 295467, + [SMALL_STATE(8524)] = 295489, + [SMALL_STATE(8525)] = 295511, + [SMALL_STATE(8526)] = 295533, + [SMALL_STATE(8527)] = 295555, + [SMALL_STATE(8528)] = 295577, + [SMALL_STATE(8529)] = 295599, + [SMALL_STATE(8530)] = 295631, + [SMALL_STATE(8531)] = 295653, + [SMALL_STATE(8532)] = 295675, + [SMALL_STATE(8533)] = 295697, + [SMALL_STATE(8534)] = 295719, + [SMALL_STATE(8535)] = 295741, + [SMALL_STATE(8536)] = 295763, + [SMALL_STATE(8537)] = 295793, + [SMALL_STATE(8538)] = 295815, + [SMALL_STATE(8539)] = 295841, + [SMALL_STATE(8540)] = 295863, + [SMALL_STATE(8541)] = 295885, + [SMALL_STATE(8542)] = 295915, + [SMALL_STATE(8543)] = 295941, + [SMALL_STATE(8544)] = 295973, + [SMALL_STATE(8545)] = 295995, + [SMALL_STATE(8546)] = 296017, + [SMALL_STATE(8547)] = 296039, + [SMALL_STATE(8548)] = 296061, + [SMALL_STATE(8549)] = 296087, + [SMALL_STATE(8550)] = 296109, + [SMALL_STATE(8551)] = 296131, + [SMALL_STATE(8552)] = 296153, + [SMALL_STATE(8553)] = 296175, + [SMALL_STATE(8554)] = 296197, + [SMALL_STATE(8555)] = 296219, + [SMALL_STATE(8556)] = 296241, + [SMALL_STATE(8557)] = 296263, + [SMALL_STATE(8558)] = 296285, + [SMALL_STATE(8559)] = 296307, + [SMALL_STATE(8560)] = 296329, + [SMALL_STATE(8561)] = 296351, + [SMALL_STATE(8562)] = 296373, + [SMALL_STATE(8563)] = 296395, + [SMALL_STATE(8564)] = 296417, + [SMALL_STATE(8565)] = 296439, + [SMALL_STATE(8566)] = 296473, + [SMALL_STATE(8567)] = 296507, + [SMALL_STATE(8568)] = 296529, + [SMALL_STATE(8569)] = 296553, + [SMALL_STATE(8570)] = 296579, + [SMALL_STATE(8571)] = 296601, + [SMALL_STATE(8572)] = 296623, + [SMALL_STATE(8573)] = 296645, + [SMALL_STATE(8574)] = 296667, + [SMALL_STATE(8575)] = 296689, + [SMALL_STATE(8576)] = 296711, + [SMALL_STATE(8577)] = 296733, + [SMALL_STATE(8578)] = 296755, + [SMALL_STATE(8579)] = 296781, + [SMALL_STATE(8580)] = 296803, + [SMALL_STATE(8581)] = 296825, + [SMALL_STATE(8582)] = 296847, + [SMALL_STATE(8583)] = 296869, + [SMALL_STATE(8584)] = 296891, + [SMALL_STATE(8585)] = 296913, + [SMALL_STATE(8586)] = 296939, + [SMALL_STATE(8587)] = 296961, + [SMALL_STATE(8588)] = 296983, + [SMALL_STATE(8589)] = 297009, + [SMALL_STATE(8590)] = 297033, + [SMALL_STATE(8591)] = 297055, + [SMALL_STATE(8592)] = 297077, + [SMALL_STATE(8593)] = 297099, + [SMALL_STATE(8594)] = 297121, + [SMALL_STATE(8595)] = 297143, + [SMALL_STATE(8596)] = 297165, + [SMALL_STATE(8597)] = 297187, + [SMALL_STATE(8598)] = 297209, + [SMALL_STATE(8599)] = 297231, + [SMALL_STATE(8600)] = 297253, + [SMALL_STATE(8601)] = 297275, + [SMALL_STATE(8602)] = 297297, + [SMALL_STATE(8603)] = 297319, + [SMALL_STATE(8604)] = 297341, + [SMALL_STATE(8605)] = 297363, + [SMALL_STATE(8606)] = 297385, + [SMALL_STATE(8607)] = 297407, + [SMALL_STATE(8608)] = 297429, + [SMALL_STATE(8609)] = 297451, + [SMALL_STATE(8610)] = 297473, + [SMALL_STATE(8611)] = 297495, + [SMALL_STATE(8612)] = 297517, + [SMALL_STATE(8613)] = 297539, + [SMALL_STATE(8614)] = 297561, + [SMALL_STATE(8615)] = 297583, + [SMALL_STATE(8616)] = 297605, + [SMALL_STATE(8617)] = 297627, + [SMALL_STATE(8618)] = 297668, + [SMALL_STATE(8619)] = 297689, + [SMALL_STATE(8620)] = 297730, + [SMALL_STATE(8621)] = 297771, + [SMALL_STATE(8622)] = 297812, + [SMALL_STATE(8623)] = 297853, + [SMALL_STATE(8624)] = 297876, + [SMALL_STATE(8625)] = 297917, + [SMALL_STATE(8626)] = 297938, + [SMALL_STATE(8627)] = 297979, + [SMALL_STATE(8628)] = 298004, + [SMALL_STATE(8629)] = 298027, + [SMALL_STATE(8630)] = 298052, + [SMALL_STATE(8631)] = 298077, + [SMALL_STATE(8632)] = 298100, + [SMALL_STATE(8633)] = 298125, + [SMALL_STATE(8634)] = 298166, + [SMALL_STATE(8635)] = 298187, + [SMALL_STATE(8636)] = 298208, + [SMALL_STATE(8637)] = 298249, + [SMALL_STATE(8638)] = 298290, + [SMALL_STATE(8639)] = 298315, + [SMALL_STATE(8640)] = 298336, + [SMALL_STATE(8641)] = 298377, + [SMALL_STATE(8642)] = 298400, + [SMALL_STATE(8643)] = 298441, + [SMALL_STATE(8644)] = 298482, + [SMALL_STATE(8645)] = 298523, + [SMALL_STATE(8646)] = 298564, + [SMALL_STATE(8647)] = 298605, + [SMALL_STATE(8648)] = 298626, + [SMALL_STATE(8649)] = 298667, + [SMALL_STATE(8650)] = 298708, + [SMALL_STATE(8651)] = 298749, + [SMALL_STATE(8652)] = 298790, + [SMALL_STATE(8653)] = 298831, + [SMALL_STATE(8654)] = 298852, + [SMALL_STATE(8655)] = 298893, + [SMALL_STATE(8656)] = 298934, + [SMALL_STATE(8657)] = 298975, + [SMALL_STATE(8658)] = 299016, + [SMALL_STATE(8659)] = 299057, + [SMALL_STATE(8660)] = 299098, + [SMALL_STATE(8661)] = 299139, + [SMALL_STATE(8662)] = 299180, + [SMALL_STATE(8663)] = 299221, + [SMALL_STATE(8664)] = 299262, + [SMALL_STATE(8665)] = 299303, + [SMALL_STATE(8666)] = 299324, + [SMALL_STATE(8667)] = 299365, + [SMALL_STATE(8668)] = 299406, + [SMALL_STATE(8669)] = 299447, + [SMALL_STATE(8670)] = 299488, + [SMALL_STATE(8671)] = 299529, + [SMALL_STATE(8672)] = 299570, + [SMALL_STATE(8673)] = 299611, + [SMALL_STATE(8674)] = 299652, + [SMALL_STATE(8675)] = 299693, + [SMALL_STATE(8676)] = 299734, + [SMALL_STATE(8677)] = 299775, + [SMALL_STATE(8678)] = 299796, + [SMALL_STATE(8679)] = 299821, + [SMALL_STATE(8680)] = 299862, + [SMALL_STATE(8681)] = 299903, + [SMALL_STATE(8682)] = 299944, + [SMALL_STATE(8683)] = 299985, + [SMALL_STATE(8684)] = 300026, + [SMALL_STATE(8685)] = 300067, + [SMALL_STATE(8686)] = 300090, + [SMALL_STATE(8687)] = 300111, + [SMALL_STATE(8688)] = 300132, + [SMALL_STATE(8689)] = 300153, + [SMALL_STATE(8690)] = 300194, + [SMALL_STATE(8691)] = 300215, + [SMALL_STATE(8692)] = 300256, + [SMALL_STATE(8693)] = 300287, + [SMALL_STATE(8694)] = 300328, + [SMALL_STATE(8695)] = 300369, + [SMALL_STATE(8696)] = 300410, + [SMALL_STATE(8697)] = 300451, + [SMALL_STATE(8698)] = 300478, + [SMALL_STATE(8699)] = 300505, + [SMALL_STATE(8700)] = 300532, + [SMALL_STATE(8701)] = 300559, + [SMALL_STATE(8702)] = 300580, + [SMALL_STATE(8703)] = 300607, + [SMALL_STATE(8704)] = 300634, + [SMALL_STATE(8705)] = 300661, + [SMALL_STATE(8706)] = 300688, + [SMALL_STATE(8707)] = 300715, + [SMALL_STATE(8708)] = 300742, + [SMALL_STATE(8709)] = 300769, + [SMALL_STATE(8710)] = 300796, + [SMALL_STATE(8711)] = 300823, + [SMALL_STATE(8712)] = 300844, + [SMALL_STATE(8713)] = 300871, + [SMALL_STATE(8714)] = 300898, + [SMALL_STATE(8715)] = 300925, + [SMALL_STATE(8716)] = 300952, + [SMALL_STATE(8717)] = 300979, + [SMALL_STATE(8718)] = 301006, + [SMALL_STATE(8719)] = 301033, + [SMALL_STATE(8720)] = 301060, + [SMALL_STATE(8721)] = 301087, + [SMALL_STATE(8722)] = 301114, + [SMALL_STATE(8723)] = 301141, + [SMALL_STATE(8724)] = 301168, + [SMALL_STATE(8725)] = 301195, + [SMALL_STATE(8726)] = 301222, + [SMALL_STATE(8727)] = 301249, + [SMALL_STATE(8728)] = 301276, + [SMALL_STATE(8729)] = 301303, + [SMALL_STATE(8730)] = 301330, + [SMALL_STATE(8731)] = 301357, + [SMALL_STATE(8732)] = 301384, + [SMALL_STATE(8733)] = 301411, + [SMALL_STATE(8734)] = 301438, + [SMALL_STATE(8735)] = 301465, + [SMALL_STATE(8736)] = 301492, + [SMALL_STATE(8737)] = 301519, + [SMALL_STATE(8738)] = 301546, + [SMALL_STATE(8739)] = 301573, + [SMALL_STATE(8740)] = 301600, + [SMALL_STATE(8741)] = 301627, + [SMALL_STATE(8742)] = 301654, + [SMALL_STATE(8743)] = 301681, + [SMALL_STATE(8744)] = 301708, + [SMALL_STATE(8745)] = 301735, + [SMALL_STATE(8746)] = 301762, + [SMALL_STATE(8747)] = 301789, + [SMALL_STATE(8748)] = 301816, + [SMALL_STATE(8749)] = 301843, + [SMALL_STATE(8750)] = 301870, + [SMALL_STATE(8751)] = 301897, + [SMALL_STATE(8752)] = 301924, + [SMALL_STATE(8753)] = 301951, + [SMALL_STATE(8754)] = 301978, + [SMALL_STATE(8755)] = 302005, + [SMALL_STATE(8756)] = 302032, + [SMALL_STATE(8757)] = 302059, + [SMALL_STATE(8758)] = 302086, + [SMALL_STATE(8759)] = 302113, + [SMALL_STATE(8760)] = 302140, + [SMALL_STATE(8761)] = 302167, + [SMALL_STATE(8762)] = 302194, + [SMALL_STATE(8763)] = 302221, + [SMALL_STATE(8764)] = 302248, + [SMALL_STATE(8765)] = 302275, + [SMALL_STATE(8766)] = 302316, + [SMALL_STATE(8767)] = 302343, + [SMALL_STATE(8768)] = 302370, + [SMALL_STATE(8769)] = 302397, + [SMALL_STATE(8770)] = 302424, + [SMALL_STATE(8771)] = 302451, + [SMALL_STATE(8772)] = 302478, + [SMALL_STATE(8773)] = 302505, + [SMALL_STATE(8774)] = 302532, + [SMALL_STATE(8775)] = 302559, + [SMALL_STATE(8776)] = 302586, + [SMALL_STATE(8777)] = 302613, + [SMALL_STATE(8778)] = 302640, + [SMALL_STATE(8779)] = 302667, + [SMALL_STATE(8780)] = 302694, + [SMALL_STATE(8781)] = 302721, + [SMALL_STATE(8782)] = 302748, + [SMALL_STATE(8783)] = 302775, + [SMALL_STATE(8784)] = 302802, + [SMALL_STATE(8785)] = 302829, + [SMALL_STATE(8786)] = 302856, + [SMALL_STATE(8787)] = 302883, + [SMALL_STATE(8788)] = 302910, + [SMALL_STATE(8789)] = 302937, + [SMALL_STATE(8790)] = 302964, + [SMALL_STATE(8791)] = 302991, + [SMALL_STATE(8792)] = 303018, + [SMALL_STATE(8793)] = 303045, + [SMALL_STATE(8794)] = 303072, + [SMALL_STATE(8795)] = 303099, + [SMALL_STATE(8796)] = 303126, + [SMALL_STATE(8797)] = 303153, + [SMALL_STATE(8798)] = 303180, + [SMALL_STATE(8799)] = 303207, + [SMALL_STATE(8800)] = 303234, + [SMALL_STATE(8801)] = 303261, + [SMALL_STATE(8802)] = 303288, + [SMALL_STATE(8803)] = 303315, + [SMALL_STATE(8804)] = 303342, + [SMALL_STATE(8805)] = 303369, + [SMALL_STATE(8806)] = 303396, + [SMALL_STATE(8807)] = 303423, + [SMALL_STATE(8808)] = 303450, + [SMALL_STATE(8809)] = 303477, + [SMALL_STATE(8810)] = 303504, + [SMALL_STATE(8811)] = 303531, + [SMALL_STATE(8812)] = 303558, + [SMALL_STATE(8813)] = 303585, + [SMALL_STATE(8814)] = 303612, + [SMALL_STATE(8815)] = 303639, + [SMALL_STATE(8816)] = 303666, + [SMALL_STATE(8817)] = 303693, + [SMALL_STATE(8818)] = 303720, + [SMALL_STATE(8819)] = 303747, + [SMALL_STATE(8820)] = 303774, + [SMALL_STATE(8821)] = 303801, + [SMALL_STATE(8822)] = 303828, + [SMALL_STATE(8823)] = 303855, + [SMALL_STATE(8824)] = 303882, + [SMALL_STATE(8825)] = 303909, + [SMALL_STATE(8826)] = 303936, + [SMALL_STATE(8827)] = 303977, + [SMALL_STATE(8828)] = 304018, + [SMALL_STATE(8829)] = 304059, + [SMALL_STATE(8830)] = 304100, + [SMALL_STATE(8831)] = 304141, + [SMALL_STATE(8832)] = 304182, + [SMALL_STATE(8833)] = 304223, + [SMALL_STATE(8834)] = 304264, + [SMALL_STATE(8835)] = 304305, + [SMALL_STATE(8836)] = 304346, + [SMALL_STATE(8837)] = 304387, + [SMALL_STATE(8838)] = 304428, + [SMALL_STATE(8839)] = 304469, + [SMALL_STATE(8840)] = 304494, + [SMALL_STATE(8841)] = 304519, + [SMALL_STATE(8842)] = 304542, + [SMALL_STATE(8843)] = 304583, + [SMALL_STATE(8844)] = 304624, + [SMALL_STATE(8845)] = 304647, + [SMALL_STATE(8846)] = 304688, + [SMALL_STATE(8847)] = 304709, + [SMALL_STATE(8848)] = 304730, + [SMALL_STATE(8849)] = 304755, + [SMALL_STATE(8850)] = 304778, + [SMALL_STATE(8851)] = 304801, + [SMALL_STATE(8852)] = 304824, + [SMALL_STATE(8853)] = 304847, + [SMALL_STATE(8854)] = 304870, + [SMALL_STATE(8855)] = 304893, + [SMALL_STATE(8856)] = 304916, + [SMALL_STATE(8857)] = 304939, + [SMALL_STATE(8858)] = 304962, + [SMALL_STATE(8859)] = 304985, + [SMALL_STATE(8860)] = 305008, + [SMALL_STATE(8861)] = 305031, + [SMALL_STATE(8862)] = 305054, + [SMALL_STATE(8863)] = 305077, + [SMALL_STATE(8864)] = 305100, + [SMALL_STATE(8865)] = 305123, + [SMALL_STATE(8866)] = 305146, + [SMALL_STATE(8867)] = 305169, + [SMALL_STATE(8868)] = 305192, + [SMALL_STATE(8869)] = 305215, + [SMALL_STATE(8870)] = 305238, + [SMALL_STATE(8871)] = 305261, + [SMALL_STATE(8872)] = 305284, + [SMALL_STATE(8873)] = 305307, + [SMALL_STATE(8874)] = 305330, + [SMALL_STATE(8875)] = 305353, + [SMALL_STATE(8876)] = 305376, + [SMALL_STATE(8877)] = 305399, + [SMALL_STATE(8878)] = 305422, + [SMALL_STATE(8879)] = 305445, + [SMALL_STATE(8880)] = 305468, + [SMALL_STATE(8881)] = 305491, + [SMALL_STATE(8882)] = 305514, + [SMALL_STATE(8883)] = 305537, + [SMALL_STATE(8884)] = 305560, + [SMALL_STATE(8885)] = 305583, + [SMALL_STATE(8886)] = 305610, + [SMALL_STATE(8887)] = 305632, + [SMALL_STATE(8888)] = 305658, + [SMALL_STATE(8889)] = 305678, + [SMALL_STATE(8890)] = 305698, + [SMALL_STATE(8891)] = 305724, + [SMALL_STATE(8892)] = 305750, + [SMALL_STATE(8893)] = 305776, + [SMALL_STATE(8894)] = 305802, + [SMALL_STATE(8895)] = 305828, + [SMALL_STATE(8896)] = 305854, + [SMALL_STATE(8897)] = 305880, + [SMALL_STATE(8898)] = 305906, + [SMALL_STATE(8899)] = 305932, + [SMALL_STATE(8900)] = 305958, + [SMALL_STATE(8901)] = 305984, + [SMALL_STATE(8902)] = 306010, + [SMALL_STATE(8903)] = 306036, + [SMALL_STATE(8904)] = 306062, + [SMALL_STATE(8905)] = 306088, + [SMALL_STATE(8906)] = 306114, + [SMALL_STATE(8907)] = 306140, + [SMALL_STATE(8908)] = 306166, + [SMALL_STATE(8909)] = 306192, + [SMALL_STATE(8910)] = 306218, + [SMALL_STATE(8911)] = 306244, + [SMALL_STATE(8912)] = 306270, + [SMALL_STATE(8913)] = 306296, + [SMALL_STATE(8914)] = 306322, + [SMALL_STATE(8915)] = 306348, + [SMALL_STATE(8916)] = 306374, + [SMALL_STATE(8917)] = 306400, + [SMALL_STATE(8918)] = 306426, + [SMALL_STATE(8919)] = 306452, + [SMALL_STATE(8920)] = 306478, + [SMALL_STATE(8921)] = 306504, + [SMALL_STATE(8922)] = 306530, + [SMALL_STATE(8923)] = 306556, + [SMALL_STATE(8924)] = 306582, + [SMALL_STATE(8925)] = 306608, + [SMALL_STATE(8926)] = 306634, + [SMALL_STATE(8927)] = 306660, + [SMALL_STATE(8928)] = 306686, + [SMALL_STATE(8929)] = 306706, + [SMALL_STATE(8930)] = 306732, + [SMALL_STATE(8931)] = 306758, + [SMALL_STATE(8932)] = 306784, + [SMALL_STATE(8933)] = 306810, + [SMALL_STATE(8934)] = 306836, + [SMALL_STATE(8935)] = 306862, + [SMALL_STATE(8936)] = 306888, + [SMALL_STATE(8937)] = 306914, + [SMALL_STATE(8938)] = 306940, + [SMALL_STATE(8939)] = 306966, + [SMALL_STATE(8940)] = 306992, + [SMALL_STATE(8941)] = 307018, + [SMALL_STATE(8942)] = 307044, + [SMALL_STATE(8943)] = 307070, + [SMALL_STATE(8944)] = 307096, + [SMALL_STATE(8945)] = 307122, + [SMALL_STATE(8946)] = 307148, + [SMALL_STATE(8947)] = 307174, + [SMALL_STATE(8948)] = 307200, + [SMALL_STATE(8949)] = 307226, + [SMALL_STATE(8950)] = 307252, + [SMALL_STATE(8951)] = 307278, + [SMALL_STATE(8952)] = 307304, + [SMALL_STATE(8953)] = 307330, + [SMALL_STATE(8954)] = 307356, + [SMALL_STATE(8955)] = 307382, + [SMALL_STATE(8956)] = 307408, + [SMALL_STATE(8957)] = 307434, + [SMALL_STATE(8958)] = 307460, + [SMALL_STATE(8959)] = 307486, + [SMALL_STATE(8960)] = 307512, + [SMALL_STATE(8961)] = 307538, + [SMALL_STATE(8962)] = 307564, + [SMALL_STATE(8963)] = 307590, + [SMALL_STATE(8964)] = 307616, + [SMALL_STATE(8965)] = 307642, + [SMALL_STATE(8966)] = 307668, + [SMALL_STATE(8967)] = 307694, + [SMALL_STATE(8968)] = 307720, + [SMALL_STATE(8969)] = 307746, + [SMALL_STATE(8970)] = 307772, + [SMALL_STATE(8971)] = 307798, + [SMALL_STATE(8972)] = 307824, + [SMALL_STATE(8973)] = 307850, + [SMALL_STATE(8974)] = 307876, + [SMALL_STATE(8975)] = 307902, + [SMALL_STATE(8976)] = 307928, + [SMALL_STATE(8977)] = 307954, + [SMALL_STATE(8978)] = 307980, + [SMALL_STATE(8979)] = 308006, + [SMALL_STATE(8980)] = 308032, + [SMALL_STATE(8981)] = 308058, + [SMALL_STATE(8982)] = 308084, + [SMALL_STATE(8983)] = 308110, + [SMALL_STATE(8984)] = 308136, + [SMALL_STATE(8985)] = 308162, + [SMALL_STATE(8986)] = 308188, + [SMALL_STATE(8987)] = 308214, + [SMALL_STATE(8988)] = 308240, + [SMALL_STATE(8989)] = 308266, + [SMALL_STATE(8990)] = 308292, + [SMALL_STATE(8991)] = 308318, + [SMALL_STATE(8992)] = 308338, + [SMALL_STATE(8993)] = 308364, + [SMALL_STATE(8994)] = 308390, + [SMALL_STATE(8995)] = 308416, + [SMALL_STATE(8996)] = 308442, + [SMALL_STATE(8997)] = 308468, + [SMALL_STATE(8998)] = 308494, + [SMALL_STATE(8999)] = 308520, + [SMALL_STATE(9000)] = 308546, + [SMALL_STATE(9001)] = 308572, + [SMALL_STATE(9002)] = 308598, + [SMALL_STATE(9003)] = 308618, + [SMALL_STATE(9004)] = 308644, + [SMALL_STATE(9005)] = 308670, + [SMALL_STATE(9006)] = 308696, + [SMALL_STATE(9007)] = 308716, + [SMALL_STATE(9008)] = 308742, + [SMALL_STATE(9009)] = 308768, + [SMALL_STATE(9010)] = 308788, + [SMALL_STATE(9011)] = 308814, + [SMALL_STATE(9012)] = 308840, + [SMALL_STATE(9013)] = 308866, + [SMALL_STATE(9014)] = 308892, + [SMALL_STATE(9015)] = 308918, + [SMALL_STATE(9016)] = 308938, + [SMALL_STATE(9017)] = 308958, + [SMALL_STATE(9018)] = 308978, + [SMALL_STATE(9019)] = 308998, + [SMALL_STATE(9020)] = 309024, + [SMALL_STATE(9021)] = 309046, + [SMALL_STATE(9022)] = 309072, + [SMALL_STATE(9023)] = 309094, + [SMALL_STATE(9024)] = 309120, + [SMALL_STATE(9025)] = 309140, + [SMALL_STATE(9026)] = 309166, + [SMALL_STATE(9027)] = 309186, + [SMALL_STATE(9028)] = 309206, + [SMALL_STATE(9029)] = 309228, + [SMALL_STATE(9030)] = 309256, + [SMALL_STATE(9031)] = 309276, + [SMALL_STATE(9032)] = 309296, + [SMALL_STATE(9033)] = 309316, + [SMALL_STATE(9034)] = 309336, + [SMALL_STATE(9035)] = 309362, + [SMALL_STATE(9036)] = 309388, + [SMALL_STATE(9037)] = 309414, + [SMALL_STATE(9038)] = 309434, + [SMALL_STATE(9039)] = 309460, + [SMALL_STATE(9040)] = 309480, + [SMALL_STATE(9041)] = 309506, + [SMALL_STATE(9042)] = 309532, + [SMALL_STATE(9043)] = 309558, + [SMALL_STATE(9044)] = 309584, + [SMALL_STATE(9045)] = 309610, + [SMALL_STATE(9046)] = 309636, + [SMALL_STATE(9047)] = 309662, + [SMALL_STATE(9048)] = 309688, + [SMALL_STATE(9049)] = 309708, + [SMALL_STATE(9050)] = 309734, + [SMALL_STATE(9051)] = 309760, + [SMALL_STATE(9052)] = 309786, + [SMALL_STATE(9053)] = 309806, + [SMALL_STATE(9054)] = 309832, + [SMALL_STATE(9055)] = 309852, + [SMALL_STATE(9056)] = 309872, + [SMALL_STATE(9057)] = 309898, + [SMALL_STATE(9058)] = 309924, + [SMALL_STATE(9059)] = 309950, + [SMALL_STATE(9060)] = 309970, + [SMALL_STATE(9061)] = 310014, + [SMALL_STATE(9062)] = 310058, + [SMALL_STATE(9063)] = 310078, + [SMALL_STATE(9064)] = 310104, + [SMALL_STATE(9065)] = 310124, + [SMALL_STATE(9066)] = 310144, + [SMALL_STATE(9067)] = 310164, + [SMALL_STATE(9068)] = 310208, + [SMALL_STATE(9069)] = 310234, + [SMALL_STATE(9070)] = 310260, + [SMALL_STATE(9071)] = 310280, + [SMALL_STATE(9072)] = 310306, + [SMALL_STATE(9073)] = 310332, + [SMALL_STATE(9074)] = 310358, + [SMALL_STATE(9075)] = 310384, + [SMALL_STATE(9076)] = 310410, + [SMALL_STATE(9077)] = 310436, + [SMALL_STATE(9078)] = 310462, + [SMALL_STATE(9079)] = 310488, + [SMALL_STATE(9080)] = 310514, + [SMALL_STATE(9081)] = 310540, + [SMALL_STATE(9082)] = 310566, + [SMALL_STATE(9083)] = 310592, + [SMALL_STATE(9084)] = 310618, + [SMALL_STATE(9085)] = 310644, + [SMALL_STATE(9086)] = 310670, + [SMALL_STATE(9087)] = 310696, + [SMALL_STATE(9088)] = 310722, + [SMALL_STATE(9089)] = 310748, + [SMALL_STATE(9090)] = 310774, + [SMALL_STATE(9091)] = 310794, + [SMALL_STATE(9092)] = 310820, + [SMALL_STATE(9093)] = 310840, + [SMALL_STATE(9094)] = 310860, + [SMALL_STATE(9095)] = 310886, + [SMALL_STATE(9096)] = 310912, + [SMALL_STATE(9097)] = 310938, + [SMALL_STATE(9098)] = 310958, + [SMALL_STATE(9099)] = 310984, + [SMALL_STATE(9100)] = 311006, + [SMALL_STATE(9101)] = 311032, + [SMALL_STATE(9102)] = 311058, + [SMALL_STATE(9103)] = 311084, + [SMALL_STATE(9104)] = 311110, + [SMALL_STATE(9105)] = 311138, + [SMALL_STATE(9106)] = 311158, + [SMALL_STATE(9107)] = 311202, + [SMALL_STATE(9108)] = 311222, + [SMALL_STATE(9109)] = 311266, + [SMALL_STATE(9110)] = 311292, + [SMALL_STATE(9111)] = 311318, + [SMALL_STATE(9112)] = 311344, + [SMALL_STATE(9113)] = 311370, + [SMALL_STATE(9114)] = 311396, + [SMALL_STATE(9115)] = 311422, + [SMALL_STATE(9116)] = 311448, + [SMALL_STATE(9117)] = 311474, + [SMALL_STATE(9118)] = 311500, + [SMALL_STATE(9119)] = 311526, + [SMALL_STATE(9120)] = 311552, + [SMALL_STATE(9121)] = 311578, + [SMALL_STATE(9122)] = 311604, + [SMALL_STATE(9123)] = 311630, + [SMALL_STATE(9124)] = 311656, + [SMALL_STATE(9125)] = 311682, + [SMALL_STATE(9126)] = 311708, + [SMALL_STATE(9127)] = 311728, + [SMALL_STATE(9128)] = 311754, + [SMALL_STATE(9129)] = 311774, + [SMALL_STATE(9130)] = 311800, + [SMALL_STATE(9131)] = 311826, + [SMALL_STATE(9132)] = 311852, + [SMALL_STATE(9133)] = 311878, + [SMALL_STATE(9134)] = 311904, + [SMALL_STATE(9135)] = 311930, + [SMALL_STATE(9136)] = 311956, + [SMALL_STATE(9137)] = 311982, + [SMALL_STATE(9138)] = 312008, + [SMALL_STATE(9139)] = 312034, + [SMALL_STATE(9140)] = 312060, + [SMALL_STATE(9141)] = 312086, + [SMALL_STATE(9142)] = 312112, + [SMALL_STATE(9143)] = 312138, + [SMALL_STATE(9144)] = 312164, + [SMALL_STATE(9145)] = 312190, + [SMALL_STATE(9146)] = 312216, + [SMALL_STATE(9147)] = 312242, + [SMALL_STATE(9148)] = 312268, + [SMALL_STATE(9149)] = 312294, + [SMALL_STATE(9150)] = 312320, + [SMALL_STATE(9151)] = 312346, + [SMALL_STATE(9152)] = 312372, + [SMALL_STATE(9153)] = 312398, + [SMALL_STATE(9154)] = 312424, + [SMALL_STATE(9155)] = 312450, + [SMALL_STATE(9156)] = 312476, + [SMALL_STATE(9157)] = 312502, + [SMALL_STATE(9158)] = 312528, + [SMALL_STATE(9159)] = 312554, + [SMALL_STATE(9160)] = 312580, + [SMALL_STATE(9161)] = 312606, + [SMALL_STATE(9162)] = 312632, + [SMALL_STATE(9163)] = 312658, + [SMALL_STATE(9164)] = 312684, + [SMALL_STATE(9165)] = 312710, + [SMALL_STATE(9166)] = 312736, + [SMALL_STATE(9167)] = 312762, + [SMALL_STATE(9168)] = 312788, + [SMALL_STATE(9169)] = 312814, + [SMALL_STATE(9170)] = 312840, + [SMALL_STATE(9171)] = 312866, + [SMALL_STATE(9172)] = 312892, + [SMALL_STATE(9173)] = 312918, + [SMALL_STATE(9174)] = 312944, + [SMALL_STATE(9175)] = 312970, + [SMALL_STATE(9176)] = 312996, + [SMALL_STATE(9177)] = 313022, + [SMALL_STATE(9178)] = 313048, + [SMALL_STATE(9179)] = 313074, + [SMALL_STATE(9180)] = 313100, + [SMALL_STATE(9181)] = 313126, + [SMALL_STATE(9182)] = 313152, + [SMALL_STATE(9183)] = 313178, + [SMALL_STATE(9184)] = 313204, + [SMALL_STATE(9185)] = 313230, + [SMALL_STATE(9186)] = 313256, + [SMALL_STATE(9187)] = 313282, + [SMALL_STATE(9188)] = 313308, + [SMALL_STATE(9189)] = 313334, + [SMALL_STATE(9190)] = 313360, + [SMALL_STATE(9191)] = 313386, + [SMALL_STATE(9192)] = 313412, + [SMALL_STATE(9193)] = 313438, + [SMALL_STATE(9194)] = 313464, + [SMALL_STATE(9195)] = 313490, + [SMALL_STATE(9196)] = 313516, + [SMALL_STATE(9197)] = 313542, + [SMALL_STATE(9198)] = 313568, + [SMALL_STATE(9199)] = 313594, + [SMALL_STATE(9200)] = 313620, + [SMALL_STATE(9201)] = 313646, + [SMALL_STATE(9202)] = 313672, + [SMALL_STATE(9203)] = 313716, + [SMALL_STATE(9204)] = 313742, + [SMALL_STATE(9205)] = 313768, + [SMALL_STATE(9206)] = 313794, + [SMALL_STATE(9207)] = 313820, + [SMALL_STATE(9208)] = 313846, + [SMALL_STATE(9209)] = 313872, + [SMALL_STATE(9210)] = 313898, + [SMALL_STATE(9211)] = 313924, + [SMALL_STATE(9212)] = 313950, + [SMALL_STATE(9213)] = 313976, + [SMALL_STATE(9214)] = 314002, + [SMALL_STATE(9215)] = 314028, + [SMALL_STATE(9216)] = 314054, + [SMALL_STATE(9217)] = 314080, + [SMALL_STATE(9218)] = 314106, + [SMALL_STATE(9219)] = 314132, + [SMALL_STATE(9220)] = 314158, + [SMALL_STATE(9221)] = 314184, + [SMALL_STATE(9222)] = 314210, + [SMALL_STATE(9223)] = 314236, + [SMALL_STATE(9224)] = 314262, + [SMALL_STATE(9225)] = 314288, + [SMALL_STATE(9226)] = 314314, + [SMALL_STATE(9227)] = 314340, + [SMALL_STATE(9228)] = 314366, + [SMALL_STATE(9229)] = 314392, + [SMALL_STATE(9230)] = 314418, + [SMALL_STATE(9231)] = 314444, + [SMALL_STATE(9232)] = 314470, + [SMALL_STATE(9233)] = 314496, + [SMALL_STATE(9234)] = 314522, + [SMALL_STATE(9235)] = 314548, + [SMALL_STATE(9236)] = 314574, + [SMALL_STATE(9237)] = 314600, + [SMALL_STATE(9238)] = 314626, + [SMALL_STATE(9239)] = 314652, + [SMALL_STATE(9240)] = 314678, + [SMALL_STATE(9241)] = 314704, + [SMALL_STATE(9242)] = 314730, + [SMALL_STATE(9243)] = 314756, + [SMALL_STATE(9244)] = 314782, + [SMALL_STATE(9245)] = 314808, + [SMALL_STATE(9246)] = 314834, + [SMALL_STATE(9247)] = 314860, + [SMALL_STATE(9248)] = 314886, + [SMALL_STATE(9249)] = 314912, + [SMALL_STATE(9250)] = 314938, + [SMALL_STATE(9251)] = 314964, + [SMALL_STATE(9252)] = 314990, + [SMALL_STATE(9253)] = 315016, + [SMALL_STATE(9254)] = 315042, + [SMALL_STATE(9255)] = 315068, + [SMALL_STATE(9256)] = 315094, + [SMALL_STATE(9257)] = 315120, + [SMALL_STATE(9258)] = 315146, + [SMALL_STATE(9259)] = 315172, + [SMALL_STATE(9260)] = 315198, + [SMALL_STATE(9261)] = 315224, + [SMALL_STATE(9262)] = 315250, + [SMALL_STATE(9263)] = 315276, + [SMALL_STATE(9264)] = 315302, + [SMALL_STATE(9265)] = 315328, + [SMALL_STATE(9266)] = 315354, + [SMALL_STATE(9267)] = 315380, + [SMALL_STATE(9268)] = 315400, + [SMALL_STATE(9269)] = 315420, + [SMALL_STATE(9270)] = 315446, + [SMALL_STATE(9271)] = 315466, + [SMALL_STATE(9272)] = 315492, + [SMALL_STATE(9273)] = 315518, + [SMALL_STATE(9274)] = 315562, + [SMALL_STATE(9275)] = 315582, + [SMALL_STATE(9276)] = 315608, + [SMALL_STATE(9277)] = 315636, + [SMALL_STATE(9278)] = 315662, + [SMALL_STATE(9279)] = 315688, + [SMALL_STATE(9280)] = 315710, + [SMALL_STATE(9281)] = 315736, + [SMALL_STATE(9282)] = 315762, + [SMALL_STATE(9283)] = 315788, + [SMALL_STATE(9284)] = 315808, + [SMALL_STATE(9285)] = 315830, + [SMALL_STATE(9286)] = 315852, + [SMALL_STATE(9287)] = 315880, + [SMALL_STATE(9288)] = 315906, + [SMALL_STATE(9289)] = 315928, + [SMALL_STATE(9290)] = 315950, + [SMALL_STATE(9291)] = 315972, + [SMALL_STATE(9292)] = 315994, + [SMALL_STATE(9293)] = 316020, + [SMALL_STATE(9294)] = 316042, + [SMALL_STATE(9295)] = 316062, + [SMALL_STATE(9296)] = 316088, + [SMALL_STATE(9297)] = 316110, + [SMALL_STATE(9298)] = 316132, + [SMALL_STATE(9299)] = 316158, + [SMALL_STATE(9300)] = 316180, + [SMALL_STATE(9301)] = 316202, + [SMALL_STATE(9302)] = 316222, + [SMALL_STATE(9303)] = 316244, + [SMALL_STATE(9304)] = 316266, + [SMALL_STATE(9305)] = 316288, + [SMALL_STATE(9306)] = 316310, + [SMALL_STATE(9307)] = 316332, + [SMALL_STATE(9308)] = 316358, + [SMALL_STATE(9309)] = 316380, + [SMALL_STATE(9310)] = 316402, + [SMALL_STATE(9311)] = 316424, + [SMALL_STATE(9312)] = 316452, + [SMALL_STATE(9313)] = 316472, + [SMALL_STATE(9314)] = 316498, + [SMALL_STATE(9315)] = 316520, + [SMALL_STATE(9316)] = 316542, + [SMALL_STATE(9317)] = 316564, + [SMALL_STATE(9318)] = 316586, + [SMALL_STATE(9319)] = 316608, + [SMALL_STATE(9320)] = 316630, + [SMALL_STATE(9321)] = 316652, + [SMALL_STATE(9322)] = 316674, + [SMALL_STATE(9323)] = 316696, + [SMALL_STATE(9324)] = 316718, + [SMALL_STATE(9325)] = 316738, + [SMALL_STATE(9326)] = 316764, + [SMALL_STATE(9327)] = 316786, + [SMALL_STATE(9328)] = 316808, + [SMALL_STATE(9329)] = 316830, + [SMALL_STATE(9330)] = 316852, + [SMALL_STATE(9331)] = 316872, + [SMALL_STATE(9332)] = 316894, + [SMALL_STATE(9333)] = 316922, + [SMALL_STATE(9334)] = 316948, + [SMALL_STATE(9335)] = 316974, + [SMALL_STATE(9336)] = 316996, + [SMALL_STATE(9337)] = 317018, + [SMALL_STATE(9338)] = 317040, + [SMALL_STATE(9339)] = 317066, + [SMALL_STATE(9340)] = 317088, + [SMALL_STATE(9341)] = 317110, + [SMALL_STATE(9342)] = 317132, + [SMALL_STATE(9343)] = 317154, + [SMALL_STATE(9344)] = 317176, + [SMALL_STATE(9345)] = 317198, + [SMALL_STATE(9346)] = 317220, + [SMALL_STATE(9347)] = 317242, + [SMALL_STATE(9348)] = 317264, + [SMALL_STATE(9349)] = 317286, + [SMALL_STATE(9350)] = 317308, + [SMALL_STATE(9351)] = 317330, + [SMALL_STATE(9352)] = 317352, + [SMALL_STATE(9353)] = 317374, + [SMALL_STATE(9354)] = 317396, + [SMALL_STATE(9355)] = 317440, + [SMALL_STATE(9356)] = 317462, + [SMALL_STATE(9357)] = 317484, + [SMALL_STATE(9358)] = 317506, + [SMALL_STATE(9359)] = 317528, + [SMALL_STATE(9360)] = 317550, + [SMALL_STATE(9361)] = 317572, + [SMALL_STATE(9362)] = 317594, + [SMALL_STATE(9363)] = 317616, + [SMALL_STATE(9364)] = 317638, + [SMALL_STATE(9365)] = 317660, + [SMALL_STATE(9366)] = 317680, + [SMALL_STATE(9367)] = 317702, + [SMALL_STATE(9368)] = 317724, + [SMALL_STATE(9369)] = 317746, + [SMALL_STATE(9370)] = 317768, + [SMALL_STATE(9371)] = 317790, + [SMALL_STATE(9372)] = 317812, + [SMALL_STATE(9373)] = 317834, + [SMALL_STATE(9374)] = 317856, + [SMALL_STATE(9375)] = 317878, + [SMALL_STATE(9376)] = 317898, + [SMALL_STATE(9377)] = 317924, + [SMALL_STATE(9378)] = 317950, + [SMALL_STATE(9379)] = 317976, + [SMALL_STATE(9380)] = 318002, + [SMALL_STATE(9381)] = 318028, + [SMALL_STATE(9382)] = 318054, + [SMALL_STATE(9383)] = 318080, + [SMALL_STATE(9384)] = 318106, + [SMALL_STATE(9385)] = 318132, + [SMALL_STATE(9386)] = 318158, + [SMALL_STATE(9387)] = 318184, + [SMALL_STATE(9388)] = 318210, + [SMALL_STATE(9389)] = 318236, + [SMALL_STATE(9390)] = 318262, + [SMALL_STATE(9391)] = 318288, + [SMALL_STATE(9392)] = 318314, + [SMALL_STATE(9393)] = 318340, + [SMALL_STATE(9394)] = 318366, + [SMALL_STATE(9395)] = 318392, + [SMALL_STATE(9396)] = 318414, + [SMALL_STATE(9397)] = 318440, + [SMALL_STATE(9398)] = 318466, + [SMALL_STATE(9399)] = 318490, + [SMALL_STATE(9400)] = 318516, + [SMALL_STATE(9401)] = 318542, + [SMALL_STATE(9402)] = 318568, + [SMALL_STATE(9403)] = 318594, + [SMALL_STATE(9404)] = 318620, + [SMALL_STATE(9405)] = 318646, + [SMALL_STATE(9406)] = 318672, + [SMALL_STATE(9407)] = 318698, + [SMALL_STATE(9408)] = 318724, + [SMALL_STATE(9409)] = 318750, + [SMALL_STATE(9410)] = 318776, + [SMALL_STATE(9411)] = 318802, + [SMALL_STATE(9412)] = 318824, + [SMALL_STATE(9413)] = 318848, + [SMALL_STATE(9414)] = 318870, + [SMALL_STATE(9415)] = 318892, + [SMALL_STATE(9416)] = 318914, + [SMALL_STATE(9417)] = 318936, + [SMALL_STATE(9418)] = 318958, + [SMALL_STATE(9419)] = 318980, + [SMALL_STATE(9420)] = 319002, + [SMALL_STATE(9421)] = 319024, + [SMALL_STATE(9422)] = 319046, + [SMALL_STATE(9423)] = 319068, + [SMALL_STATE(9424)] = 319090, + [SMALL_STATE(9425)] = 319112, + [SMALL_STATE(9426)] = 319134, + [SMALL_STATE(9427)] = 319156, + [SMALL_STATE(9428)] = 319178, + [SMALL_STATE(9429)] = 319200, + [SMALL_STATE(9430)] = 319222, + [SMALL_STATE(9431)] = 319244, + [SMALL_STATE(9432)] = 319266, + [SMALL_STATE(9433)] = 319288, + [SMALL_STATE(9434)] = 319310, + [SMALL_STATE(9435)] = 319332, + [SMALL_STATE(9436)] = 319354, + [SMALL_STATE(9437)] = 319376, + [SMALL_STATE(9438)] = 319398, + [SMALL_STATE(9439)] = 319420, + [SMALL_STATE(9440)] = 319442, + [SMALL_STATE(9441)] = 319462, + [SMALL_STATE(9442)] = 319484, + [SMALL_STATE(9443)] = 319506, + [SMALL_STATE(9444)] = 319528, + [SMALL_STATE(9445)] = 319550, + [SMALL_STATE(9446)] = 319572, + [SMALL_STATE(9447)] = 319594, + [SMALL_STATE(9448)] = 319616, + [SMALL_STATE(9449)] = 319638, + [SMALL_STATE(9450)] = 319660, + [SMALL_STATE(9451)] = 319686, + [SMALL_STATE(9452)] = 319712, + [SMALL_STATE(9453)] = 319747, + [SMALL_STATE(9454)] = 319782, + [SMALL_STATE(9455)] = 319817, + [SMALL_STATE(9456)] = 319840, + [SMALL_STATE(9457)] = 319875, + [SMALL_STATE(9458)] = 319910, + [SMALL_STATE(9459)] = 319933, + [SMALL_STATE(9460)] = 319968, + [SMALL_STATE(9461)] = 320003, + [SMALL_STATE(9462)] = 320038, + [SMALL_STATE(9463)] = 320073, + [SMALL_STATE(9464)] = 320108, + [SMALL_STATE(9465)] = 320135, + [SMALL_STATE(9466)] = 320170, + [SMALL_STATE(9467)] = 320197, + [SMALL_STATE(9468)] = 320224, + [SMALL_STATE(9469)] = 320259, + [SMALL_STATE(9470)] = 320282, + [SMALL_STATE(9471)] = 320317, + [SMALL_STATE(9472)] = 320340, + [SMALL_STATE(9473)] = 320375, + [SMALL_STATE(9474)] = 320410, + [SMALL_STATE(9475)] = 320433, + [SMALL_STATE(9476)] = 320468, + [SMALL_STATE(9477)] = 320503, + [SMALL_STATE(9478)] = 320538, + [SMALL_STATE(9479)] = 320573, + [SMALL_STATE(9480)] = 320596, + [SMALL_STATE(9481)] = 320623, + [SMALL_STATE(9482)] = 320658, + [SMALL_STATE(9483)] = 320685, + [SMALL_STATE(9484)] = 320720, + [SMALL_STATE(9485)] = 320747, + [SMALL_STATE(9486)] = 320782, + [SMALL_STATE(9487)] = 320809, + [SMALL_STATE(9488)] = 320844, + [SMALL_STATE(9489)] = 320871, + [SMALL_STATE(9490)] = 320892, + [SMALL_STATE(9491)] = 320919, + [SMALL_STATE(9492)] = 320942, + [SMALL_STATE(9493)] = 320977, + [SMALL_STATE(9494)] = 321012, + [SMALL_STATE(9495)] = 321039, + [SMALL_STATE(9496)] = 321066, + [SMALL_STATE(9497)] = 321101, + [SMALL_STATE(9498)] = 321136, + [SMALL_STATE(9499)] = 321159, + [SMALL_STATE(9500)] = 321194, + [SMALL_STATE(9501)] = 321229, + [SMALL_STATE(9502)] = 321264, + [SMALL_STATE(9503)] = 321299, + [SMALL_STATE(9504)] = 321334, + [SMALL_STATE(9505)] = 321361, + [SMALL_STATE(9506)] = 321382, + [SMALL_STATE(9507)] = 321417, + [SMALL_STATE(9508)] = 321452, + [SMALL_STATE(9509)] = 321475, + [SMALL_STATE(9510)] = 321510, + [SMALL_STATE(9511)] = 321545, + [SMALL_STATE(9512)] = 321580, + [SMALL_STATE(9513)] = 321615, + [SMALL_STATE(9514)] = 321650, + [SMALL_STATE(9515)] = 321685, + [SMALL_STATE(9516)] = 321720, + [SMALL_STATE(9517)] = 321755, + [SMALL_STATE(9518)] = 321790, + [SMALL_STATE(9519)] = 321825, + [SMALL_STATE(9520)] = 321860, + [SMALL_STATE(9521)] = 321895, + [SMALL_STATE(9522)] = 321930, + [SMALL_STATE(9523)] = 321965, + [SMALL_STATE(9524)] = 322000, + [SMALL_STATE(9525)] = 322035, + [SMALL_STATE(9526)] = 322070, + [SMALL_STATE(9527)] = 322105, + [SMALL_STATE(9528)] = 322140, + [SMALL_STATE(9529)] = 322175, + [SMALL_STATE(9530)] = 322210, + [SMALL_STATE(9531)] = 322245, + [SMALL_STATE(9532)] = 322280, + [SMALL_STATE(9533)] = 322315, + [SMALL_STATE(9534)] = 322350, + [SMALL_STATE(9535)] = 322385, + [SMALL_STATE(9536)] = 322420, + [SMALL_STATE(9537)] = 322455, + [SMALL_STATE(9538)] = 322490, + [SMALL_STATE(9539)] = 322525, + [SMALL_STATE(9540)] = 322560, + [SMALL_STATE(9541)] = 322595, + [SMALL_STATE(9542)] = 322630, + [SMALL_STATE(9543)] = 322665, + [SMALL_STATE(9544)] = 322700, + [SMALL_STATE(9545)] = 322735, + [SMALL_STATE(9546)] = 322770, + [SMALL_STATE(9547)] = 322805, + [SMALL_STATE(9548)] = 322832, + [SMALL_STATE(9549)] = 322859, + [SMALL_STATE(9550)] = 322882, + [SMALL_STATE(9551)] = 322906, + [SMALL_STATE(9552)] = 322944, + [SMALL_STATE(9553)] = 322974, + [SMALL_STATE(9554)] = 323000, + [SMALL_STATE(9555)] = 323030, + [SMALL_STATE(9556)] = 323060, + [SMALL_STATE(9557)] = 323084, + [SMALL_STATE(9558)] = 323114, + [SMALL_STATE(9559)] = 323152, + [SMALL_STATE(9560)] = 323190, + [SMALL_STATE(9561)] = 323228, + [SMALL_STATE(9562)] = 323258, + [SMALL_STATE(9563)] = 323288, + [SMALL_STATE(9564)] = 323312, + [SMALL_STATE(9565)] = 323350, + [SMALL_STATE(9566)] = 323388, + [SMALL_STATE(9567)] = 323418, + [SMALL_STATE(9568)] = 323440, + [SMALL_STATE(9569)] = 323470, + [SMALL_STATE(9570)] = 323500, + [SMALL_STATE(9571)] = 323526, + [SMALL_STATE(9572)] = 323554, + [SMALL_STATE(9573)] = 323578, + [SMALL_STATE(9574)] = 323616, + [SMALL_STATE(9575)] = 323646, + [SMALL_STATE(9576)] = 323684, + [SMALL_STATE(9577)] = 323722, + [SMALL_STATE(9578)] = 323746, + [SMALL_STATE(9579)] = 323784, + [SMALL_STATE(9580)] = 323810, + [SMALL_STATE(9581)] = 323832, + [SMALL_STATE(9582)] = 323870, + [SMALL_STATE(9583)] = 323900, + [SMALL_STATE(9584)] = 323930, + [SMALL_STATE(9585)] = 323950, + [SMALL_STATE(9586)] = 323976, + [SMALL_STATE(9587)] = 324014, + [SMALL_STATE(9588)] = 324052, + [SMALL_STATE(9589)] = 324090, + [SMALL_STATE(9590)] = 324128, + [SMALL_STATE(9591)] = 324158, + [SMALL_STATE(9592)] = 324184, + [SMALL_STATE(9593)] = 324210, + [SMALL_STATE(9594)] = 324248, + [SMALL_STATE(9595)] = 324286, + [SMALL_STATE(9596)] = 324324, + [SMALL_STATE(9597)] = 324352, + [SMALL_STATE(9598)] = 324376, + [SMALL_STATE(9599)] = 324406, + [SMALL_STATE(9600)] = 324426, + [SMALL_STATE(9601)] = 324456, + [SMALL_STATE(9602)] = 324494, + [SMALL_STATE(9603)] = 324532, + [SMALL_STATE(9604)] = 324562, + [SMALL_STATE(9605)] = 324592, + [SMALL_STATE(9606)] = 324628, + [SMALL_STATE(9607)] = 324658, + [SMALL_STATE(9608)] = 324682, + [SMALL_STATE(9609)] = 324720, + [SMALL_STATE(9610)] = 324750, + [SMALL_STATE(9611)] = 324780, + [SMALL_STATE(9612)] = 324818, + [SMALL_STATE(9613)] = 324848, + [SMALL_STATE(9614)] = 324886, + [SMALL_STATE(9615)] = 324910, + [SMALL_STATE(9616)] = 324934, + [SMALL_STATE(9617)] = 324956, + [SMALL_STATE(9618)] = 324982, + [SMALL_STATE(9619)] = 325006, + [SMALL_STATE(9620)] = 325044, + [SMALL_STATE(9621)] = 325082, + [SMALL_STATE(9622)] = 325112, + [SMALL_STATE(9623)] = 325134, + [SMALL_STATE(9624)] = 325164, + [SMALL_STATE(9625)] = 325190, + [SMALL_STATE(9626)] = 325216, + [SMALL_STATE(9627)] = 325236, + [SMALL_STATE(9628)] = 325274, + [SMALL_STATE(9629)] = 325300, + [SMALL_STATE(9630)] = 325330, + [SMALL_STATE(9631)] = 325358, + [SMALL_STATE(9632)] = 325396, + [SMALL_STATE(9633)] = 325429, + [SMALL_STATE(9634)] = 325454, + [SMALL_STATE(9635)] = 325487, + [SMALL_STATE(9636)] = 325520, + [SMALL_STATE(9637)] = 325537, + [SMALL_STATE(9638)] = 325570, + [SMALL_STATE(9639)] = 325603, + [SMALL_STATE(9640)] = 325628, + [SMALL_STATE(9641)] = 325645, + [SMALL_STATE(9642)] = 325674, + [SMALL_STATE(9643)] = 325703, + [SMALL_STATE(9644)] = 325728, + [SMALL_STATE(9645)] = 325750, + [SMALL_STATE(9646)] = 325774, + [SMALL_STATE(9647)] = 325794, + [SMALL_STATE(9648)] = 325812, + [SMALL_STATE(9649)] = 325842, + [SMALL_STATE(9650)] = 325874, + [SMALL_STATE(9651)] = 325906, + [SMALL_STATE(9652)] = 325922, + [SMALL_STATE(9653)] = 325944, + [SMALL_STATE(9654)] = 325960, + [SMALL_STATE(9655)] = 325988, + [SMALL_STATE(9656)] = 326012, + [SMALL_STATE(9657)] = 326028, + [SMALL_STATE(9658)] = 326060, + [SMALL_STATE(9659)] = 326076, + [SMALL_STATE(9660)] = 326102, + [SMALL_STATE(9661)] = 326132, + [SMALL_STATE(9662)] = 326164, + [SMALL_STATE(9663)] = 326192, + [SMALL_STATE(9664)] = 326212, + [SMALL_STATE(9665)] = 326240, + [SMALL_STATE(9666)] = 326272, + [SMALL_STATE(9667)] = 326296, + [SMALL_STATE(9668)] = 326312, + [SMALL_STATE(9669)] = 326344, + [SMALL_STATE(9670)] = 326372, + [SMALL_STATE(9671)] = 326396, + [SMALL_STATE(9672)] = 326428, + [SMALL_STATE(9673)] = 326448, + [SMALL_STATE(9674)] = 326466, + [SMALL_STATE(9675)] = 326490, + [SMALL_STATE(9676)] = 326522, + [SMALL_STATE(9677)] = 326538, + [SMALL_STATE(9678)] = 326558, + [SMALL_STATE(9679)] = 326590, + [SMALL_STATE(9680)] = 326614, + [SMALL_STATE(9681)] = 326646, + [SMALL_STATE(9682)] = 326674, + [SMALL_STATE(9683)] = 326698, + [SMALL_STATE(9684)] = 326720, + [SMALL_STATE(9685)] = 326742, + [SMALL_STATE(9686)] = 326762, + [SMALL_STATE(9687)] = 326780, + [SMALL_STATE(9688)] = 326798, + [SMALL_STATE(9689)] = 326822, + [SMALL_STATE(9690)] = 326839, + [SMALL_STATE(9691)] = 326856, + [SMALL_STATE(9692)] = 326881, + [SMALL_STATE(9693)] = 326902, + [SMALL_STATE(9694)] = 326929, + [SMALL_STATE(9695)] = 326956, + [SMALL_STATE(9696)] = 326973, + [SMALL_STATE(9697)] = 326994, + [SMALL_STATE(9698)] = 327011, + [SMALL_STATE(9699)] = 327032, + [SMALL_STATE(9700)] = 327049, + [SMALL_STATE(9701)] = 327076, + [SMALL_STATE(9702)] = 327093, + [SMALL_STATE(9703)] = 327110, + [SMALL_STATE(9704)] = 327127, + [SMALL_STATE(9705)] = 327154, + [SMALL_STATE(9706)] = 327175, + [SMALL_STATE(9707)] = 327192, + [SMALL_STATE(9708)] = 327213, + [SMALL_STATE(9709)] = 327230, + [SMALL_STATE(9710)] = 327247, + [SMALL_STATE(9711)] = 327264, + [SMALL_STATE(9712)] = 327285, + [SMALL_STATE(9713)] = 327310, + [SMALL_STATE(9714)] = 327331, + [SMALL_STATE(9715)] = 327352, + [SMALL_STATE(9716)] = 327369, + [SMALL_STATE(9717)] = 327392, + [SMALL_STATE(9718)] = 327409, + [SMALL_STATE(9719)] = 327426, + [SMALL_STATE(9720)] = 327449, + [SMALL_STATE(9721)] = 327466, + [SMALL_STATE(9722)] = 327489, + [SMALL_STATE(9723)] = 327506, + [SMALL_STATE(9724)] = 327533, + [SMALL_STATE(9725)] = 327558, + [SMALL_STATE(9726)] = 327575, + [SMALL_STATE(9727)] = 327602, + [SMALL_STATE(9728)] = 327629, + [SMALL_STATE(9729)] = 327656, + [SMALL_STATE(9730)] = 327677, + [SMALL_STATE(9731)] = 327694, + [SMALL_STATE(9732)] = 327717, + [SMALL_STATE(9733)] = 327734, + [SMALL_STATE(9734)] = 327749, + [SMALL_STATE(9735)] = 327770, + [SMALL_STATE(9736)] = 327787, + [SMALL_STATE(9737)] = 327804, + [SMALL_STATE(9738)] = 327831, + [SMALL_STATE(9739)] = 327852, + [SMALL_STATE(9740)] = 327875, + [SMALL_STATE(9741)] = 327902, + [SMALL_STATE(9742)] = 327919, + [SMALL_STATE(9743)] = 327936, + [SMALL_STATE(9744)] = 327953, + [SMALL_STATE(9745)] = 327974, + [SMALL_STATE(9746)] = 328001, + [SMALL_STATE(9747)] = 328028, + [SMALL_STATE(9748)] = 328055, + [SMALL_STATE(9749)] = 328072, + [SMALL_STATE(9750)] = 328093, + [SMALL_STATE(9751)] = 328110, + [SMALL_STATE(9752)] = 328127, + [SMALL_STATE(9753)] = 328148, + [SMALL_STATE(9754)] = 328175, + [SMALL_STATE(9755)] = 328192, + [SMALL_STATE(9756)] = 328209, + [SMALL_STATE(9757)] = 328236, + [SMALL_STATE(9758)] = 328253, + [SMALL_STATE(9759)] = 328278, + [SMALL_STATE(9760)] = 328295, + [SMALL_STATE(9761)] = 328312, + [SMALL_STATE(9762)] = 328329, + [SMALL_STATE(9763)] = 328348, + [SMALL_STATE(9764)] = 328365, + [SMALL_STATE(9765)] = 328382, + [SMALL_STATE(9766)] = 328399, + [SMALL_STATE(9767)] = 328422, + [SMALL_STATE(9768)] = 328441, + [SMALL_STATE(9769)] = 328458, + [SMALL_STATE(9770)] = 328481, + [SMALL_STATE(9771)] = 328498, + [SMALL_STATE(9772)] = 328518, + [SMALL_STATE(9773)] = 328534, + [SMALL_STATE(9774)] = 328560, + [SMALL_STATE(9775)] = 328580, + [SMALL_STATE(9776)] = 328596, + [SMALL_STATE(9777)] = 328616, + [SMALL_STATE(9778)] = 328632, + [SMALL_STATE(9779)] = 328652, + [SMALL_STATE(9780)] = 328678, + [SMALL_STATE(9781)] = 328698, + [SMALL_STATE(9782)] = 328718, + [SMALL_STATE(9783)] = 328738, + [SMALL_STATE(9784)] = 328756, + [SMALL_STATE(9785)] = 328776, + [SMALL_STATE(9786)] = 328792, + [SMALL_STATE(9787)] = 328812, + [SMALL_STATE(9788)] = 328832, + [SMALL_STATE(9789)] = 328852, + [SMALL_STATE(9790)] = 328872, + [SMALL_STATE(9791)] = 328894, + [SMALL_STATE(9792)] = 328914, + [SMALL_STATE(9793)] = 328940, + [SMALL_STATE(9794)] = 328956, + [SMALL_STATE(9795)] = 328974, + [SMALL_STATE(9796)] = 328990, + [SMALL_STATE(9797)] = 329006, + [SMALL_STATE(9798)] = 329022, + [SMALL_STATE(9799)] = 329048, + [SMALL_STATE(9800)] = 329070, + [SMALL_STATE(9801)] = 329096, + [SMALL_STATE(9802)] = 329112, + [SMALL_STATE(9803)] = 329128, + [SMALL_STATE(9804)] = 329144, + [SMALL_STATE(9805)] = 329164, + [SMALL_STATE(9806)] = 329180, + [SMALL_STATE(9807)] = 329200, + [SMALL_STATE(9808)] = 329220, + [SMALL_STATE(9809)] = 329240, + [SMALL_STATE(9810)] = 329262, + [SMALL_STATE(9811)] = 329278, + [SMALL_STATE(9812)] = 329298, + [SMALL_STATE(9813)] = 329324, + [SMALL_STATE(9814)] = 329340, + [SMALL_STATE(9815)] = 329356, + [SMALL_STATE(9816)] = 329380, + [SMALL_STATE(9817)] = 329396, + [SMALL_STATE(9818)] = 329412, + [SMALL_STATE(9819)] = 329428, + [SMALL_STATE(9820)] = 329448, + [SMALL_STATE(9821)] = 329464, + [SMALL_STATE(9822)] = 329484, + [SMALL_STATE(9823)] = 329504, + [SMALL_STATE(9824)] = 329524, + [SMALL_STATE(9825)] = 329540, + [SMALL_STATE(9826)] = 329556, + [SMALL_STATE(9827)] = 329576, + [SMALL_STATE(9828)] = 329602, + [SMALL_STATE(9829)] = 329622, + [SMALL_STATE(9830)] = 329642, + [SMALL_STATE(9831)] = 329662, + [SMALL_STATE(9832)] = 329682, + [SMALL_STATE(9833)] = 329702, + [SMALL_STATE(9834)] = 329728, + [SMALL_STATE(9835)] = 329754, + [SMALL_STATE(9836)] = 329780, + [SMALL_STATE(9837)] = 329800, + [SMALL_STATE(9838)] = 329822, + [SMALL_STATE(9839)] = 329842, + [SMALL_STATE(9840)] = 329862, + [SMALL_STATE(9841)] = 329878, + [SMALL_STATE(9842)] = 329894, + [SMALL_STATE(9843)] = 329910, + [SMALL_STATE(9844)] = 329926, + [SMALL_STATE(9845)] = 329946, + [SMALL_STATE(9846)] = 329964, + [SMALL_STATE(9847)] = 329980, + [SMALL_STATE(9848)] = 330000, + [SMALL_STATE(9849)] = 330016, + [SMALL_STATE(9850)] = 330042, + [SMALL_STATE(9851)] = 330058, + [SMALL_STATE(9852)] = 330074, + [SMALL_STATE(9853)] = 330090, + [SMALL_STATE(9854)] = 330116, + [SMALL_STATE(9855)] = 330136, + [SMALL_STATE(9856)] = 330156, + [SMALL_STATE(9857)] = 330172, + [SMALL_STATE(9858)] = 330188, + [SMALL_STATE(9859)] = 330208, + [SMALL_STATE(9860)] = 330232, + [SMALL_STATE(9861)] = 330248, + [SMALL_STATE(9862)] = 330270, + [SMALL_STATE(9863)] = 330296, + [SMALL_STATE(9864)] = 330312, + [SMALL_STATE(9865)] = 330334, + [SMALL_STATE(9866)] = 330354, + [SMALL_STATE(9867)] = 330370, + [SMALL_STATE(9868)] = 330390, + [SMALL_STATE(9869)] = 330406, + [SMALL_STATE(9870)] = 330422, + [SMALL_STATE(9871)] = 330438, + [SMALL_STATE(9872)] = 330458, + [SMALL_STATE(9873)] = 330480, + [SMALL_STATE(9874)] = 330496, + [SMALL_STATE(9875)] = 330512, + [SMALL_STATE(9876)] = 330534, + [SMALL_STATE(9877)] = 330550, + [SMALL_STATE(9878)] = 330566, + [SMALL_STATE(9879)] = 330582, + [SMALL_STATE(9880)] = 330598, + [SMALL_STATE(9881)] = 330624, + [SMALL_STATE(9882)] = 330644, + [SMALL_STATE(9883)] = 330664, + [SMALL_STATE(9884)] = 330688, + [SMALL_STATE(9885)] = 330704, + [SMALL_STATE(9886)] = 330720, + [SMALL_STATE(9887)] = 330746, + [SMALL_STATE(9888)] = 330766, + [SMALL_STATE(9889)] = 330782, + [SMALL_STATE(9890)] = 330802, + [SMALL_STATE(9891)] = 330828, + [SMALL_STATE(9892)] = 330846, + [SMALL_STATE(9893)] = 330862, + [SMALL_STATE(9894)] = 330878, + [SMALL_STATE(9895)] = 330898, + [SMALL_STATE(9896)] = 330914, + [SMALL_STATE(9897)] = 330940, + [SMALL_STATE(9898)] = 330956, + [SMALL_STATE(9899)] = 330976, + [SMALL_STATE(9900)] = 330992, + [SMALL_STATE(9901)] = 331012, + [SMALL_STATE(9902)] = 331028, + [SMALL_STATE(9903)] = 331048, + [SMALL_STATE(9904)] = 331074, + [SMALL_STATE(9905)] = 331096, + [SMALL_STATE(9906)] = 331112, + [SMALL_STATE(9907)] = 331132, + [SMALL_STATE(9908)] = 331152, + [SMALL_STATE(9909)] = 331178, + [SMALL_STATE(9910)] = 331194, + [SMALL_STATE(9911)] = 331210, + [SMALL_STATE(9912)] = 331228, + [SMALL_STATE(9913)] = 331244, + [SMALL_STATE(9914)] = 331264, + [SMALL_STATE(9915)] = 331284, + [SMALL_STATE(9916)] = 331304, + [SMALL_STATE(9917)] = 331324, + [SMALL_STATE(9918)] = 331340, + [SMALL_STATE(9919)] = 331362, + [SMALL_STATE(9920)] = 331380, + [SMALL_STATE(9921)] = 331396, + [SMALL_STATE(9922)] = 331412, + [SMALL_STATE(9923)] = 331428, + [SMALL_STATE(9924)] = 331448, + [SMALL_STATE(9925)] = 331468, + [SMALL_STATE(9926)] = 331484, + [SMALL_STATE(9927)] = 331504, + [SMALL_STATE(9928)] = 331524, + [SMALL_STATE(9929)] = 331540, + [SMALL_STATE(9930)] = 331560, + [SMALL_STATE(9931)] = 331580, + [SMALL_STATE(9932)] = 331596, + [SMALL_STATE(9933)] = 331616, + [SMALL_STATE(9934)] = 331636, + [SMALL_STATE(9935)] = 331662, + [SMALL_STATE(9936)] = 331682, + [SMALL_STATE(9937)] = 331698, + [SMALL_STATE(9938)] = 331718, + [SMALL_STATE(9939)] = 331734, + [SMALL_STATE(9940)] = 331754, + [SMALL_STATE(9941)] = 331770, + [SMALL_STATE(9942)] = 331790, + [SMALL_STATE(9943)] = 331808, + [SMALL_STATE(9944)] = 331824, + [SMALL_STATE(9945)] = 331844, + [SMALL_STATE(9946)] = 331860, + [SMALL_STATE(9947)] = 331880, + [SMALL_STATE(9948)] = 331906, + [SMALL_STATE(9949)] = 331928, + [SMALL_STATE(9950)] = 331948, + [SMALL_STATE(9951)] = 331974, + [SMALL_STATE(9952)] = 331994, + [SMALL_STATE(9953)] = 332014, + [SMALL_STATE(9954)] = 332034, + [SMALL_STATE(9955)] = 332054, + [SMALL_STATE(9956)] = 332074, + [SMALL_STATE(9957)] = 332094, + [SMALL_STATE(9958)] = 332110, + [SMALL_STATE(9959)] = 332130, + [SMALL_STATE(9960)] = 332150, + [SMALL_STATE(9961)] = 332170, + [SMALL_STATE(9962)] = 332186, + [SMALL_STATE(9963)] = 332206, + [SMALL_STATE(9964)] = 332226, + [SMALL_STATE(9965)] = 332248, + [SMALL_STATE(9966)] = 332264, + [SMALL_STATE(9967)] = 332280, + [SMALL_STATE(9968)] = 332296, + [SMALL_STATE(9969)] = 332322, + [SMALL_STATE(9970)] = 332338, + [SMALL_STATE(9971)] = 332354, + [SMALL_STATE(9972)] = 332370, + [SMALL_STATE(9973)] = 332390, + [SMALL_STATE(9974)] = 332410, + [SMALL_STATE(9975)] = 332430, + [SMALL_STATE(9976)] = 332450, + [SMALL_STATE(9977)] = 332466, + [SMALL_STATE(9978)] = 332484, + [SMALL_STATE(9979)] = 332508, + [SMALL_STATE(9980)] = 332524, + [SMALL_STATE(9981)] = 332540, + [SMALL_STATE(9982)] = 332566, + [SMALL_STATE(9983)] = 332586, + [SMALL_STATE(9984)] = 332608, + [SMALL_STATE(9985)] = 332628, + [SMALL_STATE(9986)] = 332648, + [SMALL_STATE(9987)] = 332664, + [SMALL_STATE(9988)] = 332690, + [SMALL_STATE(9989)] = 332706, + [SMALL_STATE(9990)] = 332726, + [SMALL_STATE(9991)] = 332746, + [SMALL_STATE(9992)] = 332764, + [SMALL_STATE(9993)] = 332786, + [SMALL_STATE(9994)] = 332806, + [SMALL_STATE(9995)] = 332826, + [SMALL_STATE(9996)] = 332852, + [SMALL_STATE(9997)] = 332878, + [SMALL_STATE(9998)] = 332898, + [SMALL_STATE(9999)] = 332914, + [SMALL_STATE(10000)] = 332934, + [SMALL_STATE(10001)] = 332954, + [SMALL_STATE(10002)] = 332980, + [SMALL_STATE(10003)] = 332996, + [SMALL_STATE(10004)] = 333016, + [SMALL_STATE(10005)] = 333036, + [SMALL_STATE(10006)] = 333056, + [SMALL_STATE(10007)] = 333082, + [SMALL_STATE(10008)] = 333102, + [SMALL_STATE(10009)] = 333124, + [SMALL_STATE(10010)] = 333150, + [SMALL_STATE(10011)] = 333170, + [SMALL_STATE(10012)] = 333186, + [SMALL_STATE(10013)] = 333204, + [SMALL_STATE(10014)] = 333228, + [SMALL_STATE(10015)] = 333248, + [SMALL_STATE(10016)] = 333268, + [SMALL_STATE(10017)] = 333294, + [SMALL_STATE(10018)] = 333316, + [SMALL_STATE(10019)] = 333342, + [SMALL_STATE(10020)] = 333358, + [SMALL_STATE(10021)] = 333378, + [SMALL_STATE(10022)] = 333398, + [SMALL_STATE(10023)] = 333418, + [SMALL_STATE(10024)] = 333438, + [SMALL_STATE(10025)] = 333458, + [SMALL_STATE(10026)] = 333478, + [SMALL_STATE(10027)] = 333494, + [SMALL_STATE(10028)] = 333510, + [SMALL_STATE(10029)] = 333526, + [SMALL_STATE(10030)] = 333546, + [SMALL_STATE(10031)] = 333562, + [SMALL_STATE(10032)] = 333588, + [SMALL_STATE(10033)] = 333604, + [SMALL_STATE(10034)] = 333630, + [SMALL_STATE(10035)] = 333650, + [SMALL_STATE(10036)] = 333666, + [SMALL_STATE(10037)] = 333690, + [SMALL_STATE(10038)] = 333706, + [SMALL_STATE(10039)] = 333722, + [SMALL_STATE(10040)] = 333746, + [SMALL_STATE(10041)] = 333766, + [SMALL_STATE(10042)] = 333792, + [SMALL_STATE(10043)] = 333816, + [SMALL_STATE(10044)] = 333836, + [SMALL_STATE(10045)] = 333856, + [SMALL_STATE(10046)] = 333876, + [SMALL_STATE(10047)] = 333892, + [SMALL_STATE(10048)] = 333912, + [SMALL_STATE(10049)] = 333928, + [SMALL_STATE(10050)] = 333948, + [SMALL_STATE(10051)] = 333974, + [SMALL_STATE(10052)] = 333994, + [SMALL_STATE(10053)] = 334012, + [SMALL_STATE(10054)] = 334028, + [SMALL_STATE(10055)] = 334048, + [SMALL_STATE(10056)] = 334064, + [SMALL_STATE(10057)] = 334084, + [SMALL_STATE(10058)] = 334104, + [SMALL_STATE(10059)] = 334130, + [SMALL_STATE(10060)] = 334154, + [SMALL_STATE(10061)] = 334170, + [SMALL_STATE(10062)] = 334186, + [SMALL_STATE(10063)] = 334202, + [SMALL_STATE(10064)] = 334222, + [SMALL_STATE(10065)] = 334238, + [SMALL_STATE(10066)] = 334264, + [SMALL_STATE(10067)] = 334288, + [SMALL_STATE(10068)] = 334308, + [SMALL_STATE(10069)] = 334328, + [SMALL_STATE(10070)] = 334346, + [SMALL_STATE(10071)] = 334366, + [SMALL_STATE(10072)] = 334388, + [SMALL_STATE(10073)] = 334414, + [SMALL_STATE(10074)] = 334430, + [SMALL_STATE(10075)] = 334456, + [SMALL_STATE(10076)] = 334476, + [SMALL_STATE(10077)] = 334496, + [SMALL_STATE(10078)] = 334522, + [SMALL_STATE(10079)] = 334548, + [SMALL_STATE(10080)] = 334570, + [SMALL_STATE(10081)] = 334586, + [SMALL_STATE(10082)] = 334606, + [SMALL_STATE(10083)] = 334632, + [SMALL_STATE(10084)] = 334652, + [SMALL_STATE(10085)] = 334668, + [SMALL_STATE(10086)] = 334688, + [SMALL_STATE(10087)] = 334704, + [SMALL_STATE(10088)] = 334724, + [SMALL_STATE(10089)] = 334740, + [SMALL_STATE(10090)] = 334756, + [SMALL_STATE(10091)] = 334776, + [SMALL_STATE(10092)] = 334796, + [SMALL_STATE(10093)] = 334812, + [SMALL_STATE(10094)] = 334828, + [SMALL_STATE(10095)] = 334847, + [SMALL_STATE(10096)] = 334866, + [SMALL_STATE(10097)] = 334883, + [SMALL_STATE(10098)] = 334904, + [SMALL_STATE(10099)] = 334923, + [SMALL_STATE(10100)] = 334942, + [SMALL_STATE(10101)] = 334963, + [SMALL_STATE(10102)] = 334986, + [SMALL_STATE(10103)] = 335005, + [SMALL_STATE(10104)] = 335026, + [SMALL_STATE(10105)] = 335045, + [SMALL_STATE(10106)] = 335068, + [SMALL_STATE(10107)] = 335087, + [SMALL_STATE(10108)] = 335110, + [SMALL_STATE(10109)] = 335129, + [SMALL_STATE(10110)] = 335150, + [SMALL_STATE(10111)] = 335171, + [SMALL_STATE(10112)] = 335190, + [SMALL_STATE(10113)] = 335213, + [SMALL_STATE(10114)] = 335234, + [SMALL_STATE(10115)] = 335255, + [SMALL_STATE(10116)] = 335274, + [SMALL_STATE(10117)] = 335295, + [SMALL_STATE(10118)] = 335312, + [SMALL_STATE(10119)] = 335329, + [SMALL_STATE(10120)] = 335346, + [SMALL_STATE(10121)] = 335367, + [SMALL_STATE(10122)] = 335388, + [SMALL_STATE(10123)] = 335409, + [SMALL_STATE(10124)] = 335428, + [SMALL_STATE(10125)] = 335449, + [SMALL_STATE(10126)] = 335468, + [SMALL_STATE(10127)] = 335487, + [SMALL_STATE(10128)] = 335506, + [SMALL_STATE(10129)] = 335523, + [SMALL_STATE(10130)] = 335546, + [SMALL_STATE(10131)] = 335565, + [SMALL_STATE(10132)] = 335586, + [SMALL_STATE(10133)] = 335607, + [SMALL_STATE(10134)] = 335626, + [SMALL_STATE(10135)] = 335647, + [SMALL_STATE(10136)] = 335668, + [SMALL_STATE(10137)] = 335687, + [SMALL_STATE(10138)] = 335700, + [SMALL_STATE(10139)] = 335723, + [SMALL_STATE(10140)] = 335744, + [SMALL_STATE(10141)] = 335765, + [SMALL_STATE(10142)] = 335786, + [SMALL_STATE(10143)] = 335809, + [SMALL_STATE(10144)] = 335830, + [SMALL_STATE(10145)] = 335849, + [SMALL_STATE(10146)] = 335868, + [SMALL_STATE(10147)] = 335889, + [SMALL_STATE(10148)] = 335908, + [SMALL_STATE(10149)] = 335927, + [SMALL_STATE(10150)] = 335946, + [SMALL_STATE(10151)] = 335965, + [SMALL_STATE(10152)] = 335984, + [SMALL_STATE(10153)] = 336005, + [SMALL_STATE(10154)] = 336024, + [SMALL_STATE(10155)] = 336043, + [SMALL_STATE(10156)] = 336062, + [SMALL_STATE(10157)] = 336081, + [SMALL_STATE(10158)] = 336100, + [SMALL_STATE(10159)] = 336119, + [SMALL_STATE(10160)] = 336138, + [SMALL_STATE(10161)] = 336159, + [SMALL_STATE(10162)] = 336180, + [SMALL_STATE(10163)] = 336199, + [SMALL_STATE(10164)] = 336218, + [SMALL_STATE(10165)] = 336237, + [SMALL_STATE(10166)] = 336258, + [SMALL_STATE(10167)] = 336277, + [SMALL_STATE(10168)] = 336298, + [SMALL_STATE(10169)] = 336317, + [SMALL_STATE(10170)] = 336336, + [SMALL_STATE(10171)] = 336355, + [SMALL_STATE(10172)] = 336374, + [SMALL_STATE(10173)] = 336393, + [SMALL_STATE(10174)] = 336412, + [SMALL_STATE(10175)] = 336433, + [SMALL_STATE(10176)] = 336456, + [SMALL_STATE(10177)] = 336477, + [SMALL_STATE(10178)] = 336496, + [SMALL_STATE(10179)] = 336515, + [SMALL_STATE(10180)] = 336532, + [SMALL_STATE(10181)] = 336553, + [SMALL_STATE(10182)] = 336572, + [SMALL_STATE(10183)] = 336593, + [SMALL_STATE(10184)] = 336614, + [SMALL_STATE(10185)] = 336635, + [SMALL_STATE(10186)] = 336656, + [SMALL_STATE(10187)] = 336677, + [SMALL_STATE(10188)] = 336696, + [SMALL_STATE(10189)] = 336717, + [SMALL_STATE(10190)] = 336736, + [SMALL_STATE(10191)] = 336757, + [SMALL_STATE(10192)] = 336778, + [SMALL_STATE(10193)] = 336799, + [SMALL_STATE(10194)] = 336820, + [SMALL_STATE(10195)] = 336841, + [SMALL_STATE(10196)] = 336862, + [SMALL_STATE(10197)] = 336883, + [SMALL_STATE(10198)] = 336904, + [SMALL_STATE(10199)] = 336925, + [SMALL_STATE(10200)] = 336946, + [SMALL_STATE(10201)] = 336967, + [SMALL_STATE(10202)] = 336982, + [SMALL_STATE(10203)] = 337001, + [SMALL_STATE(10204)] = 337022, + [SMALL_STATE(10205)] = 337043, + [SMALL_STATE(10206)] = 337064, + [SMALL_STATE(10207)] = 337085, + [SMALL_STATE(10208)] = 337106, + [SMALL_STATE(10209)] = 337127, + [SMALL_STATE(10210)] = 337148, + [SMALL_STATE(10211)] = 337169, + [SMALL_STATE(10212)] = 337190, + [SMALL_STATE(10213)] = 337211, + [SMALL_STATE(10214)] = 337232, + [SMALL_STATE(10215)] = 337253, + [SMALL_STATE(10216)] = 337274, + [SMALL_STATE(10217)] = 337295, + [SMALL_STATE(10218)] = 337316, + [SMALL_STATE(10219)] = 337337, + [SMALL_STATE(10220)] = 337358, + [SMALL_STATE(10221)] = 337379, + [SMALL_STATE(10222)] = 337398, + [SMALL_STATE(10223)] = 337419, + [SMALL_STATE(10224)] = 337440, + [SMALL_STATE(10225)] = 337457, + [SMALL_STATE(10226)] = 337476, + [SMALL_STATE(10227)] = 337495, + [SMALL_STATE(10228)] = 337516, + [SMALL_STATE(10229)] = 337537, + [SMALL_STATE(10230)] = 337556, + [SMALL_STATE(10231)] = 337575, + [SMALL_STATE(10232)] = 337596, + [SMALL_STATE(10233)] = 337615, + [SMALL_STATE(10234)] = 337636, + [SMALL_STATE(10235)] = 337655, + [SMALL_STATE(10236)] = 337676, + [SMALL_STATE(10237)] = 337697, + [SMALL_STATE(10238)] = 337718, + [SMALL_STATE(10239)] = 337739, + [SMALL_STATE(10240)] = 337760, + [SMALL_STATE(10241)] = 337781, + [SMALL_STATE(10242)] = 337802, + [SMALL_STATE(10243)] = 337823, + [SMALL_STATE(10244)] = 337844, + [SMALL_STATE(10245)] = 337865, + [SMALL_STATE(10246)] = 337886, + [SMALL_STATE(10247)] = 337907, + [SMALL_STATE(10248)] = 337928, + [SMALL_STATE(10249)] = 337949, + [SMALL_STATE(10250)] = 337970, + [SMALL_STATE(10251)] = 337991, + [SMALL_STATE(10252)] = 338012, + [SMALL_STATE(10253)] = 338031, + [SMALL_STATE(10254)] = 338050, + [SMALL_STATE(10255)] = 338071, + [SMALL_STATE(10256)] = 338092, + [SMALL_STATE(10257)] = 338113, + [SMALL_STATE(10258)] = 338134, + [SMALL_STATE(10259)] = 338149, + [SMALL_STATE(10260)] = 338170, + [SMALL_STATE(10261)] = 338191, + [SMALL_STATE(10262)] = 338208, + [SMALL_STATE(10263)] = 338227, + [SMALL_STATE(10264)] = 338248, + [SMALL_STATE(10265)] = 338267, + [SMALL_STATE(10266)] = 338286, + [SMALL_STATE(10267)] = 338305, + [SMALL_STATE(10268)] = 338326, + [SMALL_STATE(10269)] = 338345, + [SMALL_STATE(10270)] = 338366, + [SMALL_STATE(10271)] = 338387, + [SMALL_STATE(10272)] = 338408, + [SMALL_STATE(10273)] = 338429, + [SMALL_STATE(10274)] = 338450, + [SMALL_STATE(10275)] = 338471, + [SMALL_STATE(10276)] = 338492, + [SMALL_STATE(10277)] = 338513, + [SMALL_STATE(10278)] = 338534, + [SMALL_STATE(10279)] = 338555, + [SMALL_STATE(10280)] = 338576, + [SMALL_STATE(10281)] = 338597, + [SMALL_STATE(10282)] = 338618, + [SMALL_STATE(10283)] = 338639, + [SMALL_STATE(10284)] = 338660, + [SMALL_STATE(10285)] = 338679, + [SMALL_STATE(10286)] = 338696, + [SMALL_STATE(10287)] = 338717, + [SMALL_STATE(10288)] = 338736, + [SMALL_STATE(10289)] = 338755, + [SMALL_STATE(10290)] = 338776, + [SMALL_STATE(10291)] = 338797, + [SMALL_STATE(10292)] = 338814, + [SMALL_STATE(10293)] = 338833, + [SMALL_STATE(10294)] = 338854, + [SMALL_STATE(10295)] = 338875, + [SMALL_STATE(10296)] = 338896, + [SMALL_STATE(10297)] = 338917, + [SMALL_STATE(10298)] = 338938, + [SMALL_STATE(10299)] = 338959, + [SMALL_STATE(10300)] = 338980, + [SMALL_STATE(10301)] = 339001, + [SMALL_STATE(10302)] = 339022, + [SMALL_STATE(10303)] = 339043, + [SMALL_STATE(10304)] = 339064, + [SMALL_STATE(10305)] = 339085, + [SMALL_STATE(10306)] = 339106, + [SMALL_STATE(10307)] = 339127, + [SMALL_STATE(10308)] = 339148, + [SMALL_STATE(10309)] = 339169, + [SMALL_STATE(10310)] = 339190, + [SMALL_STATE(10311)] = 339211, + [SMALL_STATE(10312)] = 339230, + [SMALL_STATE(10313)] = 339251, + [SMALL_STATE(10314)] = 339272, + [SMALL_STATE(10315)] = 339291, + [SMALL_STATE(10316)] = 339310, + [SMALL_STATE(10317)] = 339329, + [SMALL_STATE(10318)] = 339348, + [SMALL_STATE(10319)] = 339367, + [SMALL_STATE(10320)] = 339386, + [SMALL_STATE(10321)] = 339407, + [SMALL_STATE(10322)] = 339428, + [SMALL_STATE(10323)] = 339449, + [SMALL_STATE(10324)] = 339470, + [SMALL_STATE(10325)] = 339491, + [SMALL_STATE(10326)] = 339512, + [SMALL_STATE(10327)] = 339533, + [SMALL_STATE(10328)] = 339554, + [SMALL_STATE(10329)] = 339575, + [SMALL_STATE(10330)] = 339596, + [SMALL_STATE(10331)] = 339617, + [SMALL_STATE(10332)] = 339638, + [SMALL_STATE(10333)] = 339659, + [SMALL_STATE(10334)] = 339680, + [SMALL_STATE(10335)] = 339701, + [SMALL_STATE(10336)] = 339722, + [SMALL_STATE(10337)] = 339743, + [SMALL_STATE(10338)] = 339764, + [SMALL_STATE(10339)] = 339785, + [SMALL_STATE(10340)] = 339806, + [SMALL_STATE(10341)] = 339827, + [SMALL_STATE(10342)] = 339848, + [SMALL_STATE(10343)] = 339869, + [SMALL_STATE(10344)] = 339890, + [SMALL_STATE(10345)] = 339911, + [SMALL_STATE(10346)] = 339932, + [SMALL_STATE(10347)] = 339953, + [SMALL_STATE(10348)] = 339974, + [SMALL_STATE(10349)] = 339995, + [SMALL_STATE(10350)] = 340016, + [SMALL_STATE(10351)] = 340035, + [SMALL_STATE(10352)] = 340056, + [SMALL_STATE(10353)] = 340077, + [SMALL_STATE(10354)] = 340096, + [SMALL_STATE(10355)] = 340109, + [SMALL_STATE(10356)] = 340130, + [SMALL_STATE(10357)] = 340151, + [SMALL_STATE(10358)] = 340172, + [SMALL_STATE(10359)] = 340193, + [SMALL_STATE(10360)] = 340214, + [SMALL_STATE(10361)] = 340235, + [SMALL_STATE(10362)] = 340256, + [SMALL_STATE(10363)] = 340277, + [SMALL_STATE(10364)] = 340298, + [SMALL_STATE(10365)] = 340319, + [SMALL_STATE(10366)] = 340340, + [SMALL_STATE(10367)] = 340361, + [SMALL_STATE(10368)] = 340382, + [SMALL_STATE(10369)] = 340403, + [SMALL_STATE(10370)] = 340424, + [SMALL_STATE(10371)] = 340445, + [SMALL_STATE(10372)] = 340466, + [SMALL_STATE(10373)] = 340487, + [SMALL_STATE(10374)] = 340508, + [SMALL_STATE(10375)] = 340529, + [SMALL_STATE(10376)] = 340550, + [SMALL_STATE(10377)] = 340571, + [SMALL_STATE(10378)] = 340592, + [SMALL_STATE(10379)] = 340613, + [SMALL_STATE(10380)] = 340634, + [SMALL_STATE(10381)] = 340655, + [SMALL_STATE(10382)] = 340676, + [SMALL_STATE(10383)] = 340697, + [SMALL_STATE(10384)] = 340716, + [SMALL_STATE(10385)] = 340737, + [SMALL_STATE(10386)] = 340758, + [SMALL_STATE(10387)] = 340779, + [SMALL_STATE(10388)] = 340800, + [SMALL_STATE(10389)] = 340821, + [SMALL_STATE(10390)] = 340842, + [SMALL_STATE(10391)] = 340863, + [SMALL_STATE(10392)] = 340884, + [SMALL_STATE(10393)] = 340905, + [SMALL_STATE(10394)] = 340926, + [SMALL_STATE(10395)] = 340947, + [SMALL_STATE(10396)] = 340968, + [SMALL_STATE(10397)] = 340989, + [SMALL_STATE(10398)] = 341010, + [SMALL_STATE(10399)] = 341031, + [SMALL_STATE(10400)] = 341052, + [SMALL_STATE(10401)] = 341073, + [SMALL_STATE(10402)] = 341094, + [SMALL_STATE(10403)] = 341115, + [SMALL_STATE(10404)] = 341136, + [SMALL_STATE(10405)] = 341157, + [SMALL_STATE(10406)] = 341178, + [SMALL_STATE(10407)] = 341199, + [SMALL_STATE(10408)] = 341220, + [SMALL_STATE(10409)] = 341241, + [SMALL_STATE(10410)] = 341262, + [SMALL_STATE(10411)] = 341283, + [SMALL_STATE(10412)] = 341304, + [SMALL_STATE(10413)] = 341325, + [SMALL_STATE(10414)] = 341346, + [SMALL_STATE(10415)] = 341365, + [SMALL_STATE(10416)] = 341386, + [SMALL_STATE(10417)] = 341405, + [SMALL_STATE(10418)] = 341424, + [SMALL_STATE(10419)] = 341445, + [SMALL_STATE(10420)] = 341462, + [SMALL_STATE(10421)] = 341483, + [SMALL_STATE(10422)] = 341502, + [SMALL_STATE(10423)] = 341523, + [SMALL_STATE(10424)] = 341540, + [SMALL_STATE(10425)] = 341557, + [SMALL_STATE(10426)] = 341574, + [SMALL_STATE(10427)] = 341593, + [SMALL_STATE(10428)] = 341612, + [SMALL_STATE(10429)] = 341633, + [SMALL_STATE(10430)] = 341654, + [SMALL_STATE(10431)] = 341673, + [SMALL_STATE(10432)] = 341694, + [SMALL_STATE(10433)] = 341715, + [SMALL_STATE(10434)] = 341734, + [SMALL_STATE(10435)] = 341755, + [SMALL_STATE(10436)] = 341772, + [SMALL_STATE(10437)] = 341787, + [SMALL_STATE(10438)] = 341806, + [SMALL_STATE(10439)] = 341825, + [SMALL_STATE(10440)] = 341846, + [SMALL_STATE(10441)] = 341865, + [SMALL_STATE(10442)] = 341884, + [SMALL_STATE(10443)] = 341903, + [SMALL_STATE(10444)] = 341922, + [SMALL_STATE(10445)] = 341941, + [SMALL_STATE(10446)] = 341960, + [SMALL_STATE(10447)] = 341979, + [SMALL_STATE(10448)] = 341998, + [SMALL_STATE(10449)] = 342017, + [SMALL_STATE(10450)] = 342036, + [SMALL_STATE(10451)] = 342055, + [SMALL_STATE(10452)] = 342074, + [SMALL_STATE(10453)] = 342093, + [SMALL_STATE(10454)] = 342110, + [SMALL_STATE(10455)] = 342127, + [SMALL_STATE(10456)] = 342146, + [SMALL_STATE(10457)] = 342165, + [SMALL_STATE(10458)] = 342184, + [SMALL_STATE(10459)] = 342205, + [SMALL_STATE(10460)] = 342224, + [SMALL_STATE(10461)] = 342243, + [SMALL_STATE(10462)] = 342262, + [SMALL_STATE(10463)] = 342281, + [SMALL_STATE(10464)] = 342304, + [SMALL_STATE(10465)] = 342323, + [SMALL_STATE(10466)] = 342342, + [SMALL_STATE(10467)] = 342361, + [SMALL_STATE(10468)] = 342376, + [SMALL_STATE(10469)] = 342395, + [SMALL_STATE(10470)] = 342412, + [SMALL_STATE(10471)] = 342433, + [SMALL_STATE(10472)] = 342452, + [SMALL_STATE(10473)] = 342471, + [SMALL_STATE(10474)] = 342488, + [SMALL_STATE(10475)] = 342505, + [SMALL_STATE(10476)] = 342524, + [SMALL_STATE(10477)] = 342543, + [SMALL_STATE(10478)] = 342562, + [SMALL_STATE(10479)] = 342583, + [SMALL_STATE(10480)] = 342602, + [SMALL_STATE(10481)] = 342621, + [SMALL_STATE(10482)] = 342640, + [SMALL_STATE(10483)] = 342659, + [SMALL_STATE(10484)] = 342678, + [SMALL_STATE(10485)] = 342699, + [SMALL_STATE(10486)] = 342720, + [SMALL_STATE(10487)] = 342739, + [SMALL_STATE(10488)] = 342758, + [SMALL_STATE(10489)] = 342779, + [SMALL_STATE(10490)] = 342796, + [SMALL_STATE(10491)] = 342813, + [SMALL_STATE(10492)] = 342834, + [SMALL_STATE(10493)] = 342851, + [SMALL_STATE(10494)] = 342870, + [SMALL_STATE(10495)] = 342889, + [SMALL_STATE(10496)] = 342910, + [SMALL_STATE(10497)] = 342929, + [SMALL_STATE(10498)] = 342950, + [SMALL_STATE(10499)] = 342969, + [SMALL_STATE(10500)] = 342988, + [SMALL_STATE(10501)] = 343007, + [SMALL_STATE(10502)] = 343026, + [SMALL_STATE(10503)] = 343045, + [SMALL_STATE(10504)] = 343064, + [SMALL_STATE(10505)] = 343083, + [SMALL_STATE(10506)] = 343102, + [SMALL_STATE(10507)] = 343121, + [SMALL_STATE(10508)] = 343140, + [SMALL_STATE(10509)] = 343159, + [SMALL_STATE(10510)] = 343178, + [SMALL_STATE(10511)] = 343197, + [SMALL_STATE(10512)] = 343214, + [SMALL_STATE(10513)] = 343237, + [SMALL_STATE(10514)] = 343256, + [SMALL_STATE(10515)] = 343277, + [SMALL_STATE(10516)] = 343300, + [SMALL_STATE(10517)] = 343319, + [SMALL_STATE(10518)] = 343338, + [SMALL_STATE(10519)] = 343357, + [SMALL_STATE(10520)] = 343376, + [SMALL_STATE(10521)] = 343395, + [SMALL_STATE(10522)] = 343412, + [SMALL_STATE(10523)] = 343431, + [SMALL_STATE(10524)] = 343450, + [SMALL_STATE(10525)] = 343469, + [SMALL_STATE(10526)] = 343490, + [SMALL_STATE(10527)] = 343509, + [SMALL_STATE(10528)] = 343528, + [SMALL_STATE(10529)] = 343547, + [SMALL_STATE(10530)] = 343566, + [SMALL_STATE(10531)] = 343585, + [SMALL_STATE(10532)] = 343606, + [SMALL_STATE(10533)] = 343625, + [SMALL_STATE(10534)] = 343644, + [SMALL_STATE(10535)] = 343659, + [SMALL_STATE(10536)] = 343678, + [SMALL_STATE(10537)] = 343695, + [SMALL_STATE(10538)] = 343716, + [SMALL_STATE(10539)] = 343735, + [SMALL_STATE(10540)] = 343754, + [SMALL_STATE(10541)] = 343773, + [SMALL_STATE(10542)] = 343792, + [SMALL_STATE(10543)] = 343811, + [SMALL_STATE(10544)] = 343830, + [SMALL_STATE(10545)] = 343847, + [SMALL_STATE(10546)] = 343866, + [SMALL_STATE(10547)] = 343883, + [SMALL_STATE(10548)] = 343902, + [SMALL_STATE(10549)] = 343921, + [SMALL_STATE(10550)] = 343940, + [SMALL_STATE(10551)] = 343959, + [SMALL_STATE(10552)] = 343978, + [SMALL_STATE(10553)] = 343999, + [SMALL_STATE(10554)] = 344016, + [SMALL_STATE(10555)] = 344037, + [SMALL_STATE(10556)] = 344056, + [SMALL_STATE(10557)] = 344075, + [SMALL_STATE(10558)] = 344092, + [SMALL_STATE(10559)] = 344111, + [SMALL_STATE(10560)] = 344130, + [SMALL_STATE(10561)] = 344149, + [SMALL_STATE(10562)] = 344168, + [SMALL_STATE(10563)] = 344189, + [SMALL_STATE(10564)] = 344208, + [SMALL_STATE(10565)] = 344227, + [SMALL_STATE(10566)] = 344246, + [SMALL_STATE(10567)] = 344267, + [SMALL_STATE(10568)] = 344286, + [SMALL_STATE(10569)] = 344305, + [SMALL_STATE(10570)] = 344326, + [SMALL_STATE(10571)] = 344345, + [SMALL_STATE(10572)] = 344364, + [SMALL_STATE(10573)] = 344383, + [SMALL_STATE(10574)] = 344402, + [SMALL_STATE(10575)] = 344421, + [SMALL_STATE(10576)] = 344440, + [SMALL_STATE(10577)] = 344459, + [SMALL_STATE(10578)] = 344482, + [SMALL_STATE(10579)] = 344501, + [SMALL_STATE(10580)] = 344520, + [SMALL_STATE(10581)] = 344539, + [SMALL_STATE(10582)] = 344558, + [SMALL_STATE(10583)] = 344577, + [SMALL_STATE(10584)] = 344596, + [SMALL_STATE(10585)] = 344615, + [SMALL_STATE(10586)] = 344634, + [SMALL_STATE(10587)] = 344653, + [SMALL_STATE(10588)] = 344674, + [SMALL_STATE(10589)] = 344693, + [SMALL_STATE(10590)] = 344712, + [SMALL_STATE(10591)] = 344733, + [SMALL_STATE(10592)] = 344752, + [SMALL_STATE(10593)] = 344771, + [SMALL_STATE(10594)] = 344790, + [SMALL_STATE(10595)] = 344809, + [SMALL_STATE(10596)] = 344828, + [SMALL_STATE(10597)] = 344847, + [SMALL_STATE(10598)] = 344866, + [SMALL_STATE(10599)] = 344885, + [SMALL_STATE(10600)] = 344904, + [SMALL_STATE(10601)] = 344923, + [SMALL_STATE(10602)] = 344942, + [SMALL_STATE(10603)] = 344961, + [SMALL_STATE(10604)] = 344980, + [SMALL_STATE(10605)] = 344999, + [SMALL_STATE(10606)] = 345018, + [SMALL_STATE(10607)] = 345037, + [SMALL_STATE(10608)] = 345058, + [SMALL_STATE(10609)] = 345077, + [SMALL_STATE(10610)] = 345096, + [SMALL_STATE(10611)] = 345115, + [SMALL_STATE(10612)] = 345134, + [SMALL_STATE(10613)] = 345153, + [SMALL_STATE(10614)] = 345172, + [SMALL_STATE(10615)] = 345191, + [SMALL_STATE(10616)] = 345210, + [SMALL_STATE(10617)] = 345229, + [SMALL_STATE(10618)] = 345248, + [SMALL_STATE(10619)] = 345267, + [SMALL_STATE(10620)] = 345286, + [SMALL_STATE(10621)] = 345303, + [SMALL_STATE(10622)] = 345322, + [SMALL_STATE(10623)] = 345341, + [SMALL_STATE(10624)] = 345360, + [SMALL_STATE(10625)] = 345379, + [SMALL_STATE(10626)] = 345400, + [SMALL_STATE(10627)] = 345419, + [SMALL_STATE(10628)] = 345438, + [SMALL_STATE(10629)] = 345457, + [SMALL_STATE(10630)] = 345476, + [SMALL_STATE(10631)] = 345495, + [SMALL_STATE(10632)] = 345514, + [SMALL_STATE(10633)] = 345533, + [SMALL_STATE(10634)] = 345552, + [SMALL_STATE(10635)] = 345571, + [SMALL_STATE(10636)] = 345590, + [SMALL_STATE(10637)] = 345609, + [SMALL_STATE(10638)] = 345628, + [SMALL_STATE(10639)] = 345643, + [SMALL_STATE(10640)] = 345662, + [SMALL_STATE(10641)] = 345681, + [SMALL_STATE(10642)] = 345700, + [SMALL_STATE(10643)] = 345719, + [SMALL_STATE(10644)] = 345738, + [SMALL_STATE(10645)] = 345757, + [SMALL_STATE(10646)] = 345776, + [SMALL_STATE(10647)] = 345797, + [SMALL_STATE(10648)] = 345816, + [SMALL_STATE(10649)] = 345835, + [SMALL_STATE(10650)] = 345854, + [SMALL_STATE(10651)] = 345873, + [SMALL_STATE(10652)] = 345894, + [SMALL_STATE(10653)] = 345913, + [SMALL_STATE(10654)] = 345934, + [SMALL_STATE(10655)] = 345955, + [SMALL_STATE(10656)] = 345974, + [SMALL_STATE(10657)] = 345993, + [SMALL_STATE(10658)] = 346012, + [SMALL_STATE(10659)] = 346031, + [SMALL_STATE(10660)] = 346050, + [SMALL_STATE(10661)] = 346071, + [SMALL_STATE(10662)] = 346090, + [SMALL_STATE(10663)] = 346111, + [SMALL_STATE(10664)] = 346130, + [SMALL_STATE(10665)] = 346149, + [SMALL_STATE(10666)] = 346168, + [SMALL_STATE(10667)] = 346185, + [SMALL_STATE(10668)] = 346206, + [SMALL_STATE(10669)] = 346225, + [SMALL_STATE(10670)] = 346242, + [SMALL_STATE(10671)] = 346263, + [SMALL_STATE(10672)] = 346284, + [SMALL_STATE(10673)] = 346305, + [SMALL_STATE(10674)] = 346322, + [SMALL_STATE(10675)] = 346343, + [SMALL_STATE(10676)] = 346364, + [SMALL_STATE(10677)] = 346385, + [SMALL_STATE(10678)] = 346404, + [SMALL_STATE(10679)] = 346425, + [SMALL_STATE(10680)] = 346446, + [SMALL_STATE(10681)] = 346467, + [SMALL_STATE(10682)] = 346488, + [SMALL_STATE(10683)] = 346509, + [SMALL_STATE(10684)] = 346530, + [SMALL_STATE(10685)] = 346549, + [SMALL_STATE(10686)] = 346570, + [SMALL_STATE(10687)] = 346589, + [SMALL_STATE(10688)] = 346610, + [SMALL_STATE(10689)] = 346631, + [SMALL_STATE(10690)] = 346652, + [SMALL_STATE(10691)] = 346665, + [SMALL_STATE(10692)] = 346688, + [SMALL_STATE(10693)] = 346707, + [SMALL_STATE(10694)] = 346728, + [SMALL_STATE(10695)] = 346749, + [SMALL_STATE(10696)] = 346770, + [SMALL_STATE(10697)] = 346791, + [SMALL_STATE(10698)] = 346810, + [SMALL_STATE(10699)] = 346831, + [SMALL_STATE(10700)] = 346852, + [SMALL_STATE(10701)] = 346871, + [SMALL_STATE(10702)] = 346892, + [SMALL_STATE(10703)] = 346913, + [SMALL_STATE(10704)] = 346936, + [SMALL_STATE(10705)] = 346959, + [SMALL_STATE(10706)] = 346980, + [SMALL_STATE(10707)] = 347003, + [SMALL_STATE(10708)] = 347024, + [SMALL_STATE(10709)] = 347045, + [SMALL_STATE(10710)] = 347066, + [SMALL_STATE(10711)] = 347087, + [SMALL_STATE(10712)] = 347108, + [SMALL_STATE(10713)] = 347129, + [SMALL_STATE(10714)] = 347152, + [SMALL_STATE(10715)] = 347173, + [SMALL_STATE(10716)] = 347194, + [SMALL_STATE(10717)] = 347215, + [SMALL_STATE(10718)] = 347234, + [SMALL_STATE(10719)] = 347255, + [SMALL_STATE(10720)] = 347276, + [SMALL_STATE(10721)] = 347297, + [SMALL_STATE(10722)] = 347320, + [SMALL_STATE(10723)] = 347343, + [SMALL_STATE(10724)] = 347366, + [SMALL_STATE(10725)] = 347389, + [SMALL_STATE(10726)] = 347410, + [SMALL_STATE(10727)] = 347431, + [SMALL_STATE(10728)] = 347452, + [SMALL_STATE(10729)] = 347473, + [SMALL_STATE(10730)] = 347494, + [SMALL_STATE(10731)] = 347515, + [SMALL_STATE(10732)] = 347536, + [SMALL_STATE(10733)] = 347557, + [SMALL_STATE(10734)] = 347578, + [SMALL_STATE(10735)] = 347599, + [SMALL_STATE(10736)] = 347616, + [SMALL_STATE(10737)] = 347637, + [SMALL_STATE(10738)] = 347654, + [SMALL_STATE(10739)] = 347675, + [SMALL_STATE(10740)] = 347694, + [SMALL_STATE(10741)] = 347713, + [SMALL_STATE(10742)] = 347734, + [SMALL_STATE(10743)] = 347753, + [SMALL_STATE(10744)] = 347772, + [SMALL_STATE(10745)] = 347791, + [SMALL_STATE(10746)] = 347810, + [SMALL_STATE(10747)] = 347829, + [SMALL_STATE(10748)] = 347848, + [SMALL_STATE(10749)] = 347865, + [SMALL_STATE(10750)] = 347884, + [SMALL_STATE(10751)] = 347903, + [SMALL_STATE(10752)] = 347922, + [SMALL_STATE(10753)] = 347943, + [SMALL_STATE(10754)] = 347962, + [SMALL_STATE(10755)] = 347981, + [SMALL_STATE(10756)] = 348000, + [SMALL_STATE(10757)] = 348019, + [SMALL_STATE(10758)] = 348038, + [SMALL_STATE(10759)] = 348057, + [SMALL_STATE(10760)] = 348076, + [SMALL_STATE(10761)] = 348095, + [SMALL_STATE(10762)] = 348114, + [SMALL_STATE(10763)] = 348135, + [SMALL_STATE(10764)] = 348156, + [SMALL_STATE(10765)] = 348175, + [SMALL_STATE(10766)] = 348194, + [SMALL_STATE(10767)] = 348215, + [SMALL_STATE(10768)] = 348232, + [SMALL_STATE(10769)] = 348253, + [SMALL_STATE(10770)] = 348274, + [SMALL_STATE(10771)] = 348293, + [SMALL_STATE(10772)] = 348312, + [SMALL_STATE(10773)] = 348329, + [SMALL_STATE(10774)] = 348348, + [SMALL_STATE(10775)] = 348367, + [SMALL_STATE(10776)] = 348386, + [SMALL_STATE(10777)] = 348405, + [SMALL_STATE(10778)] = 348422, + [SMALL_STATE(10779)] = 348441, + [SMALL_STATE(10780)] = 348462, + [SMALL_STATE(10781)] = 348483, + [SMALL_STATE(10782)] = 348504, + [SMALL_STATE(10783)] = 348527, + [SMALL_STATE(10784)] = 348548, + [SMALL_STATE(10785)] = 348567, + [SMALL_STATE(10786)] = 348588, + [SMALL_STATE(10787)] = 348609, + [SMALL_STATE(10788)] = 348630, + [SMALL_STATE(10789)] = 348651, + [SMALL_STATE(10790)] = 348674, + [SMALL_STATE(10791)] = 348695, + [SMALL_STATE(10792)] = 348716, + [SMALL_STATE(10793)] = 348739, + [SMALL_STATE(10794)] = 348754, + [SMALL_STATE(10795)] = 348773, + [SMALL_STATE(10796)] = 348794, + [SMALL_STATE(10797)] = 348815, + [SMALL_STATE(10798)] = 348836, + [SMALL_STATE(10799)] = 348857, + [SMALL_STATE(10800)] = 348878, + [SMALL_STATE(10801)] = 348899, + [SMALL_STATE(10802)] = 348916, + [SMALL_STATE(10803)] = 348935, + [SMALL_STATE(10804)] = 348954, + [SMALL_STATE(10805)] = 348975, + [SMALL_STATE(10806)] = 348994, + [SMALL_STATE(10807)] = 349013, + [SMALL_STATE(10808)] = 349032, + [SMALL_STATE(10809)] = 349051, + [SMALL_STATE(10810)] = 349070, + [SMALL_STATE(10811)] = 349091, + [SMALL_STATE(10812)] = 349110, + [SMALL_STATE(10813)] = 349129, + [SMALL_STATE(10814)] = 349148, + [SMALL_STATE(10815)] = 349167, + [SMALL_STATE(10816)] = 349186, + [SMALL_STATE(10817)] = 349207, + [SMALL_STATE(10818)] = 349226, + [SMALL_STATE(10819)] = 349245, + [SMALL_STATE(10820)] = 349264, + [SMALL_STATE(10821)] = 349285, + [SMALL_STATE(10822)] = 349304, + [SMALL_STATE(10823)] = 349323, + [SMALL_STATE(10824)] = 349344, + [SMALL_STATE(10825)] = 349367, + [SMALL_STATE(10826)] = 349386, + [SMALL_STATE(10827)] = 349409, + [SMALL_STATE(10828)] = 349430, + [SMALL_STATE(10829)] = 349451, + [SMALL_STATE(10830)] = 349470, + [SMALL_STATE(10831)] = 349489, + [SMALL_STATE(10832)] = 349508, + [SMALL_STATE(10833)] = 349527, + [SMALL_STATE(10834)] = 349546, + [SMALL_STATE(10835)] = 349567, + [SMALL_STATE(10836)] = 349582, + [SMALL_STATE(10837)] = 349605, + [SMALL_STATE(10838)] = 349622, + [SMALL_STATE(10839)] = 349641, + [SMALL_STATE(10840)] = 349660, + [SMALL_STATE(10841)] = 349681, + [SMALL_STATE(10842)] = 349702, + [SMALL_STATE(10843)] = 349721, + [SMALL_STATE(10844)] = 349742, + [SMALL_STATE(10845)] = 349761, + [SMALL_STATE(10846)] = 349780, + [SMALL_STATE(10847)] = 349801, + [SMALL_STATE(10848)] = 349820, + [SMALL_STATE(10849)] = 349839, + [SMALL_STATE(10850)] = 349856, + [SMALL_STATE(10851)] = 349875, + [SMALL_STATE(10852)] = 349896, + [SMALL_STATE(10853)] = 349915, + [SMALL_STATE(10854)] = 349936, + [SMALL_STATE(10855)] = 349955, + [SMALL_STATE(10856)] = 349978, + [SMALL_STATE(10857)] = 349997, + [SMALL_STATE(10858)] = 350016, + [SMALL_STATE(10859)] = 350035, + [SMALL_STATE(10860)] = 350054, + [SMALL_STATE(10861)] = 350075, + [SMALL_STATE(10862)] = 350096, + [SMALL_STATE(10863)] = 350115, + [SMALL_STATE(10864)] = 350138, + [SMALL_STATE(10865)] = 350157, + [SMALL_STATE(10866)] = 350180, + [SMALL_STATE(10867)] = 350199, + [SMALL_STATE(10868)] = 350218, + [SMALL_STATE(10869)] = 350239, + [SMALL_STATE(10870)] = 350260, + [SMALL_STATE(10871)] = 350279, + [SMALL_STATE(10872)] = 350298, + [SMALL_STATE(10873)] = 350317, + [SMALL_STATE(10874)] = 350340, + [SMALL_STATE(10875)] = 350361, + [SMALL_STATE(10876)] = 350380, + [SMALL_STATE(10877)] = 350401, + [SMALL_STATE(10878)] = 350420, + [SMALL_STATE(10879)] = 350439, + [SMALL_STATE(10880)] = 350458, + [SMALL_STATE(10881)] = 350477, + [SMALL_STATE(10882)] = 350498, + [SMALL_STATE(10883)] = 350517, + [SMALL_STATE(10884)] = 350538, + [SMALL_STATE(10885)] = 350559, + [SMALL_STATE(10886)] = 350578, + [SMALL_STATE(10887)] = 350601, + [SMALL_STATE(10888)] = 350620, + [SMALL_STATE(10889)] = 350643, + [SMALL_STATE(10890)] = 350666, + [SMALL_STATE(10891)] = 350685, + [SMALL_STATE(10892)] = 350708, + [SMALL_STATE(10893)] = 350727, + [SMALL_STATE(10894)] = 350748, + [SMALL_STATE(10895)] = 350767, + [SMALL_STATE(10896)] = 350786, + [SMALL_STATE(10897)] = 350807, + [SMALL_STATE(10898)] = 350828, + [SMALL_STATE(10899)] = 350851, + [SMALL_STATE(10900)] = 350870, + [SMALL_STATE(10901)] = 350893, + [SMALL_STATE(10902)] = 350912, + [SMALL_STATE(10903)] = 350935, + [SMALL_STATE(10904)] = 350954, + [SMALL_STATE(10905)] = 350977, + [SMALL_STATE(10906)] = 350996, + [SMALL_STATE(10907)] = 351015, + [SMALL_STATE(10908)] = 351034, + [SMALL_STATE(10909)] = 351053, + [SMALL_STATE(10910)] = 351072, + [SMALL_STATE(10911)] = 351091, + [SMALL_STATE(10912)] = 351110, + [SMALL_STATE(10913)] = 351131, + [SMALL_STATE(10914)] = 351150, + [SMALL_STATE(10915)] = 351169, + [SMALL_STATE(10916)] = 351188, + [SMALL_STATE(10917)] = 351207, + [SMALL_STATE(10918)] = 351226, + [SMALL_STATE(10919)] = 351245, + [SMALL_STATE(10920)] = 351264, + [SMALL_STATE(10921)] = 351283, + [SMALL_STATE(10922)] = 351306, + [SMALL_STATE(10923)] = 351329, + [SMALL_STATE(10924)] = 351348, + [SMALL_STATE(10925)] = 351371, + [SMALL_STATE(10926)] = 351390, + [SMALL_STATE(10927)] = 351413, + [SMALL_STATE(10928)] = 351432, + [SMALL_STATE(10929)] = 351451, + [SMALL_STATE(10930)] = 351472, + [SMALL_STATE(10931)] = 351493, + [SMALL_STATE(10932)] = 351514, + [SMALL_STATE(10933)] = 351535, + [SMALL_STATE(10934)] = 351554, + [SMALL_STATE(10935)] = 351573, + [SMALL_STATE(10936)] = 351594, + [SMALL_STATE(10937)] = 351613, + [SMALL_STATE(10938)] = 351634, + [SMALL_STATE(10939)] = 351653, + [SMALL_STATE(10940)] = 351671, + [SMALL_STATE(10941)] = 351687, + [SMALL_STATE(10942)] = 351703, + [SMALL_STATE(10943)] = 351721, + [SMALL_STATE(10944)] = 351737, + [SMALL_STATE(10945)] = 351757, + [SMALL_STATE(10946)] = 351777, + [SMALL_STATE(10947)] = 351795, + [SMALL_STATE(10948)] = 351811, + [SMALL_STATE(10949)] = 351829, + [SMALL_STATE(10950)] = 351847, + [SMALL_STATE(10951)] = 351865, + [SMALL_STATE(10952)] = 351883, + [SMALL_STATE(10953)] = 351899, + [SMALL_STATE(10954)] = 351919, + [SMALL_STATE(10955)] = 351937, + [SMALL_STATE(10956)] = 351955, + [SMALL_STATE(10957)] = 351967, + [SMALL_STATE(10958)] = 351983, + [SMALL_STATE(10959)] = 352003, + [SMALL_STATE(10960)] = 352019, + [SMALL_STATE(10961)] = 352037, + [SMALL_STATE(10962)] = 352055, + [SMALL_STATE(10963)] = 352073, + [SMALL_STATE(10964)] = 352093, + [SMALL_STATE(10965)] = 352113, + [SMALL_STATE(10966)] = 352125, + [SMALL_STATE(10967)] = 352145, + [SMALL_STATE(10968)] = 352157, + [SMALL_STATE(10969)] = 352177, + [SMALL_STATE(10970)] = 352197, + [SMALL_STATE(10971)] = 352217, + [SMALL_STATE(10972)] = 352229, + [SMALL_STATE(10973)] = 352249, + [SMALL_STATE(10974)] = 352269, + [SMALL_STATE(10975)] = 352285, + [SMALL_STATE(10976)] = 352297, + [SMALL_STATE(10977)] = 352309, + [SMALL_STATE(10978)] = 352321, + [SMALL_STATE(10979)] = 352337, + [SMALL_STATE(10980)] = 352353, + [SMALL_STATE(10981)] = 352371, + [SMALL_STATE(10982)] = 352383, + [SMALL_STATE(10983)] = 352399, + [SMALL_STATE(10984)] = 352411, + [SMALL_STATE(10985)] = 352427, + [SMALL_STATE(10986)] = 352443, + [SMALL_STATE(10987)] = 352463, + [SMALL_STATE(10988)] = 352481, + [SMALL_STATE(10989)] = 352495, + [SMALL_STATE(10990)] = 352511, + [SMALL_STATE(10991)] = 352529, + [SMALL_STATE(10992)] = 352549, + [SMALL_STATE(10993)] = 352565, + [SMALL_STATE(10994)] = 352583, + [SMALL_STATE(10995)] = 352595, + [SMALL_STATE(10996)] = 352613, + [SMALL_STATE(10997)] = 352631, + [SMALL_STATE(10998)] = 352651, + [SMALL_STATE(10999)] = 352669, + [SMALL_STATE(11000)] = 352687, + [SMALL_STATE(11001)] = 352707, + [SMALL_STATE(11002)] = 352725, + [SMALL_STATE(11003)] = 352741, + [SMALL_STATE(11004)] = 352761, + [SMALL_STATE(11005)] = 352779, + [SMALL_STATE(11006)] = 352795, + [SMALL_STATE(11007)] = 352813, + [SMALL_STATE(11008)] = 352831, + [SMALL_STATE(11009)] = 352849, + [SMALL_STATE(11010)] = 352867, + [SMALL_STATE(11011)] = 352885, + [SMALL_STATE(11012)] = 352897, + [SMALL_STATE(11013)] = 352915, + [SMALL_STATE(11014)] = 352933, + [SMALL_STATE(11015)] = 352951, + [SMALL_STATE(11016)] = 352963, + [SMALL_STATE(11017)] = 352975, + [SMALL_STATE(11018)] = 352995, + [SMALL_STATE(11019)] = 353013, + [SMALL_STATE(11020)] = 353029, + [SMALL_STATE(11021)] = 353043, + [SMALL_STATE(11022)] = 353059, + [SMALL_STATE(11023)] = 353075, + [SMALL_STATE(11024)] = 353087, + [SMALL_STATE(11025)] = 353105, + [SMALL_STATE(11026)] = 353123, + [SMALL_STATE(11027)] = 353141, + [SMALL_STATE(11028)] = 353153, + [SMALL_STATE(11029)] = 353165, + [SMALL_STATE(11030)] = 353177, + [SMALL_STATE(11031)] = 353193, + [SMALL_STATE(11032)] = 353211, + [SMALL_STATE(11033)] = 353231, + [SMALL_STATE(11034)] = 353249, + [SMALL_STATE(11035)] = 353261, + [SMALL_STATE(11036)] = 353279, + [SMALL_STATE(11037)] = 353291, + [SMALL_STATE(11038)] = 353303, + [SMALL_STATE(11039)] = 353315, + [SMALL_STATE(11040)] = 353333, + [SMALL_STATE(11041)] = 353349, + [SMALL_STATE(11042)] = 353361, + [SMALL_STATE(11043)] = 353373, + [SMALL_STATE(11044)] = 353391, + [SMALL_STATE(11045)] = 353409, + [SMALL_STATE(11046)] = 353427, + [SMALL_STATE(11047)] = 353447, + [SMALL_STATE(11048)] = 353465, + [SMALL_STATE(11049)] = 353481, + [SMALL_STATE(11050)] = 353493, + [SMALL_STATE(11051)] = 353509, + [SMALL_STATE(11052)] = 353529, + [SMALL_STATE(11053)] = 353541, + [SMALL_STATE(11054)] = 353559, + [SMALL_STATE(11055)] = 353577, + [SMALL_STATE(11056)] = 353595, + [SMALL_STATE(11057)] = 353607, + [SMALL_STATE(11058)] = 353621, + [SMALL_STATE(11059)] = 353637, + [SMALL_STATE(11060)] = 353653, + [SMALL_STATE(11061)] = 353673, + [SMALL_STATE(11062)] = 353691, + [SMALL_STATE(11063)] = 353709, + [SMALL_STATE(11064)] = 353725, + [SMALL_STATE(11065)] = 353737, + [SMALL_STATE(11066)] = 353755, + [SMALL_STATE(11067)] = 353767, + [SMALL_STATE(11068)] = 353779, + [SMALL_STATE(11069)] = 353799, + [SMALL_STATE(11070)] = 353817, + [SMALL_STATE(11071)] = 353835, + [SMALL_STATE(11072)] = 353853, + [SMALL_STATE(11073)] = 353869, + [SMALL_STATE(11074)] = 353885, + [SMALL_STATE(11075)] = 353901, + [SMALL_STATE(11076)] = 353919, + [SMALL_STATE(11077)] = 353933, + [SMALL_STATE(11078)] = 353949, + [SMALL_STATE(11079)] = 353967, + [SMALL_STATE(11080)] = 353981, + [SMALL_STATE(11081)] = 353997, + [SMALL_STATE(11082)] = 354017, + [SMALL_STATE(11083)] = 354035, + [SMALL_STATE(11084)] = 354053, + [SMALL_STATE(11085)] = 354073, + [SMALL_STATE(11086)] = 354091, + [SMALL_STATE(11087)] = 354109, + [SMALL_STATE(11088)] = 354127, + [SMALL_STATE(11089)] = 354145, + [SMALL_STATE(11090)] = 354163, + [SMALL_STATE(11091)] = 354179, + [SMALL_STATE(11092)] = 354195, + [SMALL_STATE(11093)] = 354215, + [SMALL_STATE(11094)] = 354235, + [SMALL_STATE(11095)] = 354253, + [SMALL_STATE(11096)] = 354273, + [SMALL_STATE(11097)] = 354285, + [SMALL_STATE(11098)] = 354301, + [SMALL_STATE(11099)] = 354313, + [SMALL_STATE(11100)] = 354331, + [SMALL_STATE(11101)] = 354349, + [SMALL_STATE(11102)] = 354367, + [SMALL_STATE(11103)] = 354385, + [SMALL_STATE(11104)] = 354397, + [SMALL_STATE(11105)] = 354415, + [SMALL_STATE(11106)] = 354433, + [SMALL_STATE(11107)] = 354451, + [SMALL_STATE(11108)] = 354467, + [SMALL_STATE(11109)] = 354483, + [SMALL_STATE(11110)] = 354499, + [SMALL_STATE(11111)] = 354517, + [SMALL_STATE(11112)] = 354537, + [SMALL_STATE(11113)] = 354555, + [SMALL_STATE(11114)] = 354573, + [SMALL_STATE(11115)] = 354591, + [SMALL_STATE(11116)] = 354609, + [SMALL_STATE(11117)] = 354627, + [SMALL_STATE(11118)] = 354645, + [SMALL_STATE(11119)] = 354663, + [SMALL_STATE(11120)] = 354681, + [SMALL_STATE(11121)] = 354701, + [SMALL_STATE(11122)] = 354719, + [SMALL_STATE(11123)] = 354735, + [SMALL_STATE(11124)] = 354753, + [SMALL_STATE(11125)] = 354771, + [SMALL_STATE(11126)] = 354789, + [SMALL_STATE(11127)] = 354805, + [SMALL_STATE(11128)] = 354825, + [SMALL_STATE(11129)] = 354845, + [SMALL_STATE(11130)] = 354861, + [SMALL_STATE(11131)] = 354881, + [SMALL_STATE(11132)] = 354899, + [SMALL_STATE(11133)] = 354915, + [SMALL_STATE(11134)] = 354933, + [SMALL_STATE(11135)] = 354953, + [SMALL_STATE(11136)] = 354971, + [SMALL_STATE(11137)] = 354989, + [SMALL_STATE(11138)] = 355007, + [SMALL_STATE(11139)] = 355023, + [SMALL_STATE(11140)] = 355039, + [SMALL_STATE(11141)] = 355057, + [SMALL_STATE(11142)] = 355075, + [SMALL_STATE(11143)] = 355093, + [SMALL_STATE(11144)] = 355105, + [SMALL_STATE(11145)] = 355117, + [SMALL_STATE(11146)] = 355129, + [SMALL_STATE(11147)] = 355141, + [SMALL_STATE(11148)] = 355159, + [SMALL_STATE(11149)] = 355175, + [SMALL_STATE(11150)] = 355195, + [SMALL_STATE(11151)] = 355215, + [SMALL_STATE(11152)] = 355233, + [SMALL_STATE(11153)] = 355249, + [SMALL_STATE(11154)] = 355267, + [SMALL_STATE(11155)] = 355287, + [SMALL_STATE(11156)] = 355307, + [SMALL_STATE(11157)] = 355327, + [SMALL_STATE(11158)] = 355347, + [SMALL_STATE(11159)] = 355365, + [SMALL_STATE(11160)] = 355385, + [SMALL_STATE(11161)] = 355403, + [SMALL_STATE(11162)] = 355421, + [SMALL_STATE(11163)] = 355439, + [SMALL_STATE(11164)] = 355451, + [SMALL_STATE(11165)] = 355467, + [SMALL_STATE(11166)] = 355487, + [SMALL_STATE(11167)] = 355507, + [SMALL_STATE(11168)] = 355523, + [SMALL_STATE(11169)] = 355539, + [SMALL_STATE(11170)] = 355555, + [SMALL_STATE(11171)] = 355573, + [SMALL_STATE(11172)] = 355591, + [SMALL_STATE(11173)] = 355603, + [SMALL_STATE(11174)] = 355621, + [SMALL_STATE(11175)] = 355639, + [SMALL_STATE(11176)] = 355657, + [SMALL_STATE(11177)] = 355675, + [SMALL_STATE(11178)] = 355693, + [SMALL_STATE(11179)] = 355705, + [SMALL_STATE(11180)] = 355723, + [SMALL_STATE(11181)] = 355741, + [SMALL_STATE(11182)] = 355759, + [SMALL_STATE(11183)] = 355777, + [SMALL_STATE(11184)] = 355795, + [SMALL_STATE(11185)] = 355811, + [SMALL_STATE(11186)] = 355825, + [SMALL_STATE(11187)] = 355837, + [SMALL_STATE(11188)] = 355852, + [SMALL_STATE(11189)] = 355867, + [SMALL_STATE(11190)] = 355882, + [SMALL_STATE(11191)] = 355897, + [SMALL_STATE(11192)] = 355912, + [SMALL_STATE(11193)] = 355927, + [SMALL_STATE(11194)] = 355942, + [SMALL_STATE(11195)] = 355953, + [SMALL_STATE(11196)] = 355964, + [SMALL_STATE(11197)] = 355975, + [SMALL_STATE(11198)] = 355986, + [SMALL_STATE(11199)] = 356003, + [SMALL_STATE(11200)] = 356018, + [SMALL_STATE(11201)] = 356033, + [SMALL_STATE(11202)] = 356048, + [SMALL_STATE(11203)] = 356063, + [SMALL_STATE(11204)] = 356078, + [SMALL_STATE(11205)] = 356093, + [SMALL_STATE(11206)] = 356106, + [SMALL_STATE(11207)] = 356121, + [SMALL_STATE(11208)] = 356136, + [SMALL_STATE(11209)] = 356151, + [SMALL_STATE(11210)] = 356166, + [SMALL_STATE(11211)] = 356177, + [SMALL_STATE(11212)] = 356188, + [SMALL_STATE(11213)] = 356203, + [SMALL_STATE(11214)] = 356214, + [SMALL_STATE(11215)] = 356229, + [SMALL_STATE(11216)] = 356240, + [SMALL_STATE(11217)] = 356255, + [SMALL_STATE(11218)] = 356266, + [SMALL_STATE(11219)] = 356281, + [SMALL_STATE(11220)] = 356296, + [SMALL_STATE(11221)] = 356313, + [SMALL_STATE(11222)] = 356328, + [SMALL_STATE(11223)] = 356343, + [SMALL_STATE(11224)] = 356358, + [SMALL_STATE(11225)] = 356373, + [SMALL_STATE(11226)] = 356388, + [SMALL_STATE(11227)] = 356403, + [SMALL_STATE(11228)] = 356418, + [SMALL_STATE(11229)] = 356433, + [SMALL_STATE(11230)] = 356450, + [SMALL_STATE(11231)] = 356465, + [SMALL_STATE(11232)] = 356480, + [SMALL_STATE(11233)] = 356491, + [SMALL_STATE(11234)] = 356502, + [SMALL_STATE(11235)] = 356513, + [SMALL_STATE(11236)] = 356524, + [SMALL_STATE(11237)] = 356535, + [SMALL_STATE(11238)] = 356550, + [SMALL_STATE(11239)] = 356561, + [SMALL_STATE(11240)] = 356576, + [SMALL_STATE(11241)] = 356591, + [SMALL_STATE(11242)] = 356608, + [SMALL_STATE(11243)] = 356623, + [SMALL_STATE(11244)] = 356638, + [SMALL_STATE(11245)] = 356653, + [SMALL_STATE(11246)] = 356668, + [SMALL_STATE(11247)] = 356683, + [SMALL_STATE(11248)] = 356698, + [SMALL_STATE(11249)] = 356713, + [SMALL_STATE(11250)] = 356728, + [SMALL_STATE(11251)] = 356743, + [SMALL_STATE(11252)] = 356758, + [SMALL_STATE(11253)] = 356775, + [SMALL_STATE(11254)] = 356790, + [SMALL_STATE(11255)] = 356805, + [SMALL_STATE(11256)] = 356820, + [SMALL_STATE(11257)] = 356835, + [SMALL_STATE(11258)] = 356852, + [SMALL_STATE(11259)] = 356867, + [SMALL_STATE(11260)] = 356882, + [SMALL_STATE(11261)] = 356897, + [SMALL_STATE(11262)] = 356914, + [SMALL_STATE(11263)] = 356931, + [SMALL_STATE(11264)] = 356946, + [SMALL_STATE(11265)] = 356961, + [SMALL_STATE(11266)] = 356976, + [SMALL_STATE(11267)] = 356991, + [SMALL_STATE(11268)] = 357006, + [SMALL_STATE(11269)] = 357021, + [SMALL_STATE(11270)] = 357036, + [SMALL_STATE(11271)] = 357051, + [SMALL_STATE(11272)] = 357066, + [SMALL_STATE(11273)] = 357081, + [SMALL_STATE(11274)] = 357096, + [SMALL_STATE(11275)] = 357111, + [SMALL_STATE(11276)] = 357126, + [SMALL_STATE(11277)] = 357141, + [SMALL_STATE(11278)] = 357156, + [SMALL_STATE(11279)] = 357171, + [SMALL_STATE(11280)] = 357186, + [SMALL_STATE(11281)] = 357201, + [SMALL_STATE(11282)] = 357218, + [SMALL_STATE(11283)] = 357233, + [SMALL_STATE(11284)] = 357250, + [SMALL_STATE(11285)] = 357263, + [SMALL_STATE(11286)] = 357278, + [SMALL_STATE(11287)] = 357293, + [SMALL_STATE(11288)] = 357304, + [SMALL_STATE(11289)] = 357315, + [SMALL_STATE(11290)] = 357330, + [SMALL_STATE(11291)] = 357345, + [SMALL_STATE(11292)] = 357360, + [SMALL_STATE(11293)] = 357375, + [SMALL_STATE(11294)] = 357390, + [SMALL_STATE(11295)] = 357405, + [SMALL_STATE(11296)] = 357420, + [SMALL_STATE(11297)] = 357435, + [SMALL_STATE(11298)] = 357450, + [SMALL_STATE(11299)] = 357465, + [SMALL_STATE(11300)] = 357480, + [SMALL_STATE(11301)] = 357495, + [SMALL_STATE(11302)] = 357510, + [SMALL_STATE(11303)] = 357525, + [SMALL_STATE(11304)] = 357540, + [SMALL_STATE(11305)] = 357555, + [SMALL_STATE(11306)] = 357570, + [SMALL_STATE(11307)] = 357585, + [SMALL_STATE(11308)] = 357602, + [SMALL_STATE(11309)] = 357617, + [SMALL_STATE(11310)] = 357632, + [SMALL_STATE(11311)] = 357647, + [SMALL_STATE(11312)] = 357662, + [SMALL_STATE(11313)] = 357679, + [SMALL_STATE(11314)] = 357694, + [SMALL_STATE(11315)] = 357709, + [SMALL_STATE(11316)] = 357726, + [SMALL_STATE(11317)] = 357741, + [SMALL_STATE(11318)] = 357756, + [SMALL_STATE(11319)] = 357771, + [SMALL_STATE(11320)] = 357786, + [SMALL_STATE(11321)] = 357801, + [SMALL_STATE(11322)] = 357816, + [SMALL_STATE(11323)] = 357831, + [SMALL_STATE(11324)] = 357846, + [SMALL_STATE(11325)] = 357861, + [SMALL_STATE(11326)] = 357876, + [SMALL_STATE(11327)] = 357891, + [SMALL_STATE(11328)] = 357906, + [SMALL_STATE(11329)] = 357921, + [SMALL_STATE(11330)] = 357936, + [SMALL_STATE(11331)] = 357951, + [SMALL_STATE(11332)] = 357964, + [SMALL_STATE(11333)] = 357979, + [SMALL_STATE(11334)] = 357994, + [SMALL_STATE(11335)] = 358009, + [SMALL_STATE(11336)] = 358024, + [SMALL_STATE(11337)] = 358039, + [SMALL_STATE(11338)] = 358054, + [SMALL_STATE(11339)] = 358069, + [SMALL_STATE(11340)] = 358084, + [SMALL_STATE(11341)] = 358099, + [SMALL_STATE(11342)] = 358114, + [SMALL_STATE(11343)] = 358129, + [SMALL_STATE(11344)] = 358144, + [SMALL_STATE(11345)] = 358159, + [SMALL_STATE(11346)] = 358174, + [SMALL_STATE(11347)] = 358189, + [SMALL_STATE(11348)] = 358204, + [SMALL_STATE(11349)] = 358221, + [SMALL_STATE(11350)] = 358236, + [SMALL_STATE(11351)] = 358251, + [SMALL_STATE(11352)] = 358266, + [SMALL_STATE(11353)] = 358281, + [SMALL_STATE(11354)] = 358296, + [SMALL_STATE(11355)] = 358311, + [SMALL_STATE(11356)] = 358326, + [SMALL_STATE(11357)] = 358341, + [SMALL_STATE(11358)] = 358356, + [SMALL_STATE(11359)] = 358371, + [SMALL_STATE(11360)] = 358386, + [SMALL_STATE(11361)] = 358401, + [SMALL_STATE(11362)] = 358416, + [SMALL_STATE(11363)] = 358431, + [SMALL_STATE(11364)] = 358448, + [SMALL_STATE(11365)] = 358465, + [SMALL_STATE(11366)] = 358480, + [SMALL_STATE(11367)] = 358495, + [SMALL_STATE(11368)] = 358510, + [SMALL_STATE(11369)] = 358525, + [SMALL_STATE(11370)] = 358540, + [SMALL_STATE(11371)] = 358555, + [SMALL_STATE(11372)] = 358570, + [SMALL_STATE(11373)] = 358585, + [SMALL_STATE(11374)] = 358600, + [SMALL_STATE(11375)] = 358615, + [SMALL_STATE(11376)] = 358630, + [SMALL_STATE(11377)] = 358641, + [SMALL_STATE(11378)] = 358652, + [SMALL_STATE(11379)] = 358667, + [SMALL_STATE(11380)] = 358682, + [SMALL_STATE(11381)] = 358693, + [SMALL_STATE(11382)] = 358708, + [SMALL_STATE(11383)] = 358725, + [SMALL_STATE(11384)] = 358740, + [SMALL_STATE(11385)] = 358755, + [SMALL_STATE(11386)] = 358770, + [SMALL_STATE(11387)] = 358785, + [SMALL_STATE(11388)] = 358802, + [SMALL_STATE(11389)] = 358813, + [SMALL_STATE(11390)] = 358824, + [SMALL_STATE(11391)] = 358835, + [SMALL_STATE(11392)] = 358850, + [SMALL_STATE(11393)] = 358861, + [SMALL_STATE(11394)] = 358876, + [SMALL_STATE(11395)] = 358891, + [SMALL_STATE(11396)] = 358906, + [SMALL_STATE(11397)] = 358921, + [SMALL_STATE(11398)] = 358932, + [SMALL_STATE(11399)] = 358947, + [SMALL_STATE(11400)] = 358958, + [SMALL_STATE(11401)] = 358973, + [SMALL_STATE(11402)] = 358984, + [SMALL_STATE(11403)] = 358995, + [SMALL_STATE(11404)] = 359006, + [SMALL_STATE(11405)] = 359017, + [SMALL_STATE(11406)] = 359032, + [SMALL_STATE(11407)] = 359047, + [SMALL_STATE(11408)] = 359062, + [SMALL_STATE(11409)] = 359077, + [SMALL_STATE(11410)] = 359092, + [SMALL_STATE(11411)] = 359103, + [SMALL_STATE(11412)] = 359118, + [SMALL_STATE(11413)] = 359133, + [SMALL_STATE(11414)] = 359148, + [SMALL_STATE(11415)] = 359163, + [SMALL_STATE(11416)] = 359178, + [SMALL_STATE(11417)] = 359193, + [SMALL_STATE(11418)] = 359208, + [SMALL_STATE(11419)] = 359223, + [SMALL_STATE(11420)] = 359238, + [SMALL_STATE(11421)] = 359253, + [SMALL_STATE(11422)] = 359268, + [SMALL_STATE(11423)] = 359283, + [SMALL_STATE(11424)] = 359298, + [SMALL_STATE(11425)] = 359313, + [SMALL_STATE(11426)] = 359328, + [SMALL_STATE(11427)] = 359343, + [SMALL_STATE(11428)] = 359358, + [SMALL_STATE(11429)] = 359373, + [SMALL_STATE(11430)] = 359388, + [SMALL_STATE(11431)] = 359403, + [SMALL_STATE(11432)] = 359418, + [SMALL_STATE(11433)] = 359433, + [SMALL_STATE(11434)] = 359450, + [SMALL_STATE(11435)] = 359465, + [SMALL_STATE(11436)] = 359478, + [SMALL_STATE(11437)] = 359495, + [SMALL_STATE(11438)] = 359510, + [SMALL_STATE(11439)] = 359525, + [SMALL_STATE(11440)] = 359540, + [SMALL_STATE(11441)] = 359555, + [SMALL_STATE(11442)] = 359570, + [SMALL_STATE(11443)] = 359585, + [SMALL_STATE(11444)] = 359600, + [SMALL_STATE(11445)] = 359615, + [SMALL_STATE(11446)] = 359630, + [SMALL_STATE(11447)] = 359645, + [SMALL_STATE(11448)] = 359660, + [SMALL_STATE(11449)] = 359675, + [SMALL_STATE(11450)] = 359690, + [SMALL_STATE(11451)] = 359705, + [SMALL_STATE(11452)] = 359720, + [SMALL_STATE(11453)] = 359731, + [SMALL_STATE(11454)] = 359746, + [SMALL_STATE(11455)] = 359757, + [SMALL_STATE(11456)] = 359772, + [SMALL_STATE(11457)] = 359787, + [SMALL_STATE(11458)] = 359798, + [SMALL_STATE(11459)] = 359809, + [SMALL_STATE(11460)] = 359824, + [SMALL_STATE(11461)] = 359835, + [SMALL_STATE(11462)] = 359850, + [SMALL_STATE(11463)] = 359865, + [SMALL_STATE(11464)] = 359880, + [SMALL_STATE(11465)] = 359895, + [SMALL_STATE(11466)] = 359910, + [SMALL_STATE(11467)] = 359925, + [SMALL_STATE(11468)] = 359940, + [SMALL_STATE(11469)] = 359955, + [SMALL_STATE(11470)] = 359970, + [SMALL_STATE(11471)] = 359985, + [SMALL_STATE(11472)] = 360000, + [SMALL_STATE(11473)] = 360015, + [SMALL_STATE(11474)] = 360030, + [SMALL_STATE(11475)] = 360045, + [SMALL_STATE(11476)] = 360060, + [SMALL_STATE(11477)] = 360075, + [SMALL_STATE(11478)] = 360090, + [SMALL_STATE(11479)] = 360107, + [SMALL_STATE(11480)] = 360122, + [SMALL_STATE(11481)] = 360137, + [SMALL_STATE(11482)] = 360152, + [SMALL_STATE(11483)] = 360167, + [SMALL_STATE(11484)] = 360182, + [SMALL_STATE(11485)] = 360197, + [SMALL_STATE(11486)] = 360212, + [SMALL_STATE(11487)] = 360227, + [SMALL_STATE(11488)] = 360242, + [SMALL_STATE(11489)] = 360257, + [SMALL_STATE(11490)] = 360272, + [SMALL_STATE(11491)] = 360287, + [SMALL_STATE(11492)] = 360302, + [SMALL_STATE(11493)] = 360317, + [SMALL_STATE(11494)] = 360332, + [SMALL_STATE(11495)] = 360347, + [SMALL_STATE(11496)] = 360362, + [SMALL_STATE(11497)] = 360377, + [SMALL_STATE(11498)] = 360392, + [SMALL_STATE(11499)] = 360407, + [SMALL_STATE(11500)] = 360422, + [SMALL_STATE(11501)] = 360437, + [SMALL_STATE(11502)] = 360452, + [SMALL_STATE(11503)] = 360467, + [SMALL_STATE(11504)] = 360482, + [SMALL_STATE(11505)] = 360499, + [SMALL_STATE(11506)] = 360514, + [SMALL_STATE(11507)] = 360529, + [SMALL_STATE(11508)] = 360546, + [SMALL_STATE(11509)] = 360557, + [SMALL_STATE(11510)] = 360568, + [SMALL_STATE(11511)] = 360583, + [SMALL_STATE(11512)] = 360594, + [SMALL_STATE(11513)] = 360605, + [SMALL_STATE(11514)] = 360616, + [SMALL_STATE(11515)] = 360627, + [SMALL_STATE(11516)] = 360642, + [SMALL_STATE(11517)] = 360657, + [SMALL_STATE(11518)] = 360672, + [SMALL_STATE(11519)] = 360683, + [SMALL_STATE(11520)] = 360698, + [SMALL_STATE(11521)] = 360713, + [SMALL_STATE(11522)] = 360728, + [SMALL_STATE(11523)] = 360743, + [SMALL_STATE(11524)] = 360754, + [SMALL_STATE(11525)] = 360769, + [SMALL_STATE(11526)] = 360786, + [SMALL_STATE(11527)] = 360803, + [SMALL_STATE(11528)] = 360818, + [SMALL_STATE(11529)] = 360833, + [SMALL_STATE(11530)] = 360848, + [SMALL_STATE(11531)] = 360863, + [SMALL_STATE(11532)] = 360878, + [SMALL_STATE(11533)] = 360893, + [SMALL_STATE(11534)] = 360908, + [SMALL_STATE(11535)] = 360923, + [SMALL_STATE(11536)] = 360938, + [SMALL_STATE(11537)] = 360953, + [SMALL_STATE(11538)] = 360968, + [SMALL_STATE(11539)] = 360983, + [SMALL_STATE(11540)] = 360998, + [SMALL_STATE(11541)] = 361013, + [SMALL_STATE(11542)] = 361030, + [SMALL_STATE(11543)] = 361045, + [SMALL_STATE(11544)] = 361060, + [SMALL_STATE(11545)] = 361075, + [SMALL_STATE(11546)] = 361090, + [SMALL_STATE(11547)] = 361105, + [SMALL_STATE(11548)] = 361120, + [SMALL_STATE(11549)] = 361135, + [SMALL_STATE(11550)] = 361150, + [SMALL_STATE(11551)] = 361167, + [SMALL_STATE(11552)] = 361182, + [SMALL_STATE(11553)] = 361197, + [SMALL_STATE(11554)] = 361212, + [SMALL_STATE(11555)] = 361227, + [SMALL_STATE(11556)] = 361242, + [SMALL_STATE(11557)] = 361257, + [SMALL_STATE(11558)] = 361272, + [SMALL_STATE(11559)] = 361287, + [SMALL_STATE(11560)] = 361302, + [SMALL_STATE(11561)] = 361317, + [SMALL_STATE(11562)] = 361332, + [SMALL_STATE(11563)] = 361347, + [SMALL_STATE(11564)] = 361362, + [SMALL_STATE(11565)] = 361377, + [SMALL_STATE(11566)] = 361392, + [SMALL_STATE(11567)] = 361407, + [SMALL_STATE(11568)] = 361422, + [SMALL_STATE(11569)] = 361437, + [SMALL_STATE(11570)] = 361452, + [SMALL_STATE(11571)] = 361469, + [SMALL_STATE(11572)] = 361486, + [SMALL_STATE(11573)] = 361501, + [SMALL_STATE(11574)] = 361516, + [SMALL_STATE(11575)] = 361531, + [SMALL_STATE(11576)] = 361546, + [SMALL_STATE(11577)] = 361559, + [SMALL_STATE(11578)] = 361574, + [SMALL_STATE(11579)] = 361587, + [SMALL_STATE(11580)] = 361602, + [SMALL_STATE(11581)] = 361617, + [SMALL_STATE(11582)] = 361632, + [SMALL_STATE(11583)] = 361647, + [SMALL_STATE(11584)] = 361662, + [SMALL_STATE(11585)] = 361677, + [SMALL_STATE(11586)] = 361694, + [SMALL_STATE(11587)] = 361709, + [SMALL_STATE(11588)] = 361724, + [SMALL_STATE(11589)] = 361739, + [SMALL_STATE(11590)] = 361754, + [SMALL_STATE(11591)] = 361769, + [SMALL_STATE(11592)] = 361784, + [SMALL_STATE(11593)] = 361801, + [SMALL_STATE(11594)] = 361816, + [SMALL_STATE(11595)] = 361831, + [SMALL_STATE(11596)] = 361846, + [SMALL_STATE(11597)] = 361861, + [SMALL_STATE(11598)] = 361876, + [SMALL_STATE(11599)] = 361893, + [SMALL_STATE(11600)] = 361908, + [SMALL_STATE(11601)] = 361923, + [SMALL_STATE(11602)] = 361938, + [SMALL_STATE(11603)] = 361955, + [SMALL_STATE(11604)] = 361970, + [SMALL_STATE(11605)] = 361981, + [SMALL_STATE(11606)] = 361996, + [SMALL_STATE(11607)] = 362007, + [SMALL_STATE(11608)] = 362024, + [SMALL_STATE(11609)] = 362039, + [SMALL_STATE(11610)] = 362054, + [SMALL_STATE(11611)] = 362065, + [SMALL_STATE(11612)] = 362080, + [SMALL_STATE(11613)] = 362095, + [SMALL_STATE(11614)] = 362106, + [SMALL_STATE(11615)] = 362121, + [SMALL_STATE(11616)] = 362136, + [SMALL_STATE(11617)] = 362151, + [SMALL_STATE(11618)] = 362168, + [SMALL_STATE(11619)] = 362179, + [SMALL_STATE(11620)] = 362194, + [SMALL_STATE(11621)] = 362211, + [SMALL_STATE(11622)] = 362222, + [SMALL_STATE(11623)] = 362237, + [SMALL_STATE(11624)] = 362248, + [SMALL_STATE(11625)] = 362259, + [SMALL_STATE(11626)] = 362270, + [SMALL_STATE(11627)] = 362285, + [SMALL_STATE(11628)] = 362296, + [SMALL_STATE(11629)] = 362311, + [SMALL_STATE(11630)] = 362326, + [SMALL_STATE(11631)] = 362341, + [SMALL_STATE(11632)] = 362352, + [SMALL_STATE(11633)] = 362367, + [SMALL_STATE(11634)] = 362378, + [SMALL_STATE(11635)] = 362393, + [SMALL_STATE(11636)] = 362404, + [SMALL_STATE(11637)] = 362419, + [SMALL_STATE(11638)] = 362434, + [SMALL_STATE(11639)] = 362445, + [SMALL_STATE(11640)] = 362460, + [SMALL_STATE(11641)] = 362475, + [SMALL_STATE(11642)] = 362490, + [SMALL_STATE(11643)] = 362507, + [SMALL_STATE(11644)] = 362524, + [SMALL_STATE(11645)] = 362539, + [SMALL_STATE(11646)] = 362554, + [SMALL_STATE(11647)] = 362569, + [SMALL_STATE(11648)] = 362584, + [SMALL_STATE(11649)] = 362599, + [SMALL_STATE(11650)] = 362614, + [SMALL_STATE(11651)] = 362629, + [SMALL_STATE(11652)] = 362644, + [SMALL_STATE(11653)] = 362659, + [SMALL_STATE(11654)] = 362674, + [SMALL_STATE(11655)] = 362689, + [SMALL_STATE(11656)] = 362704, + [SMALL_STATE(11657)] = 362719, + [SMALL_STATE(11658)] = 362734, + [SMALL_STATE(11659)] = 362751, + [SMALL_STATE(11660)] = 362766, + [SMALL_STATE(11661)] = 362783, + [SMALL_STATE(11662)] = 362798, + [SMALL_STATE(11663)] = 362815, + [SMALL_STATE(11664)] = 362830, + [SMALL_STATE(11665)] = 362845, + [SMALL_STATE(11666)] = 362860, + [SMALL_STATE(11667)] = 362877, + [SMALL_STATE(11668)] = 362892, + [SMALL_STATE(11669)] = 362907, + [SMALL_STATE(11670)] = 362918, + [SMALL_STATE(11671)] = 362933, + [SMALL_STATE(11672)] = 362948, + [SMALL_STATE(11673)] = 362963, + [SMALL_STATE(11674)] = 362978, + [SMALL_STATE(11675)] = 362993, + [SMALL_STATE(11676)] = 363008, + [SMALL_STATE(11677)] = 363023, + [SMALL_STATE(11678)] = 363034, + [SMALL_STATE(11679)] = 363049, + [SMALL_STATE(11680)] = 363064, + [SMALL_STATE(11681)] = 363079, + [SMALL_STATE(11682)] = 363094, + [SMALL_STATE(11683)] = 363109, + [SMALL_STATE(11684)] = 363124, + [SMALL_STATE(11685)] = 363139, + [SMALL_STATE(11686)] = 363156, + [SMALL_STATE(11687)] = 363167, + [SMALL_STATE(11688)] = 363182, + [SMALL_STATE(11689)] = 363197, + [SMALL_STATE(11690)] = 363208, + [SMALL_STATE(11691)] = 363223, + [SMALL_STATE(11692)] = 363238, + [SMALL_STATE(11693)] = 363253, + [SMALL_STATE(11694)] = 363268, + [SMALL_STATE(11695)] = 363285, + [SMALL_STATE(11696)] = 363300, + [SMALL_STATE(11697)] = 363311, + [SMALL_STATE(11698)] = 363326, + [SMALL_STATE(11699)] = 363341, + [SMALL_STATE(11700)] = 363358, + [SMALL_STATE(11701)] = 363375, + [SMALL_STATE(11702)] = 363390, + [SMALL_STATE(11703)] = 363401, + [SMALL_STATE(11704)] = 363414, + [SMALL_STATE(11705)] = 363429, + [SMALL_STATE(11706)] = 363444, + [SMALL_STATE(11707)] = 363459, + [SMALL_STATE(11708)] = 363474, + [SMALL_STATE(11709)] = 363491, + [SMALL_STATE(11710)] = 363506, + [SMALL_STATE(11711)] = 363521, + [SMALL_STATE(11712)] = 363536, + [SMALL_STATE(11713)] = 363549, + [SMALL_STATE(11714)] = 363564, + [SMALL_STATE(11715)] = 363579, + [SMALL_STATE(11716)] = 363590, + [SMALL_STATE(11717)] = 363605, + [SMALL_STATE(11718)] = 363620, + [SMALL_STATE(11719)] = 363637, + [SMALL_STATE(11720)] = 363652, + [SMALL_STATE(11721)] = 363667, + [SMALL_STATE(11722)] = 363682, + [SMALL_STATE(11723)] = 363693, + [SMALL_STATE(11724)] = 363708, + [SMALL_STATE(11725)] = 363723, + [SMALL_STATE(11726)] = 363740, + [SMALL_STATE(11727)] = 363755, + [SMALL_STATE(11728)] = 363770, + [SMALL_STATE(11729)] = 363785, + [SMALL_STATE(11730)] = 363800, + [SMALL_STATE(11731)] = 363817, + [SMALL_STATE(11732)] = 363834, + [SMALL_STATE(11733)] = 363849, + [SMALL_STATE(11734)] = 363866, + [SMALL_STATE(11735)] = 363881, + [SMALL_STATE(11736)] = 363898, + [SMALL_STATE(11737)] = 363913, + [SMALL_STATE(11738)] = 363924, + [SMALL_STATE(11739)] = 363935, + [SMALL_STATE(11740)] = 363950, + [SMALL_STATE(11741)] = 363961, + [SMALL_STATE(11742)] = 363972, + [SMALL_STATE(11743)] = 363987, + [SMALL_STATE(11744)] = 364002, + [SMALL_STATE(11745)] = 364017, + [SMALL_STATE(11746)] = 364032, + [SMALL_STATE(11747)] = 364047, + [SMALL_STATE(11748)] = 364062, + [SMALL_STATE(11749)] = 364073, + [SMALL_STATE(11750)] = 364088, + [SMALL_STATE(11751)] = 364103, + [SMALL_STATE(11752)] = 364118, + [SMALL_STATE(11753)] = 364133, + [SMALL_STATE(11754)] = 364148, + [SMALL_STATE(11755)] = 364163, + [SMALL_STATE(11756)] = 364178, + [SMALL_STATE(11757)] = 364193, + [SMALL_STATE(11758)] = 364210, + [SMALL_STATE(11759)] = 364225, + [SMALL_STATE(11760)] = 364240, + [SMALL_STATE(11761)] = 364255, + [SMALL_STATE(11762)] = 364270, + [SMALL_STATE(11763)] = 364285, + [SMALL_STATE(11764)] = 364300, + [SMALL_STATE(11765)] = 364315, + [SMALL_STATE(11766)] = 364330, + [SMALL_STATE(11767)] = 364345, + [SMALL_STATE(11768)] = 364360, + [SMALL_STATE(11769)] = 364375, + [SMALL_STATE(11770)] = 364390, + [SMALL_STATE(11771)] = 364405, + [SMALL_STATE(11772)] = 364420, + [SMALL_STATE(11773)] = 364435, + [SMALL_STATE(11774)] = 364450, + [SMALL_STATE(11775)] = 364465, + [SMALL_STATE(11776)] = 364480, + [SMALL_STATE(11777)] = 364495, + [SMALL_STATE(11778)] = 364510, + [SMALL_STATE(11779)] = 364525, + [SMALL_STATE(11780)] = 364540, + [SMALL_STATE(11781)] = 364555, + [SMALL_STATE(11782)] = 364570, + [SMALL_STATE(11783)] = 364585, + [SMALL_STATE(11784)] = 364600, + [SMALL_STATE(11785)] = 364615, + [SMALL_STATE(11786)] = 364630, + [SMALL_STATE(11787)] = 364647, + [SMALL_STATE(11788)] = 364662, + [SMALL_STATE(11789)] = 364677, + [SMALL_STATE(11790)] = 364692, + [SMALL_STATE(11791)] = 364707, + [SMALL_STATE(11792)] = 364722, + [SMALL_STATE(11793)] = 364737, + [SMALL_STATE(11794)] = 364752, + [SMALL_STATE(11795)] = 364763, + [SMALL_STATE(11796)] = 364778, + [SMALL_STATE(11797)] = 364795, + [SMALL_STATE(11798)] = 364810, + [SMALL_STATE(11799)] = 364825, + [SMALL_STATE(11800)] = 364836, + [SMALL_STATE(11801)] = 364851, + [SMALL_STATE(11802)] = 364866, + [SMALL_STATE(11803)] = 364881, + [SMALL_STATE(11804)] = 364898, + [SMALL_STATE(11805)] = 364915, + [SMALL_STATE(11806)] = 364930, + [SMALL_STATE(11807)] = 364944, + [SMALL_STATE(11808)] = 364958, + [SMALL_STATE(11809)] = 364972, + [SMALL_STATE(11810)] = 364986, + [SMALL_STATE(11811)] = 365000, + [SMALL_STATE(11812)] = 365014, + [SMALL_STATE(11813)] = 365028, + [SMALL_STATE(11814)] = 365038, + [SMALL_STATE(11815)] = 365052, + [SMALL_STATE(11816)] = 365066, + [SMALL_STATE(11817)] = 365076, + [SMALL_STATE(11818)] = 365090, + [SMALL_STATE(11819)] = 365100, + [SMALL_STATE(11820)] = 365114, + [SMALL_STATE(11821)] = 365128, + [SMALL_STATE(11822)] = 365142, + [SMALL_STATE(11823)] = 365156, + [SMALL_STATE(11824)] = 365170, + [SMALL_STATE(11825)] = 365184, + [SMALL_STATE(11826)] = 365198, + [SMALL_STATE(11827)] = 365212, + [SMALL_STATE(11828)] = 365226, + [SMALL_STATE(11829)] = 365240, + [SMALL_STATE(11830)] = 365254, + [SMALL_STATE(11831)] = 365268, + [SMALL_STATE(11832)] = 365282, + [SMALL_STATE(11833)] = 365296, + [SMALL_STATE(11834)] = 365308, + [SMALL_STATE(11835)] = 365322, + [SMALL_STATE(11836)] = 365336, + [SMALL_STATE(11837)] = 365348, + [SMALL_STATE(11838)] = 365362, + [SMALL_STATE(11839)] = 365376, + [SMALL_STATE(11840)] = 365388, + [SMALL_STATE(11841)] = 365402, + [SMALL_STATE(11842)] = 365416, + [SMALL_STATE(11843)] = 365430, + [SMALL_STATE(11844)] = 365444, + [SMALL_STATE(11845)] = 365456, + [SMALL_STATE(11846)] = 365466, + [SMALL_STATE(11847)] = 365480, + [SMALL_STATE(11848)] = 365494, + [SMALL_STATE(11849)] = 365508, + [SMALL_STATE(11850)] = 365522, + [SMALL_STATE(11851)] = 365536, + [SMALL_STATE(11852)] = 365550, + [SMALL_STATE(11853)] = 365564, + [SMALL_STATE(11854)] = 365578, + [SMALL_STATE(11855)] = 365592, + [SMALL_STATE(11856)] = 365606, + [SMALL_STATE(11857)] = 365620, + [SMALL_STATE(11858)] = 365634, + [SMALL_STATE(11859)] = 365648, + [SMALL_STATE(11860)] = 365662, + [SMALL_STATE(11861)] = 365676, + [SMALL_STATE(11862)] = 365690, + [SMALL_STATE(11863)] = 365704, + [SMALL_STATE(11864)] = 365718, + [SMALL_STATE(11865)] = 365732, + [SMALL_STATE(11866)] = 365746, + [SMALL_STATE(11867)] = 365760, + [SMALL_STATE(11868)] = 365774, + [SMALL_STATE(11869)] = 365784, + [SMALL_STATE(11870)] = 365798, + [SMALL_STATE(11871)] = 365808, + [SMALL_STATE(11872)] = 365822, + [SMALL_STATE(11873)] = 365836, + [SMALL_STATE(11874)] = 365850, + [SMALL_STATE(11875)] = 365864, + [SMALL_STATE(11876)] = 365878, + [SMALL_STATE(11877)] = 365892, + [SMALL_STATE(11878)] = 365906, + [SMALL_STATE(11879)] = 365918, + [SMALL_STATE(11880)] = 365932, + [SMALL_STATE(11881)] = 365946, + [SMALL_STATE(11882)] = 365960, + [SMALL_STATE(11883)] = 365974, + [SMALL_STATE(11884)] = 365988, + [SMALL_STATE(11885)] = 366002, + [SMALL_STATE(11886)] = 366016, + [SMALL_STATE(11887)] = 366030, + [SMALL_STATE(11888)] = 366044, + [SMALL_STATE(11889)] = 366058, + [SMALL_STATE(11890)] = 366072, + [SMALL_STATE(11891)] = 366086, + [SMALL_STATE(11892)] = 366100, + [SMALL_STATE(11893)] = 366114, + [SMALL_STATE(11894)] = 366128, + [SMALL_STATE(11895)] = 366140, + [SMALL_STATE(11896)] = 366154, + [SMALL_STATE(11897)] = 366168, + [SMALL_STATE(11898)] = 366182, + [SMALL_STATE(11899)] = 366196, + [SMALL_STATE(11900)] = 366210, + [SMALL_STATE(11901)] = 366224, + [SMALL_STATE(11902)] = 366236, + [SMALL_STATE(11903)] = 366250, + [SMALL_STATE(11904)] = 366264, + [SMALL_STATE(11905)] = 366278, + [SMALL_STATE(11906)] = 366292, + [SMALL_STATE(11907)] = 366306, + [SMALL_STATE(11908)] = 366320, + [SMALL_STATE(11909)] = 366334, + [SMALL_STATE(11910)] = 366348, + [SMALL_STATE(11911)] = 366360, + [SMALL_STATE(11912)] = 366372, + [SMALL_STATE(11913)] = 366386, + [SMALL_STATE(11914)] = 366400, + [SMALL_STATE(11915)] = 366414, + [SMALL_STATE(11916)] = 366428, + [SMALL_STATE(11917)] = 366442, + [SMALL_STATE(11918)] = 366456, + [SMALL_STATE(11919)] = 366470, + [SMALL_STATE(11920)] = 366482, + [SMALL_STATE(11921)] = 366494, + [SMALL_STATE(11922)] = 366508, + [SMALL_STATE(11923)] = 366522, + [SMALL_STATE(11924)] = 366534, + [SMALL_STATE(11925)] = 366548, + [SMALL_STATE(11926)] = 366562, + [SMALL_STATE(11927)] = 366576, + [SMALL_STATE(11928)] = 366590, + [SMALL_STATE(11929)] = 366604, + [SMALL_STATE(11930)] = 366618, + [SMALL_STATE(11931)] = 366632, + [SMALL_STATE(11932)] = 366646, + [SMALL_STATE(11933)] = 366660, + [SMALL_STATE(11934)] = 366674, + [SMALL_STATE(11935)] = 366688, + [SMALL_STATE(11936)] = 366702, + [SMALL_STATE(11937)] = 366716, + [SMALL_STATE(11938)] = 366730, + [SMALL_STATE(11939)] = 366744, + [SMALL_STATE(11940)] = 366758, + [SMALL_STATE(11941)] = 366772, + [SMALL_STATE(11942)] = 366786, + [SMALL_STATE(11943)] = 366800, + [SMALL_STATE(11944)] = 366814, + [SMALL_STATE(11945)] = 366828, + [SMALL_STATE(11946)] = 366840, + [SMALL_STATE(11947)] = 366854, + [SMALL_STATE(11948)] = 366868, + [SMALL_STATE(11949)] = 366878, + [SMALL_STATE(11950)] = 366892, + [SMALL_STATE(11951)] = 366906, + [SMALL_STATE(11952)] = 366920, + [SMALL_STATE(11953)] = 366934, + [SMALL_STATE(11954)] = 366948, + [SMALL_STATE(11955)] = 366962, + [SMALL_STATE(11956)] = 366976, + [SMALL_STATE(11957)] = 366990, + [SMALL_STATE(11958)] = 367004, + [SMALL_STATE(11959)] = 367018, + [SMALL_STATE(11960)] = 367032, + [SMALL_STATE(11961)] = 367046, + [SMALL_STATE(11962)] = 367060, + [SMALL_STATE(11963)] = 367074, + [SMALL_STATE(11964)] = 367088, + [SMALL_STATE(11965)] = 367102, + [SMALL_STATE(11966)] = 367116, + [SMALL_STATE(11967)] = 367130, + [SMALL_STATE(11968)] = 367144, + [SMALL_STATE(11969)] = 367158, + [SMALL_STATE(11970)] = 367172, + [SMALL_STATE(11971)] = 367186, + [SMALL_STATE(11972)] = 367200, + [SMALL_STATE(11973)] = 367212, + [SMALL_STATE(11974)] = 367226, + [SMALL_STATE(11975)] = 367240, + [SMALL_STATE(11976)] = 367254, + [SMALL_STATE(11977)] = 367268, + [SMALL_STATE(11978)] = 367282, + [SMALL_STATE(11979)] = 367296, + [SMALL_STATE(11980)] = 367308, + [SMALL_STATE(11981)] = 367322, + [SMALL_STATE(11982)] = 367336, + [SMALL_STATE(11983)] = 367350, + [SMALL_STATE(11984)] = 367364, + [SMALL_STATE(11985)] = 367378, + [SMALL_STATE(11986)] = 367392, + [SMALL_STATE(11987)] = 367406, + [SMALL_STATE(11988)] = 367420, + [SMALL_STATE(11989)] = 367434, + [SMALL_STATE(11990)] = 367446, + [SMALL_STATE(11991)] = 367460, + [SMALL_STATE(11992)] = 367474, + [SMALL_STATE(11993)] = 367488, + [SMALL_STATE(11994)] = 367502, + [SMALL_STATE(11995)] = 367516, + [SMALL_STATE(11996)] = 367530, + [SMALL_STATE(11997)] = 367544, + [SMALL_STATE(11998)] = 367558, + [SMALL_STATE(11999)] = 367572, + [SMALL_STATE(12000)] = 367586, + [SMALL_STATE(12001)] = 367600, + [SMALL_STATE(12002)] = 367614, + [SMALL_STATE(12003)] = 367628, + [SMALL_STATE(12004)] = 367642, + [SMALL_STATE(12005)] = 367656, + [SMALL_STATE(12006)] = 367670, + [SMALL_STATE(12007)] = 367684, + [SMALL_STATE(12008)] = 367696, + [SMALL_STATE(12009)] = 367710, + [SMALL_STATE(12010)] = 367724, + [SMALL_STATE(12011)] = 367738, + [SMALL_STATE(12012)] = 367752, + [SMALL_STATE(12013)] = 367766, + [SMALL_STATE(12014)] = 367780, + [SMALL_STATE(12015)] = 367794, + [SMALL_STATE(12016)] = 367808, + [SMALL_STATE(12017)] = 367822, + [SMALL_STATE(12018)] = 367836, + [SMALL_STATE(12019)] = 367850, + [SMALL_STATE(12020)] = 367864, + [SMALL_STATE(12021)] = 367878, + [SMALL_STATE(12022)] = 367890, + [SMALL_STATE(12023)] = 367900, + [SMALL_STATE(12024)] = 367914, + [SMALL_STATE(12025)] = 367928, + [SMALL_STATE(12026)] = 367942, + [SMALL_STATE(12027)] = 367956, + [SMALL_STATE(12028)] = 367970, + [SMALL_STATE(12029)] = 367984, + [SMALL_STATE(12030)] = 367998, + [SMALL_STATE(12031)] = 368012, + [SMALL_STATE(12032)] = 368026, + [SMALL_STATE(12033)] = 368040, + [SMALL_STATE(12034)] = 368054, + [SMALL_STATE(12035)] = 368064, + [SMALL_STATE(12036)] = 368078, + [SMALL_STATE(12037)] = 368092, + [SMALL_STATE(12038)] = 368106, + [SMALL_STATE(12039)] = 368120, + [SMALL_STATE(12040)] = 368134, + [SMALL_STATE(12041)] = 368148, + [SMALL_STATE(12042)] = 368162, + [SMALL_STATE(12043)] = 368176, + [SMALL_STATE(12044)] = 368190, + [SMALL_STATE(12045)] = 368204, + [SMALL_STATE(12046)] = 368218, + [SMALL_STATE(12047)] = 368228, + [SMALL_STATE(12048)] = 368242, + [SMALL_STATE(12049)] = 368256, + [SMALL_STATE(12050)] = 368270, + [SMALL_STATE(12051)] = 368284, + [SMALL_STATE(12052)] = 368298, + [SMALL_STATE(12053)] = 368312, + [SMALL_STATE(12054)] = 368326, + [SMALL_STATE(12055)] = 368340, + [SMALL_STATE(12056)] = 368354, + [SMALL_STATE(12057)] = 368368, + [SMALL_STATE(12058)] = 368382, + [SMALL_STATE(12059)] = 368396, + [SMALL_STATE(12060)] = 368410, + [SMALL_STATE(12061)] = 368424, + [SMALL_STATE(12062)] = 368438, + [SMALL_STATE(12063)] = 368452, + [SMALL_STATE(12064)] = 368466, + [SMALL_STATE(12065)] = 368480, + [SMALL_STATE(12066)] = 368494, + [SMALL_STATE(12067)] = 368508, + [SMALL_STATE(12068)] = 368522, + [SMALL_STATE(12069)] = 368536, + [SMALL_STATE(12070)] = 368550, + [SMALL_STATE(12071)] = 368564, + [SMALL_STATE(12072)] = 368578, + [SMALL_STATE(12073)] = 368592, + [SMALL_STATE(12074)] = 368606, + [SMALL_STATE(12075)] = 368616, + [SMALL_STATE(12076)] = 368626, + [SMALL_STATE(12077)] = 368640, + [SMALL_STATE(12078)] = 368654, + [SMALL_STATE(12079)] = 368668, + [SMALL_STATE(12080)] = 368682, + [SMALL_STATE(12081)] = 368696, + [SMALL_STATE(12082)] = 368710, + [SMALL_STATE(12083)] = 368724, + [SMALL_STATE(12084)] = 368738, + [SMALL_STATE(12085)] = 368752, + [SMALL_STATE(12086)] = 368762, + [SMALL_STATE(12087)] = 368776, + [SMALL_STATE(12088)] = 368790, + [SMALL_STATE(12089)] = 368804, + [SMALL_STATE(12090)] = 368818, + [SMALL_STATE(12091)] = 368832, + [SMALL_STATE(12092)] = 368846, + [SMALL_STATE(12093)] = 368860, + [SMALL_STATE(12094)] = 368872, + [SMALL_STATE(12095)] = 368886, + [SMALL_STATE(12096)] = 368900, + [SMALL_STATE(12097)] = 368914, + [SMALL_STATE(12098)] = 368928, + [SMALL_STATE(12099)] = 368942, + [SMALL_STATE(12100)] = 368956, + [SMALL_STATE(12101)] = 368970, + [SMALL_STATE(12102)] = 368984, + [SMALL_STATE(12103)] = 368998, + [SMALL_STATE(12104)] = 369012, + [SMALL_STATE(12105)] = 369022, + [SMALL_STATE(12106)] = 369036, + [SMALL_STATE(12107)] = 369048, + [SMALL_STATE(12108)] = 369058, + [SMALL_STATE(12109)] = 369072, + [SMALL_STATE(12110)] = 369086, + [SMALL_STATE(12111)] = 369100, + [SMALL_STATE(12112)] = 369114, + [SMALL_STATE(12113)] = 369128, + [SMALL_STATE(12114)] = 369140, + [SMALL_STATE(12115)] = 369154, + [SMALL_STATE(12116)] = 369168, + [SMALL_STATE(12117)] = 369182, + [SMALL_STATE(12118)] = 369194, + [SMALL_STATE(12119)] = 369208, + [SMALL_STATE(12120)] = 369222, + [SMALL_STATE(12121)] = 369236, + [SMALL_STATE(12122)] = 369250, + [SMALL_STATE(12123)] = 369264, + [SMALL_STATE(12124)] = 369278, + [SMALL_STATE(12125)] = 369292, + [SMALL_STATE(12126)] = 369304, + [SMALL_STATE(12127)] = 369318, + [SMALL_STATE(12128)] = 369332, + [SMALL_STATE(12129)] = 369346, + [SMALL_STATE(12130)] = 369360, + [SMALL_STATE(12131)] = 369374, + [SMALL_STATE(12132)] = 369388, + [SMALL_STATE(12133)] = 369402, + [SMALL_STATE(12134)] = 369416, + [SMALL_STATE(12135)] = 369430, + [SMALL_STATE(12136)] = 369444, + [SMALL_STATE(12137)] = 369458, + [SMALL_STATE(12138)] = 369472, + [SMALL_STATE(12139)] = 369486, + [SMALL_STATE(12140)] = 369500, + [SMALL_STATE(12141)] = 369514, + [SMALL_STATE(12142)] = 369528, + [SMALL_STATE(12143)] = 369542, + [SMALL_STATE(12144)] = 369556, + [SMALL_STATE(12145)] = 369570, + [SMALL_STATE(12146)] = 369584, + [SMALL_STATE(12147)] = 369598, + [SMALL_STATE(12148)] = 369610, + [SMALL_STATE(12149)] = 369624, + [SMALL_STATE(12150)] = 369638, + [SMALL_STATE(12151)] = 369652, + [SMALL_STATE(12152)] = 369666, + [SMALL_STATE(12153)] = 369680, + [SMALL_STATE(12154)] = 369694, + [SMALL_STATE(12155)] = 369708, + [SMALL_STATE(12156)] = 369722, + [SMALL_STATE(12157)] = 369736, + [SMALL_STATE(12158)] = 369750, + [SMALL_STATE(12159)] = 369764, + [SMALL_STATE(12160)] = 369778, + [SMALL_STATE(12161)] = 369790, + [SMALL_STATE(12162)] = 369804, + [SMALL_STATE(12163)] = 369818, + [SMALL_STATE(12164)] = 369828, + [SMALL_STATE(12165)] = 369840, + [SMALL_STATE(12166)] = 369854, + [SMALL_STATE(12167)] = 369868, + [SMALL_STATE(12168)] = 369882, + [SMALL_STATE(12169)] = 369896, + [SMALL_STATE(12170)] = 369910, + [SMALL_STATE(12171)] = 369924, + [SMALL_STATE(12172)] = 369938, + [SMALL_STATE(12173)] = 369952, + [SMALL_STATE(12174)] = 369966, + [SMALL_STATE(12175)] = 369980, + [SMALL_STATE(12176)] = 369994, + [SMALL_STATE(12177)] = 370008, + [SMALL_STATE(12178)] = 370022, + [SMALL_STATE(12179)] = 370036, + [SMALL_STATE(12180)] = 370050, + [SMALL_STATE(12181)] = 370064, + [SMALL_STATE(12182)] = 370076, + [SMALL_STATE(12183)] = 370090, + [SMALL_STATE(12184)] = 370104, + [SMALL_STATE(12185)] = 370118, + [SMALL_STATE(12186)] = 370132, + [SMALL_STATE(12187)] = 370146, + [SMALL_STATE(12188)] = 370160, + [SMALL_STATE(12189)] = 370174, + [SMALL_STATE(12190)] = 370188, + [SMALL_STATE(12191)] = 370202, + [SMALL_STATE(12192)] = 370216, + [SMALL_STATE(12193)] = 370228, + [SMALL_STATE(12194)] = 370242, + [SMALL_STATE(12195)] = 370256, + [SMALL_STATE(12196)] = 370270, + [SMALL_STATE(12197)] = 370284, + [SMALL_STATE(12198)] = 370298, + [SMALL_STATE(12199)] = 370312, + [SMALL_STATE(12200)] = 370326, + [SMALL_STATE(12201)] = 370340, + [SMALL_STATE(12202)] = 370354, + [SMALL_STATE(12203)] = 370368, + [SMALL_STATE(12204)] = 370382, + [SMALL_STATE(12205)] = 370396, + [SMALL_STATE(12206)] = 370410, + [SMALL_STATE(12207)] = 370424, + [SMALL_STATE(12208)] = 370438, + [SMALL_STATE(12209)] = 370452, + [SMALL_STATE(12210)] = 370466, + [SMALL_STATE(12211)] = 370480, + [SMALL_STATE(12212)] = 370494, + [SMALL_STATE(12213)] = 370506, + [SMALL_STATE(12214)] = 370520, + [SMALL_STATE(12215)] = 370530, + [SMALL_STATE(12216)] = 370544, + [SMALL_STATE(12217)] = 370558, + [SMALL_STATE(12218)] = 370572, + [SMALL_STATE(12219)] = 370584, + [SMALL_STATE(12220)] = 370598, + [SMALL_STATE(12221)] = 370612, + [SMALL_STATE(12222)] = 370626, + [SMALL_STATE(12223)] = 370640, + [SMALL_STATE(12224)] = 370652, + [SMALL_STATE(12225)] = 370666, + [SMALL_STATE(12226)] = 370680, + [SMALL_STATE(12227)] = 370694, + [SMALL_STATE(12228)] = 370708, + [SMALL_STATE(12229)] = 370722, + [SMALL_STATE(12230)] = 370736, + [SMALL_STATE(12231)] = 370750, + [SMALL_STATE(12232)] = 370764, + [SMALL_STATE(12233)] = 370778, + [SMALL_STATE(12234)] = 370788, + [SMALL_STATE(12235)] = 370802, + [SMALL_STATE(12236)] = 370814, + [SMALL_STATE(12237)] = 370828, + [SMALL_STATE(12238)] = 370838, + [SMALL_STATE(12239)] = 370852, + [SMALL_STATE(12240)] = 370866, + [SMALL_STATE(12241)] = 370880, + [SMALL_STATE(12242)] = 370894, + [SMALL_STATE(12243)] = 370908, + [SMALL_STATE(12244)] = 370918, + [SMALL_STATE(12245)] = 370932, + [SMALL_STATE(12246)] = 370946, + [SMALL_STATE(12247)] = 370960, + [SMALL_STATE(12248)] = 370974, + [SMALL_STATE(12249)] = 370988, + [SMALL_STATE(12250)] = 371002, + [SMALL_STATE(12251)] = 371014, + [SMALL_STATE(12252)] = 371028, + [SMALL_STATE(12253)] = 371042, + [SMALL_STATE(12254)] = 371056, + [SMALL_STATE(12255)] = 371070, + [SMALL_STATE(12256)] = 371084, + [SMALL_STATE(12257)] = 371098, + [SMALL_STATE(12258)] = 371112, + [SMALL_STATE(12259)] = 371126, + [SMALL_STATE(12260)] = 371140, + [SMALL_STATE(12261)] = 371154, + [SMALL_STATE(12262)] = 371168, + [SMALL_STATE(12263)] = 371182, + [SMALL_STATE(12264)] = 371196, + [SMALL_STATE(12265)] = 371210, + [SMALL_STATE(12266)] = 371224, + [SMALL_STATE(12267)] = 371238, + [SMALL_STATE(12268)] = 371252, + [SMALL_STATE(12269)] = 371266, + [SMALL_STATE(12270)] = 371278, + [SMALL_STATE(12271)] = 371292, + [SMALL_STATE(12272)] = 371304, + [SMALL_STATE(12273)] = 371318, + [SMALL_STATE(12274)] = 371332, + [SMALL_STATE(12275)] = 371346, + [SMALL_STATE(12276)] = 371356, + [SMALL_STATE(12277)] = 371370, + [SMALL_STATE(12278)] = 371384, + [SMALL_STATE(12279)] = 371398, + [SMALL_STATE(12280)] = 371410, + [SMALL_STATE(12281)] = 371424, + [SMALL_STATE(12282)] = 371438, + [SMALL_STATE(12283)] = 371452, + [SMALL_STATE(12284)] = 371466, + [SMALL_STATE(12285)] = 371480, + [SMALL_STATE(12286)] = 371489, + [SMALL_STATE(12287)] = 371500, + [SMALL_STATE(12288)] = 371511, + [SMALL_STATE(12289)] = 371522, + [SMALL_STATE(12290)] = 371531, + [SMALL_STATE(12291)] = 371542, + [SMALL_STATE(12292)] = 371551, + [SMALL_STATE(12293)] = 371560, + [SMALL_STATE(12294)] = 371571, + [SMALL_STATE(12295)] = 371582, + [SMALL_STATE(12296)] = 371591, + [SMALL_STATE(12297)] = 371602, + [SMALL_STATE(12298)] = 371613, + [SMALL_STATE(12299)] = 371622, + [SMALL_STATE(12300)] = 371631, + [SMALL_STATE(12301)] = 371642, + [SMALL_STATE(12302)] = 371653, + [SMALL_STATE(12303)] = 371662, + [SMALL_STATE(12304)] = 371673, + [SMALL_STATE(12305)] = 371684, + [SMALL_STATE(12306)] = 371693, + [SMALL_STATE(12307)] = 371702, + [SMALL_STATE(12308)] = 371713, + [SMALL_STATE(12309)] = 371724, + [SMALL_STATE(12310)] = 371735, + [SMALL_STATE(12311)] = 371746, + [SMALL_STATE(12312)] = 371755, + [SMALL_STATE(12313)] = 371764, + [SMALL_STATE(12314)] = 371775, + [SMALL_STATE(12315)] = 371784, + [SMALL_STATE(12316)] = 371795, + [SMALL_STATE(12317)] = 371806, + [SMALL_STATE(12318)] = 371817, + [SMALL_STATE(12319)] = 371826, + [SMALL_STATE(12320)] = 371835, + [SMALL_STATE(12321)] = 371846, + [SMALL_STATE(12322)] = 371855, + [SMALL_STATE(12323)] = 371866, + [SMALL_STATE(12324)] = 371875, + [SMALL_STATE(12325)] = 371884, + [SMALL_STATE(12326)] = 371893, + [SMALL_STATE(12327)] = 371902, + [SMALL_STATE(12328)] = 371911, + [SMALL_STATE(12329)] = 371922, + [SMALL_STATE(12330)] = 371931, + [SMALL_STATE(12331)] = 371942, + [SMALL_STATE(12332)] = 371953, + [SMALL_STATE(12333)] = 371964, + [SMALL_STATE(12334)] = 371973, + [SMALL_STATE(12335)] = 371984, + [SMALL_STATE(12336)] = 371993, + [SMALL_STATE(12337)] = 372002, + [SMALL_STATE(12338)] = 372011, + [SMALL_STATE(12339)] = 372020, + [SMALL_STATE(12340)] = 372031, + [SMALL_STATE(12341)] = 372040, + [SMALL_STATE(12342)] = 372049, + [SMALL_STATE(12343)] = 372060, + [SMALL_STATE(12344)] = 372071, + [SMALL_STATE(12345)] = 372080, + [SMALL_STATE(12346)] = 372089, + [SMALL_STATE(12347)] = 372098, + [SMALL_STATE(12348)] = 372109, + [SMALL_STATE(12349)] = 372118, + [SMALL_STATE(12350)] = 372127, + [SMALL_STATE(12351)] = 372138, + [SMALL_STATE(12352)] = 372149, + [SMALL_STATE(12353)] = 372160, + [SMALL_STATE(12354)] = 372171, + [SMALL_STATE(12355)] = 372182, + [SMALL_STATE(12356)] = 372193, + [SMALL_STATE(12357)] = 372204, + [SMALL_STATE(12358)] = 372215, + [SMALL_STATE(12359)] = 372224, + [SMALL_STATE(12360)] = 372233, + [SMALL_STATE(12361)] = 372242, + [SMALL_STATE(12362)] = 372251, + [SMALL_STATE(12363)] = 372260, + [SMALL_STATE(12364)] = 372269, + [SMALL_STATE(12365)] = 372278, + [SMALL_STATE(12366)] = 372287, + [SMALL_STATE(12367)] = 372298, + [SMALL_STATE(12368)] = 372307, + [SMALL_STATE(12369)] = 372316, + [SMALL_STATE(12370)] = 372327, + [SMALL_STATE(12371)] = 372336, + [SMALL_STATE(12372)] = 372345, + [SMALL_STATE(12373)] = 372356, + [SMALL_STATE(12374)] = 372365, + [SMALL_STATE(12375)] = 372376, + [SMALL_STATE(12376)] = 372387, + [SMALL_STATE(12377)] = 372398, + [SMALL_STATE(12378)] = 372407, + [SMALL_STATE(12379)] = 372418, + [SMALL_STATE(12380)] = 372429, + [SMALL_STATE(12381)] = 372440, + [SMALL_STATE(12382)] = 372449, + [SMALL_STATE(12383)] = 372458, + [SMALL_STATE(12384)] = 372469, + [SMALL_STATE(12385)] = 372480, + [SMALL_STATE(12386)] = 372489, + [SMALL_STATE(12387)] = 372498, + [SMALL_STATE(12388)] = 372507, + [SMALL_STATE(12389)] = 372518, + [SMALL_STATE(12390)] = 372529, + [SMALL_STATE(12391)] = 372538, + [SMALL_STATE(12392)] = 372549, + [SMALL_STATE(12393)] = 372558, + [SMALL_STATE(12394)] = 372567, + [SMALL_STATE(12395)] = 372576, + [SMALL_STATE(12396)] = 372587, + [SMALL_STATE(12397)] = 372596, + [SMALL_STATE(12398)] = 372605, + [SMALL_STATE(12399)] = 372614, + [SMALL_STATE(12400)] = 372623, + [SMALL_STATE(12401)] = 372632, + [SMALL_STATE(12402)] = 372641, + [SMALL_STATE(12403)] = 372650, + [SMALL_STATE(12404)] = 372661, + [SMALL_STATE(12405)] = 372672, + [SMALL_STATE(12406)] = 372683, + [SMALL_STATE(12407)] = 372692, + [SMALL_STATE(12408)] = 372701, + [SMALL_STATE(12409)] = 372710, + [SMALL_STATE(12410)] = 372719, + [SMALL_STATE(12411)] = 372730, + [SMALL_STATE(12412)] = 372739, + [SMALL_STATE(12413)] = 372750, + [SMALL_STATE(12414)] = 372759, + [SMALL_STATE(12415)] = 372768, + [SMALL_STATE(12416)] = 372779, + [SMALL_STATE(12417)] = 372788, + [SMALL_STATE(12418)] = 372797, + [SMALL_STATE(12419)] = 372806, + [SMALL_STATE(12420)] = 372815, + [SMALL_STATE(12421)] = 372826, + [SMALL_STATE(12422)] = 372835, + [SMALL_STATE(12423)] = 372844, + [SMALL_STATE(12424)] = 372855, + [SMALL_STATE(12425)] = 372866, + [SMALL_STATE(12426)] = 372875, + [SMALL_STATE(12427)] = 372884, + [SMALL_STATE(12428)] = 372895, + [SMALL_STATE(12429)] = 372906, + [SMALL_STATE(12430)] = 372915, + [SMALL_STATE(12431)] = 372924, + [SMALL_STATE(12432)] = 372933, + [SMALL_STATE(12433)] = 372942, + [SMALL_STATE(12434)] = 372953, + [SMALL_STATE(12435)] = 372964, + [SMALL_STATE(12436)] = 372975, + [SMALL_STATE(12437)] = 372984, + [SMALL_STATE(12438)] = 372995, + [SMALL_STATE(12439)] = 373006, + [SMALL_STATE(12440)] = 373015, + [SMALL_STATE(12441)] = 373024, + [SMALL_STATE(12442)] = 373035, + [SMALL_STATE(12443)] = 373044, + [SMALL_STATE(12444)] = 373053, + [SMALL_STATE(12445)] = 373062, + [SMALL_STATE(12446)] = 373073, + [SMALL_STATE(12447)] = 373082, + [SMALL_STATE(12448)] = 373093, + [SMALL_STATE(12449)] = 373102, + [SMALL_STATE(12450)] = 373113, + [SMALL_STATE(12451)] = 373124, + [SMALL_STATE(12452)] = 373135, + [SMALL_STATE(12453)] = 373146, + [SMALL_STATE(12454)] = 373157, + [SMALL_STATE(12455)] = 373168, + [SMALL_STATE(12456)] = 373179, + [SMALL_STATE(12457)] = 373188, + [SMALL_STATE(12458)] = 373199, + [SMALL_STATE(12459)] = 373210, + [SMALL_STATE(12460)] = 373221, + [SMALL_STATE(12461)] = 373232, + [SMALL_STATE(12462)] = 373241, + [SMALL_STATE(12463)] = 373249, + [SMALL_STATE(12464)] = 373257, + [SMALL_STATE(12465)] = 373265, + [SMALL_STATE(12466)] = 373273, + [SMALL_STATE(12467)] = 373281, + [SMALL_STATE(12468)] = 373289, + [SMALL_STATE(12469)] = 373297, + [SMALL_STATE(12470)] = 373305, + [SMALL_STATE(12471)] = 373313, + [SMALL_STATE(12472)] = 373321, + [SMALL_STATE(12473)] = 373329, + [SMALL_STATE(12474)] = 373337, + [SMALL_STATE(12475)] = 373345, + [SMALL_STATE(12476)] = 373353, + [SMALL_STATE(12477)] = 373361, + [SMALL_STATE(12478)] = 373369, + [SMALL_STATE(12479)] = 373377, + [SMALL_STATE(12480)] = 373385, + [SMALL_STATE(12481)] = 373393, + [SMALL_STATE(12482)] = 373401, + [SMALL_STATE(12483)] = 373409, + [SMALL_STATE(12484)] = 373417, + [SMALL_STATE(12485)] = 373425, + [SMALL_STATE(12486)] = 373433, + [SMALL_STATE(12487)] = 373441, + [SMALL_STATE(12488)] = 373449, + [SMALL_STATE(12489)] = 373457, + [SMALL_STATE(12490)] = 373465, + [SMALL_STATE(12491)] = 373473, + [SMALL_STATE(12492)] = 373481, + [SMALL_STATE(12493)] = 373489, + [SMALL_STATE(12494)] = 373497, + [SMALL_STATE(12495)] = 373505, + [SMALL_STATE(12496)] = 373513, + [SMALL_STATE(12497)] = 373521, + [SMALL_STATE(12498)] = 373529, + [SMALL_STATE(12499)] = 373537, + [SMALL_STATE(12500)] = 373545, + [SMALL_STATE(12501)] = 373553, + [SMALL_STATE(12502)] = 373561, + [SMALL_STATE(12503)] = 373569, + [SMALL_STATE(12504)] = 373577, + [SMALL_STATE(12505)] = 373585, + [SMALL_STATE(12506)] = 373593, + [SMALL_STATE(12507)] = 373601, + [SMALL_STATE(12508)] = 373609, + [SMALL_STATE(12509)] = 373617, + [SMALL_STATE(12510)] = 373625, + [SMALL_STATE(12511)] = 373633, + [SMALL_STATE(12512)] = 373641, + [SMALL_STATE(12513)] = 373649, + [SMALL_STATE(12514)] = 373657, + [SMALL_STATE(12515)] = 373665, + [SMALL_STATE(12516)] = 373673, + [SMALL_STATE(12517)] = 373681, + [SMALL_STATE(12518)] = 373689, + [SMALL_STATE(12519)] = 373697, + [SMALL_STATE(12520)] = 373705, + [SMALL_STATE(12521)] = 373713, + [SMALL_STATE(12522)] = 373721, + [SMALL_STATE(12523)] = 373729, + [SMALL_STATE(12524)] = 373737, + [SMALL_STATE(12525)] = 373745, + [SMALL_STATE(12526)] = 373753, + [SMALL_STATE(12527)] = 373761, + [SMALL_STATE(12528)] = 373769, + [SMALL_STATE(12529)] = 373777, + [SMALL_STATE(12530)] = 373785, + [SMALL_STATE(12531)] = 373793, + [SMALL_STATE(12532)] = 373801, + [SMALL_STATE(12533)] = 373809, + [SMALL_STATE(12534)] = 373817, + [SMALL_STATE(12535)] = 373825, + [SMALL_STATE(12536)] = 373833, + [SMALL_STATE(12537)] = 373841, + [SMALL_STATE(12538)] = 373849, + [SMALL_STATE(12539)] = 373857, + [SMALL_STATE(12540)] = 373865, + [SMALL_STATE(12541)] = 373873, + [SMALL_STATE(12542)] = 373881, + [SMALL_STATE(12543)] = 373889, + [SMALL_STATE(12544)] = 373897, + [SMALL_STATE(12545)] = 373905, + [SMALL_STATE(12546)] = 373913, + [SMALL_STATE(12547)] = 373921, + [SMALL_STATE(12548)] = 373929, + [SMALL_STATE(12549)] = 373937, + [SMALL_STATE(12550)] = 373945, + [SMALL_STATE(12551)] = 373953, + [SMALL_STATE(12552)] = 373961, + [SMALL_STATE(12553)] = 373969, + [SMALL_STATE(12554)] = 373977, + [SMALL_STATE(12555)] = 373985, + [SMALL_STATE(12556)] = 373993, + [SMALL_STATE(12557)] = 374001, + [SMALL_STATE(12558)] = 374009, + [SMALL_STATE(12559)] = 374017, + [SMALL_STATE(12560)] = 374025, + [SMALL_STATE(12561)] = 374033, + [SMALL_STATE(12562)] = 374041, + [SMALL_STATE(12563)] = 374049, + [SMALL_STATE(12564)] = 374057, + [SMALL_STATE(12565)] = 374065, + [SMALL_STATE(12566)] = 374073, + [SMALL_STATE(12567)] = 374081, + [SMALL_STATE(12568)] = 374089, + [SMALL_STATE(12569)] = 374097, + [SMALL_STATE(12570)] = 374105, + [SMALL_STATE(12571)] = 374113, + [SMALL_STATE(12572)] = 374121, + [SMALL_STATE(12573)] = 374129, + [SMALL_STATE(12574)] = 374137, + [SMALL_STATE(12575)] = 374145, + [SMALL_STATE(12576)] = 374153, + [SMALL_STATE(12577)] = 374161, + [SMALL_STATE(12578)] = 374169, + [SMALL_STATE(12579)] = 374177, + [SMALL_STATE(12580)] = 374185, + [SMALL_STATE(12581)] = 374193, + [SMALL_STATE(12582)] = 374201, + [SMALL_STATE(12583)] = 374209, + [SMALL_STATE(12584)] = 374217, + [SMALL_STATE(12585)] = 374225, + [SMALL_STATE(12586)] = 374233, + [SMALL_STATE(12587)] = 374241, + [SMALL_STATE(12588)] = 374249, + [SMALL_STATE(12589)] = 374257, + [SMALL_STATE(12590)] = 374265, + [SMALL_STATE(12591)] = 374273, + [SMALL_STATE(12592)] = 374281, + [SMALL_STATE(12593)] = 374289, + [SMALL_STATE(12594)] = 374297, + [SMALL_STATE(12595)] = 374305, + [SMALL_STATE(12596)] = 374313, + [SMALL_STATE(12597)] = 374321, + [SMALL_STATE(12598)] = 374329, + [SMALL_STATE(12599)] = 374337, + [SMALL_STATE(12600)] = 374345, + [SMALL_STATE(12601)] = 374353, + [SMALL_STATE(12602)] = 374361, + [SMALL_STATE(12603)] = 374369, + [SMALL_STATE(12604)] = 374377, + [SMALL_STATE(12605)] = 374385, + [SMALL_STATE(12606)] = 374393, + [SMALL_STATE(12607)] = 374401, + [SMALL_STATE(12608)] = 374409, + [SMALL_STATE(12609)] = 374417, + [SMALL_STATE(12610)] = 374425, + [SMALL_STATE(12611)] = 374433, + [SMALL_STATE(12612)] = 374441, + [SMALL_STATE(12613)] = 374449, + [SMALL_STATE(12614)] = 374457, + [SMALL_STATE(12615)] = 374465, + [SMALL_STATE(12616)] = 374473, + [SMALL_STATE(12617)] = 374481, + [SMALL_STATE(12618)] = 374489, + [SMALL_STATE(12619)] = 374497, + [SMALL_STATE(12620)] = 374505, + [SMALL_STATE(12621)] = 374513, + [SMALL_STATE(12622)] = 374521, + [SMALL_STATE(12623)] = 374529, + [SMALL_STATE(12624)] = 374537, + [SMALL_STATE(12625)] = 374545, + [SMALL_STATE(12626)] = 374553, + [SMALL_STATE(12627)] = 374561, + [SMALL_STATE(12628)] = 374569, + [SMALL_STATE(12629)] = 374577, + [SMALL_STATE(12630)] = 374585, + [SMALL_STATE(12631)] = 374593, + [SMALL_STATE(12632)] = 374601, + [SMALL_STATE(12633)] = 374609, + [SMALL_STATE(12634)] = 374617, + [SMALL_STATE(12635)] = 374625, + [SMALL_STATE(12636)] = 374633, + [SMALL_STATE(12637)] = 374641, + [SMALL_STATE(12638)] = 374649, + [SMALL_STATE(12639)] = 374657, + [SMALL_STATE(12640)] = 374665, + [SMALL_STATE(12641)] = 374673, + [SMALL_STATE(12642)] = 374681, + [SMALL_STATE(12643)] = 374689, + [SMALL_STATE(12644)] = 374697, + [SMALL_STATE(12645)] = 374705, + [SMALL_STATE(12646)] = 374713, + [SMALL_STATE(12647)] = 374721, + [SMALL_STATE(12648)] = 374729, + [SMALL_STATE(12649)] = 374737, + [SMALL_STATE(12650)] = 374745, + [SMALL_STATE(12651)] = 374753, + [SMALL_STATE(12652)] = 374761, + [SMALL_STATE(12653)] = 374769, + [SMALL_STATE(12654)] = 374777, + [SMALL_STATE(12655)] = 374785, + [SMALL_STATE(12656)] = 374793, + [SMALL_STATE(12657)] = 374801, + [SMALL_STATE(12658)] = 374809, + [SMALL_STATE(12659)] = 374817, + [SMALL_STATE(12660)] = 374825, + [SMALL_STATE(12661)] = 374833, + [SMALL_STATE(12662)] = 374841, + [SMALL_STATE(12663)] = 374849, + [SMALL_STATE(12664)] = 374857, + [SMALL_STATE(12665)] = 374865, + [SMALL_STATE(12666)] = 374873, + [SMALL_STATE(12667)] = 374881, + [SMALL_STATE(12668)] = 374889, + [SMALL_STATE(12669)] = 374897, + [SMALL_STATE(12670)] = 374905, + [SMALL_STATE(12671)] = 374913, + [SMALL_STATE(12672)] = 374921, + [SMALL_STATE(12673)] = 374929, + [SMALL_STATE(12674)] = 374937, + [SMALL_STATE(12675)] = 374945, + [SMALL_STATE(12676)] = 374953, + [SMALL_STATE(12677)] = 374961, + [SMALL_STATE(12678)] = 374969, + [SMALL_STATE(12679)] = 374977, + [SMALL_STATE(12680)] = 374985, + [SMALL_STATE(12681)] = 374993, + [SMALL_STATE(12682)] = 375001, + [SMALL_STATE(12683)] = 375009, + [SMALL_STATE(12684)] = 375017, + [SMALL_STATE(12685)] = 375025, + [SMALL_STATE(12686)] = 375033, + [SMALL_STATE(12687)] = 375041, + [SMALL_STATE(12688)] = 375049, + [SMALL_STATE(12689)] = 375057, + [SMALL_STATE(12690)] = 375065, + [SMALL_STATE(12691)] = 375073, + [SMALL_STATE(12692)] = 375081, + [SMALL_STATE(12693)] = 375089, + [SMALL_STATE(12694)] = 375097, + [SMALL_STATE(12695)] = 375105, + [SMALL_STATE(12696)] = 375113, + [SMALL_STATE(12697)] = 375121, + [SMALL_STATE(12698)] = 375129, + [SMALL_STATE(12699)] = 375137, + [SMALL_STATE(12700)] = 375145, + [SMALL_STATE(12701)] = 375153, + [SMALL_STATE(12702)] = 375161, + [SMALL_STATE(12703)] = 375169, + [SMALL_STATE(12704)] = 375177, + [SMALL_STATE(12705)] = 375185, + [SMALL_STATE(12706)] = 375193, + [SMALL_STATE(12707)] = 375201, + [SMALL_STATE(12708)] = 375209, + [SMALL_STATE(12709)] = 375217, + [SMALL_STATE(12710)] = 375225, + [SMALL_STATE(12711)] = 375233, + [SMALL_STATE(12712)] = 375241, + [SMALL_STATE(12713)] = 375249, + [SMALL_STATE(12714)] = 375257, + [SMALL_STATE(12715)] = 375265, + [SMALL_STATE(12716)] = 375273, + [SMALL_STATE(12717)] = 375281, + [SMALL_STATE(12718)] = 375289, + [SMALL_STATE(12719)] = 375297, + [SMALL_STATE(12720)] = 375305, + [SMALL_STATE(12721)] = 375313, + [SMALL_STATE(12722)] = 375321, + [SMALL_STATE(12723)] = 375329, + [SMALL_STATE(12724)] = 375337, + [SMALL_STATE(12725)] = 375345, + [SMALL_STATE(12726)] = 375353, + [SMALL_STATE(12727)] = 375361, + [SMALL_STATE(12728)] = 375369, + [SMALL_STATE(12729)] = 375377, + [SMALL_STATE(12730)] = 375385, + [SMALL_STATE(12731)] = 375393, + [SMALL_STATE(12732)] = 375401, + [SMALL_STATE(12733)] = 375409, + [SMALL_STATE(12734)] = 375417, + [SMALL_STATE(12735)] = 375425, + [SMALL_STATE(12736)] = 375433, + [SMALL_STATE(12737)] = 375441, + [SMALL_STATE(12738)] = 375449, + [SMALL_STATE(12739)] = 375457, + [SMALL_STATE(12740)] = 375465, + [SMALL_STATE(12741)] = 375473, + [SMALL_STATE(12742)] = 375481, + [SMALL_STATE(12743)] = 375489, + [SMALL_STATE(12744)] = 375497, + [SMALL_STATE(12745)] = 375505, + [SMALL_STATE(12746)] = 375513, + [SMALL_STATE(12747)] = 375521, + [SMALL_STATE(12748)] = 375529, + [SMALL_STATE(12749)] = 375537, + [SMALL_STATE(12750)] = 375545, + [SMALL_STATE(12751)] = 375553, + [SMALL_STATE(12752)] = 375561, + [SMALL_STATE(12753)] = 375569, + [SMALL_STATE(12754)] = 375577, + [SMALL_STATE(12755)] = 375585, + [SMALL_STATE(12756)] = 375593, + [SMALL_STATE(12757)] = 375601, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9859), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12319), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12323), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12393), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11863), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12649), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12511), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12315), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12484), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12471), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12524), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12482), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12355), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11994), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12683), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12521), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12433), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12530), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12686), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11836), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12289), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12160), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6769), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(9727), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(9859), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6867), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4177), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4035), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12319), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12323), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12393), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(11863), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12649), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6723), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3949), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4118), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12511), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12315), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12484), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12471), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12524), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6770), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12482), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6830), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4275), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7017), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12355), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7017), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(9606), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4263), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(11994), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12683), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4172), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6727), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12521), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12433), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12530), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12686), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12367), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12119), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3799), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2856), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12374), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2859), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(6926), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4231), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12297), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3800), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3764), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(6925), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12384), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3765), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(6830), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4275), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12360), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12363), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12325), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12382), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12340), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12430), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(6924), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11920), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12212), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12305), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12312), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12449), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12369), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_effects, 1, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_effects, 1, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 1, 0, 0), SHIFT_REPEAT(3634), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 1, 0, 0), SHIFT_REPEAT(3629), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12395), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 1, 0, 0), SHIFT_REPEAT(3633), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12357), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transfer_expression, 2, 0, 7), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transfer_expression, 2, 0, 7), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 1, 0, 0), SHIFT_REPEAT(3635), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12375), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11976), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12406), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12327), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12320), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11980), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12376), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12339), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12412), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12350), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12391), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12290), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12549), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11955), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12053), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12278), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12248), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11985), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12251), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12750), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11970), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12501), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12592), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12529), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12648), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12463), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12585), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12738), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12716), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12604), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12465), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12650), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12506), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12597), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12559), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12700), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12595), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12602), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12522), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12702), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12510), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12565), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12492), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12735), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12466), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12730), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7621), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [5516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7740), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7138), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12566), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12500), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(6998), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12659), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12665), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7188), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7447), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12558), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [5599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7158), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), SHIFT(7628), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 127), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 127), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 40), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 40), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 165), + [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 165), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 166), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 166), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 128), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 128), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 8, 0, 217), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 8, 0, 217), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 71), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 71), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12625), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12723), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12507), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12673), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12311), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), + [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4096), + [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 64), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 64), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 65), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 65), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4180), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12483), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12512), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 2, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11948), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), + [5927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), SHIFT_REPEAT(4181), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12091), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12047), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12075), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11834), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [5978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), SHIFT_REPEAT(4195), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12088), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7964), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 245), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 245), + [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 245), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 245), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 109), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 109), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 142), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 142), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 142), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 142), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7584), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 71), + [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 71), + [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 70), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 70), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 173), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 173), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 43), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 43), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 228), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 228), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 65), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 65), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 107), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 107), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 135), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 135), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 141), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 141), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 71), + [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 71), + [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 555), + [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 555), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 914), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 914), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 915), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 915), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 916), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 916), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 917), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 917), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 918), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 918), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 919), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 919), + [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 920), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 920), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 921), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 921), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 922), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 922), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 923), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 923), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 924), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 924), + [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 925), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 925), + [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 926), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 926), + [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 927), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 927), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 928), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 928), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 929), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 929), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 930), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 930), + [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 931), + [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 931), + [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 932), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 932), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 933), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 933), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 934), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 934), + [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 935), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 935), + [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 936), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 936), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 937), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 937), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 938), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 938), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 939), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 939), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 940), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 940), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 941), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 941), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 942), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 942), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 943), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 943), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 944), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 944), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 945), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 945), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 946), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 946), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 947), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 947), + [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 948), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 948), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 949), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 949), + [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 950), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 950), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 951), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 951), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 952), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 952), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 953), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 953), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 954), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 954), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 955), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 955), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 956), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 956), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 957), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 957), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 958), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 958), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 959), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 959), + [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 960), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 960), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 961), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 961), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 962), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 962), + [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 963), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 963), + [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 964), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 964), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 965), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 965), + [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 966), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 966), + [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 967), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 967), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 968), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 968), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 969), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 969), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 970), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 970), + [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 971), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 971), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 972), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 972), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 973), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 973), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 974), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 974), + [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 975), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 975), + [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 976), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 976), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 977), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 977), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 978), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 978), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 979), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 979), + [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 980), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 980), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 981), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 981), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 982), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 982), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 983), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 983), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 984), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 984), + [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 985), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 985), + [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 986), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 986), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 987), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 987), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 988), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 988), + [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 18, 0, 989), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 18, 0, 989), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 990), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 990), + [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 991), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 991), + [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 992), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 992), + [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 993), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 993), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 994), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 994), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 995), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 995), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 996), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 996), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 19, 0, 997), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 19, 0, 997), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 20, 0, 998), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 20, 0, 998), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 110), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 110), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 111), + [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 111), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 3, 0, 28), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 3, 0, 28), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 332), + [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 332), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 373), + [6501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 373), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_definition, 4, 0, 42), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_definition, 4, 0, 42), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 45), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 45), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 330), + [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 330), + [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 104), + [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 104), + [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 42), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 42), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 101), + [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 101), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 374), + [6537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 374), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 112), + [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 112), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_definition, 5, 0, 60), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_definition, 5, 0, 60), + [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_region, 5, 0, 61), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_region, 5, 0, 61), + [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 375), + [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 375), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 376), + [6557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 376), + [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 63), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 63), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 377), + [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 377), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 378), + [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 378), + [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 66), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 66), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 379), + [6577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 379), + [6579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [6583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 67), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 67), + [6587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 68), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 68), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 380), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 380), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 381), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 381), + [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 69), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 69), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 382), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 382), + [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), + [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 339), + [6617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 339), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 383), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 383), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 78), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 78), + [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 79), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 79), + [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_definition, 5, 0, 60), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_definition, 5, 0, 60), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 384), + [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 384), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 385), + [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 385), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 386), + [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 386), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 387), + [6653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 387), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 388), + [6657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 388), + [6659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_region, 6, 0, 98), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_region, 6, 0, 98), + [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 99), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 99), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 333), + [6669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 333), + [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 103), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 103), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 389), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 389), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 390), + [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 390), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [6685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [6689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 391), + [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 391), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), + [6697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), + [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 105), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 105), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 106), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 106), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 108), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 108), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 109), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 109), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 392), + [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 392), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 393), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 393), + [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 98), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 98), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_definition, 6, 0, 124), + [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_definition, 6, 0, 124), + [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 340), + [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 340), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 394), + [6745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 394), + [6747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 134), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 134), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 395), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 395), + [6755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 136), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 136), + [6759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 137), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 137), + [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 138), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 138), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 36), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 36), + [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 396), + [6773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 396), + [6775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 139), + [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 139), + [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 140), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 140), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 334), + [6785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 334), + [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 71), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 71), + [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 143), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 143), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 144), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 144), + [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 145), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 145), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 146), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 146), + [6811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 147), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 147), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 397), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 397), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 398), + [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 398), + [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 148), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 148), + [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 149), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 149), + [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 399), + [6833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 399), + [6835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 150), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 150), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 400), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 400), + [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 151), + [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 151), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 401), + [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 401), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 402), + [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 402), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 335), + [6857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 335), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 338), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 338), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 403), + [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 403), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 341), + [6869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 341), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 342), + [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 342), + [6875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 163), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 163), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 404), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 404), + [6883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), + [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 175), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 175), + [6891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 176), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 176), + [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 177), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 177), + [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 178), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 178), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 405), + [6905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 405), + [6907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 179), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 179), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 406), + [6913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 406), + [6915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 180), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 180), + [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 181), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 181), + [6923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 407), + [6925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 407), + [6927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 182), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 182), + [6931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 183), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 183), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [6939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 185), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 185), + [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 186), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 186), + [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 187), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 187), + [6951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 188), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 188), + [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 189), + [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 189), + [6959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 190), + [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 190), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 408), + [6965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 408), + [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 191), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 191), + [6971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 409), + [6973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 409), + [6975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 192), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 192), + [6979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 193), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 193), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 410), + [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 410), + [6987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 194), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 194), + [6991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 195), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 195), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 196), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 196), + [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 197), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 197), + [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 198), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 198), + [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 199), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 199), + [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 200), + [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 200), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 343), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 343), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 344), + [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 344), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 411), + [7029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 411), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 345), + [7033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 345), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 336), + [7037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 336), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 412), + [7041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 412), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 337), + [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 337), + [7047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 226), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 226), + [7051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 227), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 227), + [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 413), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 413), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 414), + [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 414), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 415), + [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 415), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 229), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 229), + [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 230), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 230), + [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 231), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 231), + [7079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 232), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 232), + [7083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 233), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 233), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 234), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 234), + [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 235), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 235), + [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 236), + [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 236), + [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 416), + [7101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 416), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 417), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 417), + [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 237), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 237), + [7111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 238), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 238), + [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 418), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 418), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 419), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 419), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 239), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 239), + [7127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 240), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 240), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 420), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 420), + [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 241), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 241), + [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 242), + [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 242), + [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 243), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 243), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 421), + [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 421), + [7151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 244), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 244), + [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_statement, 2, 0, 0), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_statement, 2, 0, 0), + [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 246), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 246), + [7163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 247), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 247), + [7167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 248), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 248), + [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 249), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 249), + [7175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 250), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 250), + [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 251), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 251), + [7183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 252), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 252), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 253), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 253), + [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 254), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 254), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 255), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 255), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 422), + [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 422), + [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 256), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 256), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 423), + [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 423), + [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 424), + [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 424), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 425), + [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 425), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 426), + [7221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 426), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 257), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 257), + [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 258), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 258), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 259), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 259), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 427), + [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 427), + [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 260), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 260), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 428), + [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 428), + [7247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 261), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 261), + [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 262), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 262), + [7255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 263), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 263), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 429), + [7261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 429), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 264), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 264), + [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 265), + [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 265), + [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 430), + [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 430), + [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 431), + [7277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 431), + [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 266), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 266), + [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 267), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 267), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 268), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 268), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 432), + [7293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 432), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 433), + [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 433), + [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 293), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 293), + [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 294), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 294), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 456), + [7309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 456), + [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 295), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 295), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 457), + [7317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 457), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 458), + [7321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 458), + [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 459), + [7325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 459), + [7327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 296), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 296), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 460), + [7333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 460), + [7335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 297), + [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 297), + [7339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 298), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 298), + [7343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 299), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 299), + [7347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 300), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 300), + [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 301), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 301), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 461), + [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 461), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 462), + [7361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 462), + [7363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 302), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 302), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 463), + [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 463), + [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 303), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 303), + [7375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 304), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 304), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 464), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 464), + [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 305), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 305), + [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 306), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 306), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 465), + [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 465), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 466), + [7397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 466), + [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 307), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 307), + [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 308), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 308), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 467), + [7409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 467), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 309), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 309), + [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 310), + [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 310), + [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 311), + [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 311), + [7423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 312), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 312), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 468), + [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 468), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 313), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 313), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 469), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 469), + [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 470), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 470), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 471), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 471), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 472), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 472), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 314), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 314), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 473), + [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 473), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 474), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 474), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 475), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 475), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 476), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 476), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 477), + [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 477), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 478), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 478), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 315), + [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 315), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 316), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 316), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 479), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 479), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 480), + [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 480), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 481), + [7497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 481), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 482), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 482), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 483), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 483), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 484), + [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 484), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 485), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 485), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 317), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 317), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 318), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 318), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 486), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 486), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 319), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 319), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 487), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 487), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 320), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 320), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 488), + [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 488), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 489), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 489), + [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 321), + [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 321), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 490), + [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 490), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 491), + [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 491), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 492), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 492), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 493), + [7565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 493), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 322), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 322), + [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 323), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 323), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 494), + [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 494), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 324), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 324), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 495), + [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 495), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 325), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 325), + [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 496), + [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 496), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 326), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 326), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 497), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 497), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 498), + [7605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 498), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 499), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 499), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 500), + [7613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 500), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 327), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 327), + [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 328), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 328), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 501), + [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 501), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 502), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 502), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 503), + [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 503), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 504), + [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 504), + [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 505), + [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 505), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 329), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 329), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 506), + [7649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 506), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 331), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 331), + [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 507), + [7657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 507), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 508), + [7661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 508), + [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 509), + [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 509), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 510), + [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 510), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 511), + [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 511), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 512), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 512), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 513), + [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 513), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 514), + [7685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 514), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 515), + [7689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 515), + [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 516), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 516), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 517), + [7697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 517), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 518), + [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 518), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 519), + [7705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 519), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 520), + [7709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 520), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 521), + [7713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 521), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 522), + [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 522), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 523), + [7721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 523), + [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 524), + [7725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 524), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 525), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 525), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 526), + [7733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 526), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 527), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 527), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 528), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 528), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 529), + [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 529), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 12, 0, 530), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 12, 0, 530), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 546), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 546), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 547), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 547), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 548), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 548), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 549), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 549), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 550), + [7773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 550), + [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 551), + [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 551), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 552), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 552), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 553), + [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 553), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 554), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 554), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 556), + [7793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 556), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 557), + [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 557), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 558), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 558), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 559), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 559), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 560), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 560), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 561), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 561), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 562), + [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 562), + [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 563), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 563), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 564), + [7825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 564), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 565), + [7829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 565), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 566), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 566), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 567), + [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 567), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 568), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 568), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 569), + [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 569), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 570), + [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 570), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 571), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 571), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 572), + [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 572), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 573), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 573), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 574), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 574), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 575), + [7869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 575), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 576), + [7873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 576), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 577), + [7877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 577), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 578), + [7881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 578), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 579), + [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 579), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 580), + [7889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 580), + [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 581), + [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 581), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 582), + [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 582), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 583), + [7901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 583), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 584), + [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 584), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 585), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 585), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 586), + [7913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 586), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 587), + [7917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 587), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 588), + [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 588), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 589), + [7925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 589), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 590), + [7929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 590), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 591), + [7933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 591), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 592), + [7937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 592), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 593), + [7941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 593), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 594), + [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 594), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 595), + [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 595), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 596), + [7953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 596), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 597), + [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 597), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 598), + [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 598), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 599), + [7965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 599), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 600), + [7969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 600), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 601), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 601), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 602), + [7977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 602), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 603), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 603), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 604), + [7985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 604), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 605), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 605), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 606), + [7993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 606), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 607), + [7997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 607), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 370), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 370), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 371), + [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 371), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 608), + [8009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 608), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 609), + [8013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 609), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 610), + [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 610), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 611), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 611), + [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 11, 0, 372), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 11, 0, 372), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 612), + [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 612), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 613), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 613), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 614), + [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 614), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 615), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 615), + [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 616), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 616), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 617), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 617), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 618), + [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 618), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 619), + [8057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 619), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 620), + [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 620), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 621), + [8065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 621), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 622), + [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 622), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 623), + [8073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 623), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 624), + [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 624), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 625), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 625), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 626), + [8085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 626), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 627), + [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 627), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 628), + [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 628), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 13, 0, 629), + [8097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 13, 0, 629), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 636), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 636), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 637), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 637), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 638), + [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 638), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 639), + [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 639), + [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 640), + [8117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 640), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 641), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 641), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 642), + [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 642), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 643), + [8129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 643), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 644), + [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 644), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 645), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 645), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 646), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 646), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 647), + [8145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 647), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 648), + [8149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 648), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 649), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 649), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 650), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 650), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 651), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 651), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 652), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 652), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 653), + [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 653), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 654), + [8173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 654), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 655), + [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 655), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 656), + [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 656), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 657), + [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 657), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 658), + [8189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 658), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 659), + [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 659), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 660), + [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 660), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_convention, 1, 0, 0), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_convention, 1, 0, 0), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 661), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 661), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 662), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 662), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 663), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 663), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 664), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 664), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 665), + [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 665), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 666), + [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 666), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 667), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 667), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 668), + [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 668), + [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 669), + [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 669), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 670), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 670), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 671), + [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 671), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 672), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 672), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 673), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 673), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 674), + [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 674), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 675), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 675), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 677), + [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 677), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 678), + [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 678), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 679), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 679), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 680), + [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 680), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 681), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 681), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 682), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 682), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 683), + [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 683), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 684), + [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 684), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 685), + [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 685), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 686), + [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 686), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 687), + [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 687), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 688), + [8309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 688), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 689), + [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 689), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 690), + [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 690), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 691), + [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 691), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 692), + [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 692), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 693), + [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 693), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 694), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 694), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 695), + [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 695), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 696), + [8341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 696), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 697), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 697), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 698), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 698), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 36), + [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 36), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 699), + [8361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 699), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 700), + [8365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 700), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 701), + [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 701), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 702), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 702), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 703), + [8377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 703), + [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 704), + [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 704), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 705), + [8385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 705), + [8387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 706), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 706), + [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 707), + [8393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 707), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 708), + [8397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 708), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 709), + [8401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 709), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 710), + [8405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 710), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 711), + [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 711), + [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 712), + [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 712), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 713), + [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 713), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 714), + [8421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 714), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 715), + [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 715), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 716), + [8429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 716), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 717), + [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 717), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 718), + [8437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 718), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 719), + [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 719), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 720), + [8445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 720), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 721), + [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 721), + [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 722), + [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 722), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 723), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 723), + [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 724), + [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 724), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 725), + [8465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 725), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 726), + [8469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 726), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 728), + [8473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 728), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 729), + [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 729), + [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 730), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 730), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 731), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 731), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 732), + [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 732), + [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 733), + [8493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 733), + [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 734), + [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 734), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 735), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 735), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 736), + [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 736), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 737), + [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 737), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 738), + [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 738), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 739), + [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 739), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 740), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 740), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 741), + [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 741), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 742), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 742), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 743), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 743), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 744), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 744), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 745), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 745), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 746), + [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 746), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 747), + [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 747), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 748), + [8553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 748), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 749), + [8557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 749), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 750), + [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 750), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 751), + [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 751), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 752), + [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 752), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 753), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 753), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 754), + [8577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 754), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 755), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 755), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 756), + [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 756), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 757), + [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 757), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 758), + [8593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 758), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 759), + [8597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 759), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 760), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 760), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 761), + [8605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 761), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 762), + [8609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 762), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 763), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 763), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 764), + [8617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 764), + [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 765), + [8621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 765), + [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 766), + [8625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 766), + [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 767), + [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 767), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 768), + [8633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 768), + [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 769), + [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 769), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 770), + [8641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 770), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 771), + [8645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 771), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 772), + [8649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 772), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 773), + [8653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 773), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 774), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 774), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 775), + [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 775), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 776), + [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 776), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 777), + [8669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 777), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 778), + [8673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 778), + [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 779), + [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 779), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 780), + [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 780), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 781), + [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 781), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 782), + [8689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 782), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 783), + [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 783), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 784), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 784), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 785), + [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 785), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 786), + [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 786), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 787), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 787), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 788), + [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 788), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 789), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 789), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 790), + [8721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 790), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 791), + [8725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 791), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 792), + [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 792), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 793), + [8733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 793), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 794), + [8737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 794), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 795), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 795), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 796), + [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 796), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 797), + [8749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 797), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 798), + [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 798), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 799), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 799), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 800), + [8761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 800), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 801), + [8765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 801), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 802), + [8769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 802), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 803), + [8773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 803), + [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 804), + [8777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 804), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 805), + [8781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 805), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 806), + [8785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 806), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 807), + [8789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 807), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 808), + [8793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 808), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 809), + [8797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 809), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 810), + [8801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 810), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 811), + [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 811), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 812), + [8809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 812), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 813), + [8813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 813), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 814), + [8817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 814), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 815), + [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 815), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 816), + [8825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 816), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 817), + [8829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 817), + [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 818), + [8833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 818), + [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 819), + [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 819), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 15, 0, 820), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 15, 0, 820), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 821), + [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 821), + [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 822), + [8849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 822), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 823), + [8853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 823), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 824), + [8857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 824), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 825), + [8861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 825), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 826), + [8865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 826), + [8867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 14, 0, 676), + [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 14, 0, 676), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 827), + [8873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 827), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 828), + [8877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 828), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 829), + [8881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 829), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 830), + [8885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 830), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 831), + [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 831), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 832), + [8893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 832), + [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 833), + [8897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 833), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 834), + [8901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 834), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 835), + [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 835), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 836), + [8909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 836), + [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 837), + [8913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 837), + [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 838), + [8917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 838), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 839), + [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 839), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 840), + [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 840), + [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 841), + [8929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 841), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 842), + [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 842), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 843), + [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 843), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 844), + [8941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 844), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 845), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 845), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 846), + [8949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 846), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 847), + [8953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 847), + [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 848), + [8957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 848), + [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 849), + [8961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 849), + [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 850), + [8965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 850), + [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 851), + [8969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 851), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 852), + [8973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 852), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 853), + [8977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 853), + [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 854), + [8981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 854), + [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 855), + [8985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 855), + [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 856), + [8989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 856), + [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 857), + [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 857), + [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 858), + [8997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 858), + [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 859), + [9001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 859), + [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 860), + [9005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 860), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 861), + [9009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 861), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 862), + [9013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 862), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 863), + [9017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 863), + [9019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 864), + [9021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 864), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 865), + [9025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 865), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 866), + [9029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 866), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 867), + [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 867), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 868), + [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 868), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 869), + [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 869), + [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 870), + [9045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 870), + [9047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 871), + [9049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 871), + [9051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 872), + [9053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 872), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 873), + [9057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 873), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 874), + [9061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 874), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 875), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 875), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 876), + [9069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 876), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 877), + [9073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 877), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 878), + [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 878), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 879), + [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 879), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 880), + [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 880), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 881), + [9089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 881), + [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 882), + [9097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 882), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 883), + [9101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 883), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 884), + [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 884), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 885), + [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 885), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 886), + [9113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 886), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 887), + [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 887), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 36), + [9121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 36), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 888), + [9125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 888), + [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 889), + [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 889), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 890), + [9133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 890), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 891), + [9137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 891), + [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 892), + [9141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 892), + [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 893), + [9145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 893), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 894), + [9149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 894), + [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 895), + [9153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 895), + [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 896), + [9157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 896), + [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 897), + [9161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 897), + [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 898), + [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 898), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 899), + [9169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 899), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 900), + [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 900), + [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 901), + [9177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 901), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 902), + [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 902), + [9183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 16, 0, 903), + [9185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 16, 0, 903), + [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 904), + [9189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 904), + [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 905), + [9193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 905), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 906), + [9197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 906), + [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 907), + [9201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 907), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 908), + [9205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 908), + [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 909), + [9209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 909), + [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 910), + [9213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 910), + [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 911), + [9217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 911), + [9219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 912), + [9221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 912), + [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 17, 0, 913), + [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 17, 0, 913), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [9241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [9243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12410), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11870), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12113), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12434), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12104), + [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [9281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(2950), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [9308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [9313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [9320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__intersection_operand, 1, 0, 0), + [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [9339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9341] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__intersection_operand, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [9347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [9349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [9369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [9376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [9378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 1, 0), + [9386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 1, 0), + [9388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 1, 0), SHIFT(2950), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_fragment, 3, 0, 0), + [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_fragment, 3, 0, 0), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 88), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 88), + [9399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, -1, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, -1, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 37), + [9407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 37), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_fragment, 2, 0, 0), + [9411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_fragment, 2, 0, 0), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 54), + [9415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 54), + [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 86), + [9419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 86), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 55), + [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 55), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 88), + [9427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 88), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 54), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 54), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 55), + [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 55), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), + [9439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), + [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [9443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [9446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, -1, 0), + [9450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, -1, 0), + [9453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, -1, 0), + [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [9457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [9460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [9462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 7), + [9468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 7), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 86), + [9472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 86), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 26), + [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 26), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7558), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [9572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12615), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [9670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [9672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [9677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [9709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9603), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), + [9714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), + [9716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(1877), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [9721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [9723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(1877), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [9728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(1877), + [9733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [9735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9583), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9554), + [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(1885), + [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 5, -1, 0), + [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 5, -1, 0), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_type, 5, 0, 0), + [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_type, 5, 0, 0), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 37), + [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 37), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [9764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 4, -1, 0), + [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 4, -1, 0), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 37), + [9776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 37), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 37), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 37), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, -1, 0), + [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, -1, 0), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_type, 4, 0, 0), + [9794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_type, 4, 0, 0), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_type, 6, 0, 0), + [9798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_type, 6, 0, 0), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [9802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [9804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__intersection_operand, 1, 0, 0), + [9807] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__intersection_operand, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(1883), + [9814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(1882), + [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(1883), + [9820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(1883), + [9823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(1882), + [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(1882), + [9829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(1885), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_expression, 2, 0, 0), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_expression, 2, 0, 0), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(1885), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_type, 3, 0, 18), + [9841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_type, 3, 0, 18), + [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlir_type, 3, 0, 0), + [9845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlir_type, 3, 0, 0), + [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [9849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [9853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [10041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(1992), + [10044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2004), + [10047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9561), + [10050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2004), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(1992), + [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2004), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(1992), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [10098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2020), + [10101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2099), + [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2009), + [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2008), + [10110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2016), + [10113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2009), + [10116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9612), + [10119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2016), + [10122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2020), + [10125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2020), + [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2099), + [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2016), + [10134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2008), + [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9610), + [10140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2008), + [10143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2099), + [10146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2009), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), SHIFT(2103), + [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), SHIFT(2103), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), SHIFT(2103), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9598), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 5), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [10235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 84), + [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 82), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 83), + [10250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_parameter_default, 1, 0, 1), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 3, 0, 0), + [10256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [10258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 0), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9652), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12346), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10849), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12346), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12354), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9866), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6918), + [10294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(12615), + [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6805), + [10302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6918), + [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [10307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12218), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11576), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10974), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12307), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12298), + [10327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6899), + [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6802), + [10333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6899), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6881), + [10341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6806), + [10344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6881), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [10353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6907), + [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6804), + [10359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6907), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9734), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12387), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11077), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12387), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12404), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10638), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12461), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10989), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12461), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12389), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10436), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10967), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11210), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11677), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11509), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11189), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12557), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12106), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12361), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11623), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11288), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11037), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11799), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11635), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11631), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11606), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11508), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10971), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11514), + [10502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ref_convention, 4, 0, 0), + [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_convention, 4, 0, 0), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), + [10508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ref_convention, 5, 0, 0), + [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_convention, 5, 0, 0), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11038), + [10514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ref_convention, 6, 0, 0), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_convention, 6, 0, 0), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9692), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12329), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11058), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12329), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12332), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10201), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10201), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [10546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12097), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11618), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11213), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11028), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11696), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11523), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11686), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10983), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), + [10592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6813), + [10595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6807), + [10598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6813), + [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6848), + [10604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6784), + [10607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6848), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10069), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11019), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11184), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10052), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11079), + [10622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11185), + [10628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [10630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10534), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10521), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11020), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11073), + [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6875), + [10645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6785), + [10648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6875), + [10651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6858), + [10654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6779), + [10657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6858), + [10660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6884), + [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6767), + [10666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6884), + [10669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6822), + [10672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6792), + [10675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6822), + [10678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6841), + [10681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6772), + [10684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6841), + [10687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6929), + [10690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6801), + [10693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(6929), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [10722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(2037), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [10741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6749), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [10752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 53), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 2, 0, 0), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [10766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), + [10770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4222), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), + [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [10783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__raises_type, 1, 0, 0), REDUCE(sym_type, 1, 0, 0), + [10786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raises_type, 1, 0, 0), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 283), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12680), + [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 213), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [10810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 287), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [10814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 361), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4215), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [10847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6755), + [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [10852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4208), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [10859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4193), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 75), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 76), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 77), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 114), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [10892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 115), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 76), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 117), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 119), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [10940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 120), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 154), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 114), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [10956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 155), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [10962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 157), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 158), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [10970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 117), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 160), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 161), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 282), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [10990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 162), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 204), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 205), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [11004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 155), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 209), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 212), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [11018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 160), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [11024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 213), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 215), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 216), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [11038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 162), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [11044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 273), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [11082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intersection_operand, 1, 0, 0), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [11094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 120), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12682), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12695), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12630), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), + [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12570), + [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [11208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 8, 0, 218), + [11210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 8, 0, 288), + [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 8, 0, 219), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 9, 0, 288), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12694), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [11318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [11320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 5), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [11328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 5), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [11522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 94), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [11526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [11534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 96), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 3, 0, 0), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 129), + [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 130), + [11588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 94), + [11590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 96), + [11592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 131), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [11596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 132), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 129), + [11602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 167), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [11610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 168), + [11612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 131), + [11614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 169), + [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 132), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), + [11638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1869), + [11641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8240), + [11644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8351), + [11647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(12680), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), + [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 218), + [12044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 167), + [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 168), + [12048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 131), + [12050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 219), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 7, 0, 169), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [12060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 6, 0, 130), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [12066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1875), + [12069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8502), + [12072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8503), + [12075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(12570), + [12078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1880), + [12081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8585), + [12084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8529), + [12087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(12695), + [12090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1876), + [12093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8498), + [12096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(8543), + [12099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(12682), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12743), + [12104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_called_type, 2, 0, 0), + [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_called_type, 3, 0, 0), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [12110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12743), + [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_called_type, 4, 0, 0), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12610), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12580), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12493), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [12161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [12163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [12175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12493), + [12178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 73), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [12208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 0), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [12232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 4, 0, 0), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_convention, 3, 0, 0), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [12342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12580), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_convention, 4, 0, 0), + [12373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_specifier, 4, 0, 0), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [12381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 4, 0, 0), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12598), + [12409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 113), + [12417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 152), + [12419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 153), + [12421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_convention, 5, 0, 0), + [12423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 156), + [12425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 159), + [12427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 201), + [12429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 202), + [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 203), + [12433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 206), + [12435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 207), + [12437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 208), + [12439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [12441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 210), + [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 211), + [12445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 214), + [12447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 269), + [12449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 270), + [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 271), + [12453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 272), + [12455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 274), + [12457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 275), + [12459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 276), + [12461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 277), + [12463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 278), + [12465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 279), + [12467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 280), + [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 281), + [12471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 284), + [12473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 285), + [12475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 286), + [12477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 346), + [12479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 347), + [12481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 348), + [12483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 349), + [12485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 350), + [12487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 351), + [12489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 352), + [12491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 353), + [12493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 354), + [12495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 355), + [12497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 356), + [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 357), + [12501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 358), + [12503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 359), + [12505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 360), + [12507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 362), + [12509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 363), + [12511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 364), + [12513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 365), + [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 366), + [12517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 434), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [12523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 436), + [12525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 437), + [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 438), + [12529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 439), + [12531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 440), + [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 441), + [12535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 442), + [12537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 443), + [12539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 444), + [12541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 445), + [12543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 446), + [12545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 447), + [12547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 448), + [12549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 449), + [12551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 450), + [12553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 451), + [12555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 452), + [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 453), + [12559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 454), + [12561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 531), + [12563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 532), + [12565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 533), + [12567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 534), + [12569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 535), + [12571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 536), + [12573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 537), + [12575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 538), + [12577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 539), + [12579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 540), + [12581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 541), + [12583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 542), + [12585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 543), + [12587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 544), + [12589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 11, 0, 545), + [12591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 630), + [12593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 631), + [12595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 632), + [12597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 633), + [12599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 634), + [12601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 12, 0, 635), + [12603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 13, 0, 727), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [12663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_called_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12610), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [12682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_convention, 6, 0, 0), + [12684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 0), + [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [12690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 75), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [12694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 77), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [12698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 115), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [12702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 76), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [12708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 119), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [12712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 154), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [12716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 114), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [12722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 157), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [12726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 158), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [12730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 117), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [12734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 161), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [12738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 7, 0, 120), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 204), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [12748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 205), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 155), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [12756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 209), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [12760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 212), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [12764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 160), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 215), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 216), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [12778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 8, 0, 162), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [12782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 273), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 282), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [12790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 283), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 213), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [12798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 9, 0, 287), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 361), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [12806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 10, 0, 435), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12693), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12640), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [12822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4188), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [12829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12733), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [12843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7693), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [12852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7130), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [12857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7600), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [12862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7175), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [12867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7007), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12698), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [12878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7425), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [12883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7746), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [12982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), SHIFT(7289), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [13023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4102), + [13026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), + [13028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11126), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11818), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11205), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), + [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10957), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), + [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11048), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [13250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9766), + [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9766), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12532), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12479), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [13278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12575), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12085), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [13316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1995), + [13319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(9571), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12107), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [13338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(3824), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [13363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1990), + [13366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(9596), + [13369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4272), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9728), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12432), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [13396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4245), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [13417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4235), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [13424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [13428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [13431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9766), + [13434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9766), + [13437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [13439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(1997), + [13442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_effects, 2, 0, 74), SHIFT_REPEAT(9630), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12596), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [13469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [13483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [13489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [13497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [13499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4110), + [13502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12636), + [13520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [13524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unified_clause, 7, 0, 0), + [13526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 3), + [13528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [13530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unified_clause, 6, 0, 0), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [13536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unified_clause, 5, 0, 0), + [13538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [13546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_superclass_list_repeat1, 2, 0, 0), + [13548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [13558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [13564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [13578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4165), + [13585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [13587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12636), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12723), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12544), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11122), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [13606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [13610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [13616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12658), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12673), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [13638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 51), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12467), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [13650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [13654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [13662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(4075), + [13665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [13669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [13679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [13697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9769), + [13703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [13707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [13709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(9769), + [13712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(9769), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [13735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [13763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [13777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11578), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12635), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [13841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12316), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [13853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [13859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 50), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12455), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12034), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [13907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_parameter_default, 1, 0, 0), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [13921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12658), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [13950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [13960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [13976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12467), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), + [13985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [13995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12544), + [13998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), + [14001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(12694), + [14004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [14007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [14029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(4077), + [14032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(12575), + [14035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [14044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym_subscript_repeat1, 2, 0, 85), + [14047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [14050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(12733), + [14053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(3992), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [14078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 85), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [14146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 217), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [14182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 6, 0, 164), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [14186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 165), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [14190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 166), + [14192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [14195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [14205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [14224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12016), + [14226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12424), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [14240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12353), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12675), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12366), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [14388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [14390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [14392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(10261), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [14427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [14431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4241), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12554), + [14470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [14472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11901), + [14474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 52), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [14478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [14586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [14644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [14658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [14661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 4, 0, 129), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [14667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [14675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 40), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12447), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [14683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 127), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [14687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 128), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12308), + [14697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 89), + [14699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 89), + [14701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 90), + [14703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 90), + [14705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 91), + [14707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 91), + [14709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 80), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [14721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [14740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [14750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [14752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7937), + [14755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 29), + [14757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 29), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12746), + [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [14767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12746), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12331), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [14796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12720), + [14798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12372), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [14806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 29), + [14808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 29), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [14812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 57), + [14814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 57), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [14822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 58), + [14824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 58), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [14856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_assert_statement, 2, 0, 0), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [14904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal_field, 3, 0, 50), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [14928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 125), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [14946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal_field, 3, 0, 19), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [14954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [14958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 39), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [14962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 126), + [14964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 126), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [14982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9499), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12351), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [15004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_literal_repeat1, 2, 0, 0), REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [15007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 44), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [15017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12572), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [15053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1, 0, 0), + [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [15065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [15075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_literal_repeat1, 2, 0, 0), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [15157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_superclass_list_repeat1, 3, 0, 0), + [15159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_superclass_list_repeat1, 3, 0, 36), + [15161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 52), + [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11072), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [15225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 53), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [15229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [15237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12117), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11735), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12044), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [15251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), + [15253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), + [15255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4247), + [15258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 5, 0, 131), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), + [15268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 170), + [15270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 4, 0, 131), + [15272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6752), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [15285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [15300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [15303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [15305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [15328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 80), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [15342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 220), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [15350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7939), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [15355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [15365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [15367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [15369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 170), + [15371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 1, 0, 0), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [15377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [15379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11081), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [15387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [15393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [15395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [15397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [15401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [15403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 222), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [15427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [15445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [15465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 220), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [15477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlir_fragment_repeat1, 2, 0, 0), + [15479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlir_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(11072), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [15490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7932), + [15493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10997), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [15517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7929), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [15532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 222), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [15536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [15538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 3, 0, 76), + [15540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2, 0, 116), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [15546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), + [15556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_superclass_list_repeat1, 2, 0, 36), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11169), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [15622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [15643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 3, 0, 0), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [15649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [15651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [15653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11034), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10544), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12018), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11741), + [15689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 3), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9654), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12499), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11168), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11022), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [15707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(11169), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [15730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [15740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 40), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [15750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [15755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [15839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12655), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12036), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9486), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [15873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [15879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11358), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12647), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [15909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [15915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [15931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7894), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11820), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [15990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [16040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [16042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(11358), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11376), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12737), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [16071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 31), + [16073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 31), SHIFT_REPEAT(10066), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [16126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), + [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [16180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11914), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11232), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [16326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [16328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12478), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [16385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 38), + [16387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 38), SHIFT_REPEAT(4189), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [16398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4, 0, 0), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [16476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12478), + [16480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [16482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [16484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12123), + [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [16500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11737), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11738), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [16600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [16602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11627), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [16614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11951), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11878), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11810), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [16678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 100), SHIFT_REPEAT(7895), + [16681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 100), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [16745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11910), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11702), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [16779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [16785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 36), + [16787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [16792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 95), SHIFT_REPEAT(2102), + [16795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 95), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [16803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [16824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 51), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12468), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11786), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [16836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12373), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12408), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [16852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), + [16855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 221), SHIFT_REPEAT(7922), + [16858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 221), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12194), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11813), + [16878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [16885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12040), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [16899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unified_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(9556), + [16902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unified_clause_repeat1, 2, 0, 0), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [16912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), + [16915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_result_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(9563), + [16918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_result_convention_repeat1, 2, 0, 0), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [16928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [16942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2, 0, 118), + [16944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2, 0, 118), SHIFT_REPEAT(1991), + [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [16983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11011), + [16999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [17002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11816), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12727), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [17052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6756), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11234), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), + [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [17089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12131), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12583), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12662), + [17102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6757), + [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [17137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superclass_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [17144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12637), + [17147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [17170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [17180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [17183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [17185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [17189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [17193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [17197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [17201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [17213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [17215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11993), + [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [17219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11943), + [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12632), + [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [17229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12477), + [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [17241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [17245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [17249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [17253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10669), + [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [17265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [17267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), + [17293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [17297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12705), + [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12347), + [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [17357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4114), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [17364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [17367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [17385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [17421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [17424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [17470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 46), SHIFT_REPEAT(4202), + [17473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 46), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [17477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), + [17491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12250), + [17519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 31), SHIFT_REPEAT(9978), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12692), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12287), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11740), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11613), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12401), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [17618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), + [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12416), + [17627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [17630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7908), + [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12102), + [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [17657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [17663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [17669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [17673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [17677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [17681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [17685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [17687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [17689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [17693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [17695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [17697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [17701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [17705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [17709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [17713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [17717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [17721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [17725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [17729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [17733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 32), + [17735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [17737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [17739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [17741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [17743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [17745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [17747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [17749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [17751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [17753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4205), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12489), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [17824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7893), + [17827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [17829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [17831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12348), + [17833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [17835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [17837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [17839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [17841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [17843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [17845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12349), + [17847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [17849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [17851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [17853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [17857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [17861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [17863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [17865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12582), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [17890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 87), SHIFT_REPEAT(3788), + [17893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 87), + [17895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [17897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 56), + [17899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 56), + [17901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [17903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [17905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [17907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [17909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [17911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [17913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12358), + [17915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11864), + [17917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), + [17921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12284), + [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [17925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [17927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), + [17929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), + [17931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), + [17933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_alias_statement, 7, 1, 133), + [17935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [17937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11403), + [17939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [17941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [17943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_origin, 1, 0, 0), + [17945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [17947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 4, 0, 130), + [17949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11307), + [17951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12576), + [17953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), + [17955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [17957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [17959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [17961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12012), + [17963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [17965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), + [17967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [17969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 35), + [17971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 171), + [17973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 291), + [17975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11103), + [17977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), + [17979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11399), + [17981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11399), + [17983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [17985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10258), + [17987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_alias_statement, 5, 1, 59), + [17989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12176), + [17991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [17993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 223), + [17995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), + [17997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 289), + [17999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11144), + [18001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12624), + [18003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12260), + [18005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [18007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11715), + [18009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11715), + [18011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11794), + [18013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11794), + [18015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9878), + [18017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), + [18019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12134), + [18021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [18023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [18025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [18029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [18031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 290), + [18033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 367), + [18035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 292), + [18037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [18039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11625), + [18041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11625), + [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11930), + [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [18047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 170), + [18049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [18053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [18057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 369), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [18061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_keyword_argument, 3, 0, 19), + [18063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unified_clause_repeat1, 3, 0, 0), + [18065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11624), + [18067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10467), + [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [18071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 6, 0, 97), + [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [18075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [18079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_keyword_argument, 3, 0, 50), + [18081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_result_convention_repeat1, 3, 0, 0), + [18083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11298), + [18086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10793), + [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), + [18090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_separator, 1, 0, 0), + [18092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 81), + [18094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 224), + [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), + [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12473), + [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [18102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), + [18104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 455), + [18106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 36), + [18108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 33), + [18110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 92), + [18112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 6, 0, 218), + [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), + [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [18118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 225), + [18120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 93), + [18122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12755), + [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11571), + [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12756), + [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), + [18134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 368), + [18136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 4), + [18138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 62), + [18140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 34), + [18142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), + [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11236), + [18146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 40), + [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), + [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), + [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), + [18158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11049), + [18160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11049), + [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10937), + [18166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), + [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11921), + [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11796), + [18172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), + [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12275), + [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), + [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11694), + [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12233), + [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12273), + [18200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [18210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 36), + [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [18216] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), + [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), + [18224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 4, 0, 36), + [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [18228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12386), + [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [18234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 36), + [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [18244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12163), + [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [18250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11262), + [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [18266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), + [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12464), + [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), + [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), + [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [18296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), + [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12587), + [18314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 5, 0, 0), + [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12422), + [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [18324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 2, 0, 0), + [18326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 4, 0, 0), + [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12405), + [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), + [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12399), + [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12553), + [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [18358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 2, 0, 0), + [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [18370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), + [18376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 3, 0, 0), + [18378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [18388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10473), + [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [18402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12444), + [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [18422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 5, 0, 0), + [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), + [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), + [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12271), + [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11979), + [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12243), + [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12309), + [18464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 36), + [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [18468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12344), + [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), + [18476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 6, 0, 0), + [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), + [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [18484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 6, 0, 36), + [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [18498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [18504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 3, 0, 36), + [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12436), + [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12313), + [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12334), + [18516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12379), + [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11997), + [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12431), + [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [18532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 3, 0, 0), + [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12441), + [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [18542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [18546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12567), + [18548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 4, 0, 0), + [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [18554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11592), + [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11598), + [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [18564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [18566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), + [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [18576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12627), + [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [18588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [18594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_list, 5, 0, 36), + [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), + [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11845), + [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12706), + [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12525), + [18616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [18618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12711), + [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12712), + [18622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11052), + [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12719), + [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12642), + [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11919), + [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11923), + [18636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [18640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11804), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + ts_external_token_string_start = 3, + ts_external_token__string_content = 4, + ts_external_token_escape_interpolation = 5, + ts_external_token_string_end = 6, + ts_external_token_comment = 7, + ts_external_token_RBRACK = 8, + ts_external_token_RPAREN = 9, + ts_external_token_RBRACE = 10, + ts_external_token_except = 11, + ts_external_token__mlir_backtick = 12, + ts_external_token__mlir_ident = 13, + ts_external_token__mlir_number = 14, + ts_external_token_mlir_punctuation = 15, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token_string_start] = sym_string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_escape_interpolation] = sym_escape_interpolation, + [ts_external_token_string_end] = sym_string_end, + [ts_external_token_comment] = sym_comment, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_RPAREN] = anon_sym_RPAREN, + [ts_external_token_RBRACE] = anon_sym_RBRACE, + [ts_external_token_except] = anon_sym_except, + [ts_external_token__mlir_backtick] = sym__mlir_backtick, + [ts_external_token__mlir_ident] = sym__mlir_ident, + [ts_external_token__mlir_number] = sym__mlir_number, + [ts_external_token_mlir_punctuation] = sym_mlir_punctuation, +}; + +static const bool ts_external_scanner_states[23][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_except] = true, + [ts_external_token__mlir_backtick] = true, + [ts_external_token__mlir_ident] = true, + [ts_external_token__mlir_number] = true, + [ts_external_token_mlir_punctuation] = true, + }, + [2] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [3] = { + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [4] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [5] = { + [ts_external_token__newline] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [6] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [7] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [8] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [9] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_except] = true, + }, + [10] = { + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_except] = true, + }, + [11] = { + [ts_external_token__newline] = true, + [ts_external_token_comment] = true, + }, + [12] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [13] = { + [ts_external_token_comment] = true, + }, + [14] = { + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [15] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [16] = { + [ts_external_token_comment] = true, + [ts_external_token__mlir_backtick] = true, + }, + [17] = { + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + }, + [18] = { + [ts_external_token_comment] = true, + [ts_external_token_except] = true, + }, + [19] = { + [ts_external_token_comment] = true, + [ts_external_token__mlir_backtick] = true, + [ts_external_token__mlir_ident] = true, + [ts_external_token__mlir_number] = true, + [ts_external_token_mlir_punctuation] = true, + }, + [20] = { + [ts_external_token__dedent] = true, + [ts_external_token_comment] = true, + }, + [21] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_comment] = true, + }, + [22] = { + [ts_external_token__indent] = true, + [ts_external_token_comment] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_mojo_external_scanner_create(void); +void tree_sitter_mojo_external_scanner_destroy(void *); +bool tree_sitter_mojo_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_mojo_external_scanner_serialize(void *, char *); +void tree_sitter_mojo_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_mojo(void) { + static const TSLanguage language = { + .abi_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, + .supertype_count = SUPERTYPE_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, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = (const void*)ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_mojo_external_scanner_create, + tree_sitter_mojo_external_scanner_destroy, + tree_sitter_mojo_external_scanner_scan, + tree_sitter_mojo_external_scanner_serialize, + tree_sitter_mojo_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + .name = "mojo", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 46, + .metadata = { + .major_version = 0, + .minor_version = 25, + .patch_version = 0, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/internal/cbm/vendored/grammars/mojo/scanner.c b/internal/cbm/vendored/grammars/mojo/scanner.c new file mode 100644 index 000000000..47e883c9f --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/scanner.c @@ -0,0 +1,498 @@ +#include "tree_sitter/array.h" +#include "tree_sitter/parser.h" + +#include +#include +#include +#include + +enum TokenType { + NEWLINE, + INDENT, + DEDENT, + STRING_START, + STRING_CONTENT, + ESCAPE_INTERPOLATION, + STRING_END, + COMMENT, + CLOSE_PAREN, + CLOSE_BRACKET, + CLOSE_BRACE, + EXCEPT, + // MLIR backtick-fragment interior tokens. Emitted only inside ``…`` MLIR + // fragments (where comment/string lexing is suppressed) so the interior is + // tokenized into highlightable pieces. + MLIR_BACKTICK, + MLIR_IDENT, + MLIR_NUMBER, + MLIR_PUNCTUATION, +}; + +typedef enum { + SingleQuote = 1 << 0, + DoubleQuote = 1 << 1, + BackQuote = 1 << 2, + Raw = 1 << 3, + Format = 1 << 4, + Triple = 1 << 5, + Bytes = 1 << 6, +} Flags; + +typedef struct { + char flags; +} Delimiter; + +static inline Delimiter new_delimiter() { return (Delimiter){0}; } + +static inline bool is_format(Delimiter *delimiter) { return delimiter->flags & Format; } + +static inline bool is_raw(Delimiter *delimiter) { return delimiter->flags & Raw; } + +static inline bool is_triple(Delimiter *delimiter) { return delimiter->flags & Triple; } + +static inline bool is_bytes(Delimiter *delimiter) { return delimiter->flags & Bytes; } + +static inline int32_t end_character(Delimiter *delimiter) { + if (delimiter->flags & SingleQuote) { + return '\''; + } + if (delimiter->flags & DoubleQuote) { + return '"'; + } + if (delimiter->flags & BackQuote) { + return '`'; + } + return 0; +} + +static inline void set_format(Delimiter *delimiter) { delimiter->flags |= Format; } + +static inline void set_raw(Delimiter *delimiter) { delimiter->flags |= Raw; } + +static inline void set_triple(Delimiter *delimiter) { delimiter->flags |= Triple; } + +static inline void set_bytes(Delimiter *delimiter) { delimiter->flags |= Bytes; } + +static inline void set_end_character(Delimiter *delimiter, int32_t character) { + switch (character) { + case '\'': + delimiter->flags |= SingleQuote; + break; + case '"': + delimiter->flags |= DoubleQuote; + break; + case '`': + delimiter->flags |= BackQuote; + break; + default: + assert(false); + } +} + +typedef struct { + Array(uint16_t) indents; + Array(Delimiter) delimiters; + bool inside_interpolated_string; +} Scanner; + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +bool tree_sitter_mojo_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + + bool error_recovery_mode = valid_symbols[STRING_CONTENT] && valid_symbols[INDENT]; + bool within_brackets = valid_symbols[CLOSE_BRACE] || valid_symbols[CLOSE_PAREN] || valid_symbols[CLOSE_BRACKET]; + + // MLIR backtick-fragment tokenization. Inside ``__mlir_op.`...` `` and the + // like, the interior is lexed into typed/number/punctuation pieces so it can + // be highlighted as MLIR. Comment and string lexing are suppressed here by + // handling the characters directly and returning before that logic runs. + bool mlir_interior = valid_symbols[MLIR_IDENT] || valid_symbols[MLIR_NUMBER] || + valid_symbols[MLIR_PUNCTUATION]; + if (!error_recovery_mode && (mlir_interior || valid_symbols[MLIR_BACKTICK])) { + if (mlir_interior) { + // Skip insignificant whitespace between fragment pieces. + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + skip(lexer); + } + } + int32_t c = lexer->lookahead; + if (c == '`' && valid_symbols[MLIR_BACKTICK]) { + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = MLIR_BACKTICK; + return true; + } + if (mlir_interior) { + if (c == '_' || (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')) { + while (true) { + int32_t d = lexer->lookahead; + if (d == '_' || (d >= 'A' && d <= 'Z') || (d >= 'a' && d <= 'z') || + (d >= '0' && d <= '9')) { + advance(lexer); + } else { + break; + } + } + lexer->mark_end(lexer); + lexer->result_symbol = MLIR_IDENT; + return true; + } + if (c >= '0' && c <= '9') { + while (lexer->lookahead >= '0' && lexer->lookahead <= '9') { + advance(lexer); + } + lexer->mark_end(lexer); + lexer->result_symbol = MLIR_NUMBER; + return true; + } + if (c != 0 && c != '`' && c != '\n' && c != '\r') { + // A single punctuation/other character. + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = MLIR_PUNCTUATION; + return true; + } + } + return false; + } + + bool advanced_once = false; + if (valid_symbols[ESCAPE_INTERPOLATION] && scanner->delimiters.size > 0 && + (lexer->lookahead == '{' || lexer->lookahead == '}') && !error_recovery_mode) { + Delimiter *delimiter = array_back(&scanner->delimiters); + if (is_format(delimiter)) { + lexer->mark_end(lexer); + bool is_left_brace = lexer->lookahead == '{'; + advance(lexer); + advanced_once = true; + if ((lexer->lookahead == '{' && is_left_brace) || (lexer->lookahead == '}' && !is_left_brace)) { + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = ESCAPE_INTERPOLATION; + return true; + } + return false; + } + } + + if (valid_symbols[STRING_CONTENT] && scanner->delimiters.size > 0 && !error_recovery_mode) { + Delimiter *delimiter = array_back(&scanner->delimiters); + int32_t end_char = end_character(delimiter); + bool has_content = advanced_once; + while (lexer->lookahead) { + if ((advanced_once || lexer->lookahead == '{' || lexer->lookahead == '}') && is_format(delimiter)) { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + if (lexer->lookahead == '\\') { + if (is_raw(delimiter)) { + // Step over the backslash. + advance(lexer); + // Step over any escaped quotes. + if (lexer->lookahead == end_character(delimiter) || lexer->lookahead == '\\') { + advance(lexer); + } + // Step over newlines + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else if (lexer->lookahead == '\n') { + advance(lexer); + } + continue; + } + if (is_bytes(delimiter)) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == 'N' || lexer->lookahead == 'u' || lexer->lookahead == 'U') { + // In bytes string, \N{...}, \uXXXX and \UXXXXXXXX are + // not escape sequences + // https://docs.mojo.org/3/reference/lexical_analysis.html#string-and-bytes-literals + advance(lexer); + } else { + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else if (lexer->lookahead == end_char) { + if (is_triple(delimiter)) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == end_char) { + advance(lexer); + if (lexer->lookahead == end_char) { + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + advance(lexer); + lexer->mark_end(lexer); + array_pop(&scanner->delimiters); + lexer->result_symbol = STRING_END; + scanner->inside_interpolated_string = false; + } + return true; + } + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + advance(lexer); + array_pop(&scanner->delimiters); + lexer->result_symbol = STRING_END; + scanner->inside_interpolated_string = false; + } + lexer->mark_end(lexer); + return true; + + } else if (lexer->lookahead == '\n' && has_content && !is_triple(delimiter)) { + return false; + } + advance(lexer); + has_content = true; + } + } + + lexer->mark_end(lexer); + + bool found_end_of_line = false; + uint16_t indent_length = 0; + int32_t first_comment_indent_length = -1; + for (;;) { + if (lexer->lookahead == '\n') { + found_end_of_line = true; + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == ' ') { + indent_length++; + skip(lexer); + } else if (lexer->lookahead == '\r' || lexer->lookahead == '\f') { + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == '\t') { + indent_length += 8; + skip(lexer); + } else if (lexer->lookahead == '#' && (valid_symbols[INDENT] || valid_symbols[DEDENT] || + valid_symbols[NEWLINE] || valid_symbols[EXCEPT])) { + // If we haven't found an EOL yet, + // then this is a comment after an expression: + // foo = bar # comment + // Just return, since we don't want to generate an indent/dedent + // token. + if (!found_end_of_line) { + return false; + } + if (first_comment_indent_length == -1) { + first_comment_indent_length = (int32_t)indent_length; + } + while (lexer->lookahead && lexer->lookahead != '\n') { + skip(lexer); + } + skip(lexer); + indent_length = 0; + } else if (lexer->lookahead == '\\') { + skip(lexer); + if (lexer->lookahead == '\r') { + skip(lexer); + } + if (lexer->lookahead == '\n' || lexer->eof(lexer)) { + skip(lexer); + } else { + return false; + } + } else if (lexer->eof(lexer)) { + indent_length = 0; + found_end_of_line = true; + break; + } else { + break; + } + } + + if (found_end_of_line) { + if (scanner->indents.size > 0) { + uint16_t current_indent_length = *array_back(&scanner->indents); + + if (valid_symbols[INDENT] && indent_length > current_indent_length) { + array_push(&scanner->indents, indent_length); + lexer->result_symbol = INDENT; + return true; + } + + bool next_tok_is_string_start = + lexer->lookahead == '\"' || lexer->lookahead == '\'' || lexer->lookahead == '`'; + + if ((valid_symbols[DEDENT] || + (!valid_symbols[NEWLINE] && !(valid_symbols[STRING_START] && next_tok_is_string_start) && + !within_brackets)) && + indent_length < current_indent_length && !scanner->inside_interpolated_string && + + // Wait to create a dedent token until we've consumed any + // comments + // whose indentation matches the current block. + first_comment_indent_length < (int32_t)current_indent_length) { + array_pop(&scanner->indents); + lexer->result_symbol = DEDENT; + return true; + } + } + + if (valid_symbols[NEWLINE] && !error_recovery_mode) { + lexer->result_symbol = NEWLINE; + return true; + } + } + + if (first_comment_indent_length == -1 && valid_symbols[STRING_START]) { + Delimiter delimiter = new_delimiter(); + + bool has_flags = false; + while (lexer->lookahead) { + if (lexer->lookahead == 'f' || lexer->lookahead == 'F' || lexer->lookahead == 't' || + lexer->lookahead == 'T') { + set_format(&delimiter); + } else if (lexer->lookahead == 'r' || lexer->lookahead == 'R') { + set_raw(&delimiter); + } else if (lexer->lookahead == 'b' || lexer->lookahead == 'B') { + set_bytes(&delimiter); + } else if (lexer->lookahead != 'u' && lexer->lookahead != 'U') { + break; + } + has_flags = true; + advance(lexer); + } + + if (lexer->lookahead == '`') { + set_end_character(&delimiter, '`'); + advance(lexer); + lexer->mark_end(lexer); + } else if (lexer->lookahead == '\'') { + set_end_character(&delimiter, '\''); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + lexer->mark_end(lexer); + set_triple(&delimiter); + } + } + } else if (lexer->lookahead == '"') { + set_end_character(&delimiter, '"'); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + lexer->mark_end(lexer); + set_triple(&delimiter); + } + } + } + + if (end_character(&delimiter)) { + array_push(&scanner->delimiters, delimiter); + lexer->result_symbol = STRING_START; + scanner->inside_interpolated_string = is_format(&delimiter); + return true; + } + if (has_flags) { + return false; + } + } + + return false; +} + +unsigned tree_sitter_mojo_external_scanner_serialize(void *payload, char *buffer) { + Scanner *scanner = (Scanner *)payload; + + size_t size = 0; + + buffer[size++] = (char)scanner->inside_interpolated_string; + + size_t delimiter_count = scanner->delimiters.size; + if (delimiter_count > UINT8_MAX) { + delimiter_count = UINT8_MAX; + } + buffer[size++] = (char)delimiter_count; + + if (delimiter_count > 0) { + memcpy(&buffer[size], scanner->delimiters.contents, delimiter_count); + } + size += delimiter_count; + + uint32_t iter = 1; + for (; iter < scanner->indents.size && size < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; ++iter) { + uint16_t indent_value = *array_get(&scanner->indents, iter); + buffer[size++] = (char)(indent_value & 0xFF); + buffer[size++] = (char)((indent_value >> 8) & 0xFF); + } + + return size; +} + +void tree_sitter_mojo_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + Scanner *scanner = (Scanner *)payload; + + array_delete(&scanner->delimiters); + array_delete(&scanner->indents); + array_push(&scanner->indents, 0); + + if (length > 0) { + size_t size = 0; + + scanner->inside_interpolated_string = (bool)buffer[size++]; + + size_t delimiter_count = (uint8_t)buffer[size++]; + if (delimiter_count > 0) { + array_reserve(&scanner->delimiters, delimiter_count); + scanner->delimiters.size = delimiter_count; + memcpy(scanner->delimiters.contents, &buffer[size], delimiter_count); + size += delimiter_count; + } + + for (; size + 1 < length; size += 2) { + uint16_t indent_value = (unsigned char)buffer[size] | ((unsigned char)buffer[size + 1] << 8); + array_push(&scanner->indents, indent_value); + } + } +} + +void *tree_sitter_mojo_external_scanner_create() { +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) + _Static_assert(sizeof(Delimiter) == sizeof(char), ""); +#else + assert(sizeof(Delimiter) == sizeof(char)); +#endif + Scanner *scanner = calloc(1, sizeof(Scanner)); + array_init(&scanner->indents); + array_init(&scanner->delimiters); + tree_sitter_mojo_external_scanner_deserialize(scanner, NULL, 0); + return scanner; +} + +void tree_sitter_mojo_external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + array_delete(&scanner->indents); + array_delete(&scanner->delimiters); + free(scanner); +} diff --git a/internal/cbm/vendored/grammars/mojo/tree_sitter/alloc.h b/internal/cbm/vendored/grammars/mojo/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/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 size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#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/internal/cbm/vendored/grammars/mojo/tree_sitter/array.h b/internal/cbm/vendored/grammars/mojo/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/tree_sitter/array.h @@ -0,0 +1,291 @@ +#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(push) +#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(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/internal/cbm/vendored/grammars/mojo/tree_sitter/parser.h b/internal/cbm/vendored/grammars/mojo/tree_sitter/parser.h new file mode 100644 index 000000000..858107deb --- /dev/null +++ b/internal/cbm/vendored/grammars/mojo/tree_sitter/parser.h @@ -0,0 +1,286 @@ +#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; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +// Used to index the field and supertype maps. +typedef struct { + uint16_t index; + uint16_t length; +} TSMapSlice; + +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 struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + +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 abi_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 TSMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexerMode *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; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; +}; + +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const 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; + } + const 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/scripts/new-languages.json b/scripts/new-languages.json index b03682e8d..2e713fc36 100644 --- a/scripts/new-languages.json +++ b/scripts/new-languages.json @@ -1291,5 +1291,20 @@ "filenames": [], "has_scanner": true, "module_root": "source_file" + }, + { + "name": "mojo", + "enum": "MOJO", + "display": "Mojo", + "ts_func": "tree_sitter_mojo", + "repo": "https://github.com/lsh/tree-sitter-mojo", + "subdir": "", + "extensions": [ + ".mojo", + ".🔥" + ], + "filenames": [], + "has_scanner": true, + "module_root": "module" } ] \ No newline at end of file diff --git a/src/discover/language.c b/src/discover/language.c index a0254306c..397f6c0a5 100644 --- a/src/discover/language.c +++ b/src/discover/language.c @@ -186,6 +186,10 @@ static const ext_entry_t EXT_TABLE[] = { /* Meson */ {".meson", CBM_LANG_MESON}, + /* Mojo — .mojo and the .🔥 (U+1F525) fire-emoji extension */ + {".mojo", CBM_LANG_MOJO}, + {".🔥", CBM_LANG_MOJO}, + /* Nix */ {".nix", CBM_LANG_NIX}, @@ -834,6 +838,7 @@ static const char *LANG_NAMES[CBM_LANG_COUNT] = { [CBM_LANG_APEX] = "Apex", [CBM_LANG_SOQL] = "SOQL", [CBM_LANG_SOSL] = "SOSL", + [CBM_LANG_MOJO] = "Mojo", }; diff --git a/tests/test_grammar_labels.c b/tests/test_grammar_labels.c index 121fc01cd..c6c62ffe6 100644 --- a/tests/test_grammar_labels.c +++ b/tests/test_grammar_labels.c @@ -100,6 +100,7 @@ static const LabelGolden LABEL_GOLDENS[] = { {"swift", "Class:1,Function:1,Module:1"}, {"scala", "Class:1,Function:1,Method:1,Module:1"}, {"gdscript", "Function:1,Module:1"}, + {"mojo", "Class:1,Function:1,Interface:1,Method:1,Module:1,Variable:1"}, {"groovy", "Class:1,Method:1,Module:1"}, {"zig", "Function:2,Module:1"}, {"solidity", "Class:1,Function:1,Method:1,Module:1"}, diff --git a/tests/test_grammar_regression.c b/tests/test_grammar_regression.c index b578fc0b0..52b48f149 100644 --- a/tests/test_grammar_regression.c +++ b/tests/test_grammar_regression.c @@ -100,6 +100,14 @@ const GrammarCase CBM_GRAMMAR_CASES[] = { {"swift", CBM_LANG_SWIFT, "a.swift", "func foo() {}\nclass A {}\n", 2, {"foo", "A", NULL}}, {"scala", CBM_LANG_SCALA, "a.scala", "object A {\n def foo() = 1\n}\n", 1, {"A", NULL}}, {"gdscript", CBM_LANG_GDSCRIPT, "a.gd", "func foo():\n pass\n", 1, {"foo", NULL}}, + /* Mojo: fn/def -> function, struct -> class, trait -> interface */ + {"mojo", + CBM_LANG_MOJO, + "a.mojo", + "fn foo() -> Int:\n return 1\nstruct Bar:\n var x: Int\ntrait Baz:\n fn m(self): " + "...\n", + 3, + {"foo", "Bar", "Baz", NULL}}, {"groovy", CBM_LANG_GROOVY, "a.groovy", "class A {\n def foo() {}\n}\n", 1, {"A", NULL}}, {"zig", CBM_LANG_ZIG, "a.zig", "fn foo() void {}\nfn bar() void {}\n", 1, {"foo", NULL}}, {"solidity",